/* Cloudflare Turnstile 验证页面样式 */
#verify-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
}

.verify-container {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.verify-container h2 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 600;
}

.verify-container p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

/* 主内容区域默认隐藏 */
#main-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* CSS Variables - High Noble Violet Theme */
:root {
    --bg-color: #0f0518;
    --surface-color: rgba(255, 255, 255, 0.03);
    --text-color: #f0f0f0;
    --text-muted: #bbbbbb;
    --accent-color: #9d4edd;
    --accent-glow: rgba(157, 78, 221, 0.5);
    --accent-secondary: #c77dff;
    --accent-gradient: linear-gradient(135deg, #7b2cbf, #9d4edd, #c77dff);
    --font-main: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Dancing Script', cursive;
    --glass-bg: rgba(20, 10, 30, 0.4);
    --glass-border: rgba(157, 78, 221, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.8;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.05;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), var(--accent-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: #fff;
}

/* Utility */
.hidden {
    display: none;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-screen {
    width: 100vw;
    height: 100vh;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    mix-blend-mode: difference;
}

#cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#cursor.hovered {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--accent-color);
    mix-blend-mode: normal;
}

#cursor.hovered::after {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
}

/* Navigation */
nav {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 100;
}

.menu-btn {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 12px 25px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    background: rgba(15, 5, 24, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-btn:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-glow);
    background: rgba(157, 78, 221, 0.1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 5, 24, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-link {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-link:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-link:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 40px var(--accent-glow);
}

.menu-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-loader {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    transform: rotate(45deg);
    animation: heartbeat-loader 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    box-shadow: 0 0 40px var(--accent-glow);
}

.heart-loader::before,
.heart-loader::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--accent-glow);
}

.heart-loader::before {
    left: -30px;
}

.heart-loader::after {
    top: -30px;
}

@keyframes heartbeat-loader {

    0%,
    100% {
        transform: rotate(45deg) scale(0.8);
    }

    5% {
        transform: rotate(45deg) scale(0.9);
    }

    10% {
        transform: rotate(45deg) scale(0.8);
    }

    15% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(45deg) scale(0.8);
    }
}

/* Glow Text Effect */
.glow-text {
    text-shadow:
        0 0 10px rgba(157, 78, 221, 0.5),
        0 0 20px rgba(157, 78, 221, 0.3),
        0 0 30px rgba(157, 78, 221, 0.2);
}

/* Link Styles */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--accent-secondary);
}

/* Image hover effect */
img {
    transition: filter 0.3s, transform 0.5s;
}

img:hover {
    filter: brightness(1.1);
}

/* =========================================
   Hero Section
   ========================================= */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #240046 0%, #0f0518 100%);
    overflow: hidden;
}

canvas#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(20, 10, 30, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(157, 78, 221, 0.1);
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 6vw;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9d4edd, #e0aaff, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, fadeInUp 1.5s ease forwards;
    text-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease 0.3s forwards;
    opacity: 0;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 10;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* =========================================
   Featured Section
   ========================================= */
#featured {
    min-height: 100vh;
    padding: 100px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #0f0518 0%, #240046 100%);
    position: relative;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 60px;
    text-align: center;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 40px 20px 60px 20px;
    scrollbar-width: none;
    perspective: 1000px;
    scroll-behavior: auto;
    /* Disable smooth scroll for auto-scroll */
    cursor: grab;
}

.carousel:active {
    cursor: grabbing;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    min-width: 300px;
    height: 450px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #7b2cbf, #c77dff, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(157, 78, 221, 0.2);
    border-color: var(--accent-color);
}

.card:hover::before {
    opacity: 1;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover img {
    transform: scale(1.1);
}

/* =========================================
   Floating Hearts
   ========================================= */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 20px;
    animation: floatHeart 6s ease-in-out infinite;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px rgba(157, 78, 221, 0.5));
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* =========================================
   Enter Button
   ========================================= */
/* Button Group */
.btn-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
}

.enter-btn {
    display: inline-block !important;
    padding: 18px 60px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7b2cbf, #9d4edd);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.6), 0 0 30px rgba(157, 78, 221, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    z-index: 100;
    opacity: 0;
    white-space: nowrap;
    visibility: visible !important;
}

/* Button collision animations */
.btn-group .enter-btn:nth-child(1):not(.slide-in-left) {
    transform: translateX(-200%);
}

.btn-group .enter-btn:nth-child(2):not(.slide-in-right) {
    transform: translateX(200%);
}

.enter-btn.slide-in-left {
    animation: slideInFromLeft 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    opacity: 1 !important;
}

.enter-btn.slide-in-right {
    animation: slideInFromRight 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    opacity: 1 !important;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-300%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    65% {
        transform: translateX(20px) scale(1.05);
    }

    75% {
        transform: translateX(-10px) scale(0.98);
    }

    85% {
        transform: translateX(5px) scale(1.02);
    }

    95% {
        transform: translateX(-2px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(300%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    65% {
        transform: translateX(-20px) scale(1.05);
    }

    75% {
        transform: translateX(10px) scale(0.98);
    }

    85% {
        transform: translateX(-5px) scale(1.02);
    }

    95% {
        transform: translateX(2px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Collision impact effect */
.btn-group.collision::after {
    content: '🍔';
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 4rem;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    animation: collisionImpact 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s;
    z-index: 99;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.8));
}

.btn-group.collision::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.8), rgba(157, 78, 221, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    animation: shockwave 0.8s ease-out 0.6s;
    z-index: 98;
}

@keyframes collisionImpact {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        transform: translate(-50%, -50%) scale(1.3) rotate(15deg);
        opacity: 1;
    }

    40% {
        transform: translate(-50%, -50%) scale(0.9) rotate(-10deg);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }

    80% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5) rotate(0deg);
        opacity: 0;
    }
}

@keyframes shockwave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(157, 78, 221, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(157, 78, 221, 0);
    }
}

/* =========================================
   Creative Optimizations
   ========================================= */

/* Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-color);
}

.aurora-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: auroraFloat 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #7b2cbf, transparent 70%);
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #9d4edd, transparent 70%);
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, #c77dff, transparent 70%);
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes auroraFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

/* Scroll Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.card:nth-child(1) {
    transition-delay: 0.1s;
}

.card:nth-child(2) {
    transition-delay: 0.2s;
}

.card:nth-child(3) {
    transition-delay: 0.3s;
}

.card:nth-child(4) {
    transition-delay: 0.4s;
}

.card:nth-child(5) {
    transition-delay: 0.5s;
}

/* Text Shimmer Effect */
.shimmer-text {
    background: linear-gradient(to right,
            var(--accent-color) 20%,
            #fff 50%,
            var(--accent-color) 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}
/* =========================================
   Responsive Design
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title { font-size: 8vw; }
    .hero-subtitle { font-size: 1.3rem; }
    .section-title { font-size: 3rem; margin-bottom: 40px; }
    .card { min-width: 260px; height: 380px; }
    .carousel { gap: 20px; padding: 30px 15px 50px 15px; }
    .enter-btn { padding: 16px 45px; font-size: 1.2rem; }
    .btn-group { gap: 15px; }
    .blob-1, .blob-2, .blob-3 { filter: blur(60px); opacity: 0.5; }
}

/* Mobile */
@media (max-width: 768px) {
    nav { top: 20px; right: 20px; }
    .menu-btn { font-size: 1.1rem; padding: 10px 20px; }
    .menu-link { font-size: 2.5rem; }
    .menu-overlay { gap: 30px; }
    .hero-title { font-size: 10vw; margin-bottom: 15px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; padding: 0 20px; }
    .hero-content { padding: 1.5rem; margin: 0 15px; border-radius: 15px; }
    .btn-group { flex-direction: column; gap: 15px; margin-top: 30px; }
    .enter-btn { padding: 14px 40px; font-size: 1.1rem; width: 100%; max-width: 280px; }
    .scroll-indicator { bottom: 25px; font-size: 1.5rem; }
    #featured { padding: 60px 3vw; }
    .section-title { font-size: 2.5rem; margin-bottom: 30px; }
    .carousel { gap: 15px; padding: 20px 10px 40px 10px; }
    .card { min-width: 220px; height: 320px; border-radius: 15px; }
    .card:hover { transform: translateY(-8px) scale(1.01); }
    #cursor { display: none !important; }
    .blob-1, .blob-2, .blob-3 { width: 80vw; height: 80vw; }
    .heart-loader { width: 45px; height: 45px; }
    .heart-loader::before, .heart-loader::after { width: 45px; height: 45px; }
    .heart-loader::before { left: -22px; }
    .heart-loader::after { top: -22px; }
    .verify-container { padding: 30px 20px; margin: 0 15px; border-radius: 12px; }
    .verify-container h2 { font-size: 22px; }
    .verify-container p { font-size: 14px; margin-bottom: 20px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 12vw; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-content { padding: 1.2rem; margin: 0 10px; }
    .enter-btn { padding: 12px 30px; font-size: 1rem; max-width: 250px; }
    .section-title { font-size: 2rem; }
    .card { min-width: 180px; height: 260px; border-radius: 12px; }
    .menu-link { font-size: 2rem; }
    .menu-overlay { gap: 25px; }
    nav { top: 15px; right: 15px; }
    .menu-btn { font-size: 1rem; padding: 8px 16px; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    #cursor { display: none !important; }
    .card:hover { transform: translateY(-5px); }
    .card:hover img { transform: scale(1.03); }
    .enter-btn:active { transform: scale(0.98); }
    .card:active { transform: scale(0.98); }
    .menu-btn:active { transform: scale(0.95); }
}

/* Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-title { font-size: 8vh; }
    .hero-subtitle { font-size: 2.5vh; margin-bottom: 15px; }
    .btn-group { flex-direction: row; margin-top: 15px; }
    .enter-btn { padding: 10px 25px; font-size: 0.9rem; }
    .scroll-indicator { bottom: 10px; font-size: 1.2rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile Button Fix */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .enter-btn {
        white-space: normal !important;
        width: auto !important;
        max-width: 90vw !important;
        padding: 14px 35px !important;
        font-size: 1rem !important;
        text-align: center;
        box-sizing: border-box;
    }
    .btn-group .enter-btn:nth-child(1):not(.slide-in-left),
    .btn-group .enter-btn:nth-child(2):not(.slide-in-right) {
        transform: translateY(0) !important;
        opacity: 0;
    }
    .hero-content {
        width: calc(100% - 30px);
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .enter-btn {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }
}
