/* ==============================================
   INFINITY KINGDOM — LANDING PAGE STYLES
   Epic Fantasy Color Palette:
   - Gold:        #D4A843 / #F0C850 / #FFD700
   - Royal Blue:  #1a1a3e / #0f0f2e
   - Deep Red:    #8B1A1A / #C0392B
   - Dark BG:     #0a0a1a / #050510
   - Light Text:  #e8e0d0
   ============================================== */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
    --gold:          #D4A843;
    --gold-light:    #F0C850;
    --gold-bright:   #FFD700;
    --gold-dark:     #B8860B;
    --royal-blue:    #1a1a3e;
    --deep-blue:     #0f0f2e;
    --deep-bg:       #0a0a1a;
    --dark-bg:       #050510;
    --deep-red:      #8B1A1A;
    --crimson:       #C0392B;
    --text-light:    #e8e0d0;
    --text-dim:      #a89e8e;
    --text-white:    #fff;
    --font-display:  'Cinzel', serif;
    --font-body:     'Inter', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto; /* Changed to auto so JS controls smooth scrolling cleanly */
    overflow-x: hidden;
    font-size: 16px;
    /* CSS Snap removed in favor of JS custom behavior */
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    padding-top: 45px; /* Added padding to clear the fixed top-fomo-bar */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---- GOLDEN PARTICLES CANVAS ---- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ---- SECTION BASE ---- */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    /* CSS Snap removed */
}

.section-bg {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.section-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 16, 0.3) 0%,
        rgba(5, 5, 16, 0.6) 50%,
        rgba(5, 5, 16, 0.85) 100%
    );
}

.dark-overlay {
    background: linear-gradient(
        180deg,
        rgba(5, 5, 16, 0.5) 0%,
        rgba(5, 5, 16, 0.7) 50%,
        rgba(5, 5, 16, 0.9) 100%
    );
}

.dark-overlay-heavy {
    background: rgba(5, 5, 16, 0.75);
}

.section-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 80px 60px;
    margin: 0 auto;
}

/* ---- TYPOGRAPHY ---- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}

.gold-text {
    background: linear-gradient(180deg, #FFD700 0%, #D4A843 40%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 67, 0.4));
}

.highlight {
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-ornament {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 30px;
    border-radius: 2px;
}

.section-description {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.85;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.text-block {
    margin-bottom: 50px;
}

/* =======================================
   ANIMATIONS
======================================= */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================
   HERO SECTION
======================================= */
.hero-section {
    min-height: 100vh;
    flex-direction: column;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Sound Toggle Button — Moved to top bar */
.sound-toggle-btn {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.sound-toggle-btn svg {
    width: 16px;
    height: 16px;
}

.sound-toggle-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.sound-toggle-btn:hover {
    background: rgba(212, 168, 67, 0.25);
    border-color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

/* Icon visibility toggle */
.sound-toggle-btn .icon-unmuted {
    display: none;
}

.sound-toggle-btn.sound-on .icon-muted {
    display: none;
}

.sound-toggle-btn.sound-on .icon-unmuted {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 16, 0.1) 0%,
        rgba(5, 5, 16, 0.3) 40%,
        rgba(5, 5, 16, 0.85) 90%,
        rgba(5, 5, 16, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 40px 60px 40px; /* Reduced top padding, kept bottom padding for scroll indicator buffer */
    text-align: center;
}

.hero-logo {
    width: clamp(280px, 35vw, 550px);
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 40px rgba(212, 168, 67, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px; /* Tighter gap */
    max-width: 100%;
    white-space: nowrap; /* Forces text to stay on one single line */
    color: #FFFFFF; /* Pure white as requested */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8); /* Maintain shadow for readability */
}

.hero-hook {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff; /* Changed to brilliant white */
    margin-bottom: 25px; /* Reduced spacing */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ---- CTA BUTTON (IMAGE) ---- */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transform-origin: center;
    /* Continuous Bounce & Glow */
    animation: ctaContinuousBounce 2.5s infinite ease-in-out;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
}

@keyframes ctaContinuousBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
    }
}

.cta-img {
    width: clamp(240px, 20vw, 380px);
    height: auto;
    transition: filter 0.3s ease;
}

/* Make final CTA button significantly larger */
#final-cta .cta-img {
    width: clamp(380px, 45vw, 650px);
}

/* Hover Animation: Scale and Glow */
.cta-button:hover {
    animation: none; /* Stop bounce on hover */
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 80px rgba(255, 215, 0, 1));
}

.cta-button:hover .cta-img {
    filter: brightness(1.2) contrast(1.1);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Add a continuous breathing/pulsing golden glow to the cta container */
.cta-button::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 20px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    animation: ctaBreathe 3s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Loop Light Sweep (Shimmer) Effect - Masked to Button Shape */
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    ) no-repeat;
    background-size: 60% 100%;
    background-position: -150% 0;
    transform: skewX(-25deg);
    z-index: 11;
    pointer-events: none;
    
    /* Perfect masking using the button image itself */
    -webkit-mask-image: url('assets/images/play.png');
    mask-image: url('assets/images/play.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    
    animation: ctaLightSweep 3.5s infinite;
}

@keyframes ctaLightSweep {
    0% { background-position: -150% 0; }
    40% { background-position: 250% 0; }
    100% { background-position: 250% 0; }
}

@keyframes ctaBreathe {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.cta-disclaimer {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: statSquareEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1.1s; /* Slightly after the button (1s) to create a subtle cascade, or same time */
}

/* =======================================
   FOMO REDEEM CODE TOP BAR
======================================= */
.top-fomo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.95), rgba(10, 10, 25, 0.9));
    border-bottom: 1px solid rgba(212, 168, 67, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 25px; /* Added left/right padding */
    font-family: var(--font-body);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex: 1; /* Pushes center to center */
}

.top-bar-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #D4A843, #FFD700, #B8860B);
    color: #1a0a00;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.4);
    transition: all 0.3s ease;
    animation: pulseSmallBtn 2s infinite alternate ease-in-out;
    letter-spacing: 0.05em;
}

.top-bar-play-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFD700, #FFA500, #D4A843);
    color: #0d0500;
}

.top-bar-play-btn .btn-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.top-bar-play-btn:hover .btn-icon {
    transform: translateX(2px);
}

@keyframes pulseSmallBtn {
    0% {
        box-shadow: 0 0 5px rgba(212, 168, 67, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), inset 0 0 8px rgba(255, 255, 255, 0.2);
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1; /* Balances left side for exact centering */
    gap: 12px;
}

.top-bar-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.top-bar-logo:hover {
    opacity: 1;
}

/* ---- LANGUAGE SWITCHER ---- */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(5, 5, 16, 0.6);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 4px;
    padding: 2px 3px;
    margin-right: 4px;
}

.lang-option {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border: none;
    padding: 3px 6px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    line-height: 1;
}

.lang-option:hover {
    color: var(--gold-light);
    background: rgba(212, 168, 67, 0.15);
}

.lang-option.lang-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.7), rgba(184, 134, 11, 0.7));
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.fomo-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Allows wrapping on very small screens */
    gap: 15px; /* Spacing between the label, code box, and timer */
}

/* Line 1: Code Reveal */
.fomo-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.code-reveal-box {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.2), rgba(212, 168, 67, 0.05));
    border: 1px dashed var(--gold);
    padding: 3px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 110px;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reveal-text {
    font-size: 0.8rem;
}

.code-reveal-box:hover {
    background: rgba(212, 168, 67, 0.3);
    border-style: solid;
    transform: scale(1.05);
}

.code-reveal-box.revealed {
    background: rgba(212, 168, 67, 0.4);
    border: 1px solid var(--gold-bright);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: default;
    transform: none;
}

.finger-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-bright);
    animation: fingerPoint 1s infinite alternate ease-in-out;
}

@keyframes fingerPoint {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-4px) rotate(-10deg); }
}

.reveal-text {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.copy-toast {
    position: absolute;
    bottom: -30px; /* Moved back down to not overlap with inline elements */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gold);
    color: #000;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Line Layout: Visual Widget Timer */
.time-widget {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(5, 5, 16, 0.6);
    padding: 3px 8px; /* Reduced padding */
    border-radius: 4px; /* Reduced radius */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #1a1a2e, #0f0f1a);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 2px;
    padding: 1px 3px; /* Significantly reduced padding */
    min-width: 25px; /* Reduced width */
}

.time-box span:first-child {
    font-size: 0.85rem; /* Smaller font for digits */
    font-weight: 700;
    color: var(--gold-bright);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.time-label {
    font-size: 0.4rem; /* Smaller font for labels */
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1px;
    letter-spacing: 0.05em;
}

.time-sep {
    font-size: 0.95rem; /* Match smaller digits */
    font-weight: bold;
    color: rgba(255, 255, 255, 0.4);
    animation: blinkSep 1s infinite step-start;
}

@keyframes blinkSep {
    50% { opacity: 0; }
}

.time-widget.expired-fomo {
    border-color: rgba(255, 77, 77, 0.5);
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

.time-widget.expired-fomo .time-box {
    border-color: rgba(255, 77, 77, 0.4);
    background: linear-gradient(180deg, #2a0a0a, #1a0505);
}

.time-widget.expired-fomo .time-box span:first-child {
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
}

/* =======================================
   HERO STATS BAR (Golden Squares)
======================================= */
.hero-windows-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Reduced gap from 15px */
    background: linear-gradient(135deg, rgba(26, 26, 62, 0.8), rgba(5, 5, 16, 0.9));
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 8px 20px; /* Reduced padding from 12px 30px */
    font-size: 0.85rem; /* Explicit smaller font size */
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 25px; /* Added more space from the stats bar above */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 168, 67, 0.2);
    /* Pure CSS Animation matching the stats but slightly longer delay */
    opacity: 0;
    transform: translateY(20px);
    animation: statSquareEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1s; /* Appears shortly after the stats load */
}

.hero-windows-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.4), inset 0 0 30px rgba(212, 168, 67, 0.3);
    border-color: var(--gold-bright);
}

.windows-logo-small {
    width: 20px; /* Reduced from 28px */
    height: 20px; /* Reduced from 28px */
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.hero-stats-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px; /* Reduced gap below the play button */
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.stat-square {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: help;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(40px);
    animation: statSquareEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes statSquareEntry {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-square:nth-child(1) { animation-delay: 0.6s; }
.stat-square:nth-child(2) { animation-delay: 0.75s; }
.stat-square:nth-child(3) { animation-delay: 0.9s; }
.stat-square:nth-child(4) { animation-delay: 1.05s; }
.stat-square:nth-child(5) { animation-delay: 1.2s; }

.stat-square:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-bright);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6), 0 0 20px rgba(255, 215, 0, 0.2);
}

.stat-svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.stat-square:hover .stat-svg {
    transform: scale(1.1);
    color: var(--gold-bright);
}

.stat-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-bright);
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.stat-sub {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hover Tooltips */
.stat-square::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(5, 5, 16, 0.95);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 6px;
    white-space: normal;
    width: 220px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.stat-square::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: var(--gold) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.stat-square:hover::after,
.stat-square:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.floating-cta {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8))
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.floating-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(30px);
}

.floating-cta-img {
    width: clamp(200px, 15vw, 300px); /* Slightly smaller than main CTAs */
    height: auto;
    transition: filter 0.3s ease;
}

.floating-cta:hover {
    transform: translateX(-50%) scale(1.08) translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 50px rgba(255, 215, 0, 0.7));
}

.floating-cta:hover .floating-cta-img {
    filter: brightness(1.2) contrast(1.1);
}

.floating-cta::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.5) 0%, transparent 60%);
    animation: floatingBreathe 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatingBreathe {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* ---- SCROLL INDICATOR ---- */
.hero-scroll-wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: indicatorFadeUp 0.8s ease-out 1.5s forwards;
    transition: opacity 0.3s;
}

@keyframes indicatorFadeUp {
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

.hero-scroll-indicator:hover { opacity: 1 !important; }

.hero-scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 5px; /* Adds a bit more space above the text */
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
    margin-bottom: 15px; /* Creates more distance from the text */
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(12px) rotate(45deg); }
}

/* =======================================
   HEROES SCROLLER SECTION
======================================= */
.heroes-scroller-section {
    min-height: 100vh;
    padding: 15px 0 0;
    flex-direction: column;
}

.scroller-container .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 5px;
}

.scroller-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.scroller-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-top: -30px;
    flex-shrink: 0;
    height: 55vh;
    /* Edge fade out masks */
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.scroller-track {
    display: flex;
    width: max-content;
    height: 100%;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroller-item {
    width: 350px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 5px;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: default;
    position: relative;
}

.scroller-item img {
    height: 100%;
    max-width: 130%;
    object-fit: contain;
    transform-origin: bottom center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                filter 0.5s ease,
                opacity 0.4s ease;
    pointer-events: none;
}

/* Dim non-hovered characters when a character is active */
.scroller-track.hero-active .scroller-item:not(.hero-item-active) img {
    opacity: 0.4;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8)) brightness(0.5);
}

.scroller-item.hero-item-active img {
    transform: scale(1.08);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 1))
            drop-shadow(0 0 40px rgba(212, 168, 67, 0.6));
    z-index: 10;
}

/* Restricted hover zone — centered on character torso */
.hero-hover-zone {
    position: absolute;
    top: 15%;
    left: 25%;
    width: 50%;
    height: 55%;
    z-index: 5;
    cursor: pointer;
    /* Debug: uncomment below to see the zone */
    /* background: rgba(255, 0, 0, 0.15); */
}

/* =======================================
   HERO INFO PANEL (Bottom of section)
======================================= */
.hero-info-panel {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    margin-top: -4vh;
}

.hero-info-panel.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-info-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                inset 0 1px 0 rgba(255, 215, 0, 0.15);
}

.hero-info-default {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-info-element {
    display: inline-block;
    width: fit-content;
    padding: 6px 18px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #D4A843, #B8860B);
}

/* Element color variants */
.hero-info-element[data-element="Fire"] {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.hero-info-element[data-element="Holy"] {
    background: linear-gradient(135deg, #f1c40f, #d4a843);
    color: #1a1a3e;
}
.hero-info-element[data-element="Earth"] {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}
.hero-info-element[data-element="Shadow"] {
    background: linear-gradient(135deg, #8e44ad, #6c3483);
}
.hero-info-element[data-element="Lightning"] {
    background: linear-gradient(135deg, #3498db, #2980b9);
}
.hero-info-element[data-element="Water"] {
    background: linear-gradient(135deg, #1abc9c, #16a085);
}

.hero-info-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(180deg, #FFD700 0%, #D4A843 60%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 67, 0.6));
    line-height: 1.2;
}

.hero-info-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.hero-info-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-top: 8px;
    max-width: 90%;
}

/* Video Box */
.hero-info-video-box {
    position: relative;
    width: 440px;
    min-width: 440px;
    height: 248px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.4);
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-info-video-box:hover {
    border-color: var(--gold-bright);
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7),
                0 0 25px rgba(255, 215, 0, 0.4);
}

.hero-info-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.hero-info-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-info-video-box.playing .hero-info-poster {
    opacity: 0;
}

.hero-info-video-box.playing .hero-info-video {
    opacity: 1;
}

.hero-info-video-box.playing .hero-info-play-btn {
    opacity: 0;
}

.hero-info-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-info-play-btn svg {
    width: 24px;
    height: 24px;
}

.hero-info-video-box:hover .hero-info-play-btn {
    background: rgba(212, 168, 67, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}


/* =======================================
   KINGDOM / 3D COVERFLOW SECTION
======================================= */

/* Golden sparkle canvas */
.golden-particles-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
}

.coverflow-section-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 100%;
    position: relative;
}

.coverflow-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.coverflow-container {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 750px;
    perspective: 1600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Golden Arrow Buttons --- */
.cf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s, filter 0.3s;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.cf-arrow img {
    width: 110px;
    height: auto;
}

.cf-arrow-left {
    left: 40px;
}

.cf-arrow-right {
    right: 40px;
}

.cf-arrow:hover {
    transform: translateY(-50%) scale(1.25);
    filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.9))
            drop-shadow(0 0 40px rgba(212, 168, 67, 0.4));
}

.cf-arrow:active {
    transform: translateY(-50%) scale(1.1);
}

/* --- Each Card (MAXIMIZED) --- */
.coverflow-card {
    position: absolute;
    width: 520px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform, opacity;
}

.coverflow-card-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    /* Golden Rustic Frame */
    border: 4px solid;
    border-image: linear-gradient(160deg, #c9a84c, #e8d48b, #a07828, #e8d48b, #c9a84c) 1;
    box-shadow:
        0 0 0 2px rgba(160, 120, 40, 0.4),
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(232, 212, 139, 0.2);
    background: linear-gradient(180deg, #1a2a38 0%, #0d1a26 100%);
    position: relative;
    transition: box-shadow 0.6s, border-image 0.6s;
}

/* Dark overlay for inactive cards */
.coverflow-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5, 15, 25, 0.6);
    z-index: 2;
    border-radius: 10px;
    transition: opacity 0.6s;
    pointer-events: none;
}

/* Image area */
.coverflow-card-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    flex-shrink: 0;
}

.coverflow-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Text area */
.coverflow-card-body {
    padding: 30px 28px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.coverflow-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.coverflow-card-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(190, 210, 220, 0.9);
    margin: 0;
}

/* ===== 3D POSITION STATES (Only 3 visible) ===== */

/* Active center card */
.coverflow-card.cf-active {
    transform: translateX(0) rotateY(0deg) translateZ(80px) scale(1);
    z-index: 10;
    opacity: 1;
}
.coverflow-card.cf-active::after {
    opacity: 0;
}
.coverflow-card.cf-active .coverflow-card-inner {
    border-image: linear-gradient(160deg, #ffd700, #fff1a8, #c9a84c, #fff1a8, #ffd700) 1;
    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.5),
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(212, 168, 67, 0.25),
        0 0 120px rgba(212, 168, 67, 0.1),
        inset 0 1px 0 rgba(255, 241, 168, 0.3);
    animation: goldenPulse 3s ease-in-out infinite;
}

@keyframes goldenPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5), 0 30px 80px rgba(0,0,0,0.9), 0 0 60px rgba(212,168,67,0.25); }
    50% { box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.7), 0 30px 80px rgba(0,0,0,0.9), 0 0 90px rgba(212,168,67,0.4); }
}

/* Left neighbor */
.coverflow-card.cf-prev {
    transform: translateX(-540px) rotateY(45deg) translateZ(-150px) scale(0.75);
    z-index: 5;
    opacity: 1;
}

/* Right neighbor */
.coverflow-card.cf-next {
    transform: translateX(540px) rotateY(-45deg) translateZ(-150px) scale(0.75);
    z-index: 5;
    opacity: 1;
}

/* All other cards hidden */
.coverflow-card.cf-prev-2,
.coverflow-card.cf-next-2,
.coverflow-card.cf-hidden {
    transform: translateX(0) rotateY(0deg) translateZ(-500px) scale(0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* Hover on side cards */
.coverflow-card:not(.cf-active):hover .coverflow-card-inner {
    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.5),
        0 25px 70px rgba(0, 0, 0, 0.8),
        0 0 35px rgba(212, 168, 67, 0.3);
}

/* =======================================
   VIDEO SHOWCASE SECTION
======================================= */

.video-particles-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 4;
    pointer-events: none;
}

.video-showcase-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 100%;
    position: relative;
}

.vs-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

.vs-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 650px;
    perspective: 1600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Side shadow gradients (vignette) */
.vs-slider-wrapper::before,
.vs-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.vs-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(2, 8, 18, 0.95), transparent);
}
.vs-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(2, 8, 18, 0.95), transparent);
}

/* --- Golden Arrow Buttons --- */
.vs-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s, filter 0.3s;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.vs-arrow img {
    width: 100px;
    height: auto;
}

.vs-arrow-left { left: 30px; }
.vs-arrow-right { right: 30px; }

.vs-arrow:hover {
    transform: translateY(-50%) scale(1.25);
    filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.9))
            drop-shadow(0 0 40px rgba(212, 168, 67, 0.4));
}

/* --- Each Video Slide --- */
.vs-slide {
    position: absolute;
    width: 820px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vs-slide-inner {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 3px solid;
    border-image: linear-gradient(160deg, #c9a84c, #e8d48b, #a07828, #e8d48b, #c9a84c) 1;
    box-shadow:
        0 0 0 1px rgba(160, 120, 40, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 5px 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.6s, border-image 0.6s;
}

/* Dark overlay for inactive slides */
.vs-slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(2, 8, 18, 0.65);
    z-index: 2;
    border-radius: 8px;
    transition: opacity 0.6s;
    pointer-events: none;
}

.vs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Golden Play Button --- */
.vs-play-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.4s;
}

.vs-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid;
    border-image: none;
    border-color: #e8d48b;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.3), 0 0 60px rgba(212, 168, 67, 0.1);
    animation: playBtnPulse 2.5s ease-in-out infinite;
}

.vs-play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.vs-play-btn:hover {
    transform: scale(1.15);
    background: rgba(212, 168, 67, 0.2);
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.5), 0 0 80px rgba(212, 168, 67, 0.2);
}

@keyframes playBtnPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.3), 0 0 60px rgba(212, 168, 67, 0.1); }
    50% { box-shadow: 0 0 45px rgba(212, 168, 67, 0.5), 0 0 90px rgba(212, 168, 67, 0.2); }
}

/* Hide play button when video is playing */
.vs-slide.vs-playing .vs-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* --- Fullscreen Button --- */
.vs-fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 168, 67, 0.4);
    color: #ffd700;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

/* Only show fullscreen button on active slide on hover OR if video is playing */
.vs-slide.vs-active:hover .vs-fullscreen-btn,
.vs-slide.vs-active.vs-playing .vs-fullscreen-btn {
    opacity: 1;
    transform: scale(1);
}

.vs-fullscreen-btn:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: #ffd700;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
}

/* --- Slide Info (Title + Description below) --- */
.vs-slide-info {
    text-align: center;
    padding: 20px 30px 0;
    max-width: 600px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.vs-slide-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.vs-slide-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(200, 215, 225, 0.85);
    margin: 0;
}

/* ===== 3D POSITION STATES ===== */

/* Active center slide */
.vs-slide.vs-active {
    transform: translateX(0) rotateY(0deg) translateZ(50px) scale(1);
    z-index: 10;
    opacity: 1;
}
.vs-slide.vs-active::after { opacity: 0; }
.vs-slide.vs-active .vs-slide-inner {
    border-image: linear-gradient(160deg, #ffd700, #fff1a8, #c9a84c, #fff1a8, #ffd700) 1;
    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.4),
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(212, 168, 67, 0.2);
}
.vs-slide.vs-active .vs-slide-info {
    opacity: 1;
    transform: translateY(0);
}

/* Left neighbor */
.vs-slide.vs-prev {
    transform: translateX(-720px) rotateY(40deg) translateZ(-200px) scale(0.65);
    z-index: 5;
    opacity: 1;
}

/* Right neighbor */
.vs-slide.vs-next {
    transform: translateX(720px) rotateY(-40deg) translateZ(-200px) scale(0.65);
    z-index: 5;
    opacity: 1;
}

/* Hidden slides */
.vs-slide.vs-hidden {
    transform: translateX(0) rotateY(0deg) translateZ(-600px) scale(0.4);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* --- Dot Indicators --- */
.vs-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    z-index: 10;
}

.vs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 67, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.vs-dot.vs-dot-active {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.5);
}

.vs-dot:hover {
    border-color: var(--gold-light);
    background: rgba(212, 168, 67, 0.3);
}

/* =======================================
   IMMORTALS CAROUSEL
======================================= */
.immortals-section {
    min-height: 100vh;
}

.immortals-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 20px 0;
}

.carousel-arrow {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.7;
}

.carousel-arrow:hover {
    transform: scale(1.15);
    opacity: 1;
}

.carousel-arrow img {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.5));
}

.carousel-stage {
    width: 900px;
    max-width: 70vw;
    position: relative;
    min-height: 500px;
}

.immortal-slide {
    display: none;
    align-items: center;
    gap: 50px;
    animation: fadeSlideIn 0.6s ease-out;
}

.immortal-slide.active {
    display: flex;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.immortal-art {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.immortal-img {
    max-height: 480px;
    width: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.7))
           drop-shadow(0 0 30px rgba(212, 168, 67, 0.2));
    transition: transform 0.5s;
}

.immortal-slide.active .immortal-img {
    animation: immortalEntrance 0.7s ease-out;
}

@keyframes immortalEntrance {
    from { opacity: 0; transform: scale(0.85) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.immortal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.immortal-name-img {
    max-width: 280px;
    filter: drop-shadow(0 2px 10px rgba(212, 168, 67, 0.5));
}

.immortal-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dim);
    max-width: 420px;
}

/* Immortal Avatar Buttons */
.immortal-avatars {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.avatar-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 168, 67, 0.2);
    transition: all 0.3s;
    opacity: 0.5;
}

.avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-btn:hover {
    opacity: 0.85;
    border-color: rgba(212, 168, 67, 0.5);
    transform: scale(1.1);
}

.avatar-btn.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
    transform: scale(1.15);
}

/* =======================================
   SCREENSHOTS GALLERY
======================================= */
.screenshots-section {
    min-height: 100vh;
}

.screenshots-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.screenshot-frame-container {
    position: relative;
    width: 800px;
    max-width: 80vw;
}

.dragon-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    pointer-events: none;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.6));
}

.screenshot-viewport {
    position: absolute;
    top: 14%;
    left: 22.5%;
    width: 55%;
    height: 72%;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
}

.screenshot-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.screenshot-img.active {
    opacity: 1;
}

.screenshot-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumb-btn {
    width: 100px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(212, 168, 67, 0.2);
    transition: all 0.3s;
    opacity: 0.5;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-btn:hover {
    opacity: 0.85;
    border-color: rgba(212, 168, 67, 0.5);
    transform: translateY(-4px);
}

.thumb-btn.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
}

/* =======================================
   VIDEO TRAILER SECTION
======================================= */
.trailer-section {
    min-height: 90vh;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 960px;
    max-width: 85vw;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212, 168, 67, 0.25);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 168, 67, 0.1);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    z-index: 5;
    filter: drop-shadow(0 5px 20px rgba(0,0,0,0.5));
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
    filter: drop-shadow(0 5px 30px rgba(212, 168, 67, 0.6));
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn svg {
    width: 80px;
    height: 80px;
}

.video-poster.hidden {
    display: none;
}

/* =======================================
   FAQ SECTION (Rustic Golden)
======================================= */
.faq-section {
    position: relative;
    z-index: 5;
}

.faq-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Character Backgrounds */
.faq-character {
    position: absolute;
    bottom: 0;
    height: 75vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.8));
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.faq-character img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.faq-char-left {
    left: -5%;
}

.faq-char-right {
    right: -5%;
}

/* Fade animations for characters */
[data-animate="fade-right"].visible {
    opacity: 0.45;
    transform: translateX(5%);
}

[data-animate="fade-left"].visible {
    opacity: 0.45;
    transform: translateX(-5%);
}

/* Adjust Content Z-Index */
.faq-content {
    position: relative;
    z-index: 10;
}

@media (max-width: 1200px) {
    .faq-character {
        opacity: 0.25;
        height: 60vh;
    }
}

@media (max-width: 900px) {
    .faq-character {
        display: none; /* Hide characters on small screens to avoid clutter */
    }
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.faq-item:hover {
    border-color: rgba(212, 168, 67, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 168, 67, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    padding-right: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.faq-question:hover {
    color: var(--gold-bright);
}

.faq-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.faq-icon::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: var(--gold);
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--gold-bright);
    background: linear-gradient(90deg, rgba(212, 168, 67, 0.1) 0%, transparent 100%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon {
    background-color: var(--gold-bright);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 25px 25px 25px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
    border-top-color: rgba(212, 168, 67, 0.1);
    padding-top: 20px;
}

/* =======================================
   FINAL CTA SECTION
======================================= */
.cta-section {
    min-height: 100vh;
}

.cta-overlay {
    background: linear-gradient(
        180deg,
        rgba(5, 5, 16, 0.35) 0%,
        rgba(10, 5, 20, 0.45) 50%,
        rgba(5, 5, 16, 0.55) 100%
    );
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta-logo {
    width: clamp(200px, 25vw, 400px);
    filter: drop-shadow(0 5px 25px rgba(212, 168, 67, 0.4))
            drop-shadow(0 8px 30px rgba(0, 0, 0, 0.9));
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(180deg, #FFD700 0%, #D4A843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.04em;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.9));
}

.cta-subtext {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e0d0;
    max-width: 650px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.cta-subtext strong {
    color: var(--gold-bright);
    -webkit-text-fill-color: var(--gold-bright);
}

.cta-block .cta-button {
    margin-top: 20px;
}

/* Final section image button sizing */
#final-cta .cta-img {
    width: clamp(380px, 45vw, 650px);
}



/* =======================================
   SCROLL REVEAL ANIMATIONS
======================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================
   RESPONSIVE — TABLET (max-width: 1200px)
======================================= */
@media (max-width: 1200px) {
    .section-content {
        padding: 60px 30px;
    }

    /* Hero */
    .hero-content {
        padding: 40px 30px;
    }

    .hero-stats-bar {
        gap: 14px;
    }

    .stat-square {
        width: 90px;
        height: 90px;
    }

    .stat-svg {
        width: 26px;
        height: 26px;
    }

    .stat-val {
        font-size: 1.1rem;
    }

    /* Heroes Scroller */
    .scroller-item {
        width: 280px;
    }

    /* Hero Info Panel */
    .hero-info-content {
        gap: 30px;
        padding: 30px 40px;
    }

    .hero-info-video-box {
        width: 340px;
        min-width: 340px;
        height: 191px;
    }

    /* Coverflow */
    .coverflow-card {
        width: 420px;
    }

    .coverflow-card-image {
        height: 300px;
    }

    .coverflow-card.cf-prev {
        transform: translateX(-440px) rotateY(45deg) translateZ(-150px) scale(0.75);
    }

    .coverflow-card.cf-next {
        transform: translateX(440px) rotateY(-45deg) translateZ(-150px) scale(0.75);
    }

    .cf-arrow-left { left: 15px; }
    .cf-arrow-right { right: 15px; }
    .cf-arrow img { width: 80px; }

    /* Video Showcase */
    .vs-slide {
        width: 620px;
    }

    .vs-slide.vs-prev {
        transform: translateX(-540px) rotateY(40deg) translateZ(-200px) scale(0.65);
    }

    .vs-slide.vs-next {
        transform: translateX(540px) rotateY(-40deg) translateZ(-200px) scale(0.65);
    }

    .vs-arrow-left { left: 10px; }
    .vs-arrow-right { right: 10px; }
    .vs-arrow img { width: 70px; }
}

/* =======================================
   RESPONSIVE — SMALL TABLET (max-width: 900px)
======================================= */
@media (max-width: 900px) {
    .section-content {
        padding: 50px 20px;
    }

    /* Hero */
    .hero-logo {
        width: clamp(200px, 50vw, 350px);
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
    }

    .hero-stats-bar {
        gap: 10px;
        flex-wrap: wrap;
        max-width: 350px;
    }

    .stat-square {
        width: 80px;
        height: 80px;
    }

    .stat-svg {
        width: 22px;
        height: 22px;
        margin-bottom: 5px;
    }

    .stat-val {
        font-size: 0.95rem;
    }

    /* Tooltips: show below on mobile */
    .stat-square::after {
        bottom: auto;
        top: 115%;
        width: 180px;
        font-size: 0.75rem;
    }

    .stat-square::before {
        bottom: auto;
        top: 100%;
        border-color: transparent transparent var(--gold) transparent;
    }

    .hero-windows-btn {
        padding: 10px 20px;
        gap: 10px;
    }

    .hero-windows-btn span {
        font-size: 0.85rem;
    }

    /* Heroes Scroller */
    .heroes-scroller-section {
        min-height: auto;
        padding: 10px 0;
    }

    .scroller-container {
        height: auto;
        min-height: 100vh;
    }

    .scroller-track-wrapper {
        height: 40vh;
        margin-top: -15px;
    }

    .scroller-item {
        width: 200px;
    }

    /* Info Panel — stack vertically */
    .hero-info-panel {
        padding: 0 15px;
        min-height: 150px;
        margin-top: -2vh;
    }

    .hero-info-content {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
        align-items: center;
    }

    .hero-info-text {
        align-items: center;
    }

    .hero-info-desc {
        max-width: 100%;
        text-align: center;
    }

    .hero-info-video-box {
        width: 100%;
        min-width: unset;
        max-width: 400px;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .hero-info-name {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    /* Coverflow */
    .coverflow-card {
        width: 320px;
    }

    .coverflow-card-image {
        height: 220px;
    }

    .coverflow-card-body {
        padding: 20px 18px 25px;
        gap: 10px;
    }

    .coverflow-card-body h3 {
        font-size: 1.2rem;
    }

    .coverflow-card-body p {
        font-size: 0.9rem;
    }

    .coverflow-card.cf-prev {
        transform: translateX(-320px) rotateY(45deg) translateZ(-150px) scale(0.7);
    }

    .coverflow-card.cf-next {
        transform: translateX(320px) rotateY(-45deg) translateZ(-150px) scale(0.7);
    }

    .cf-arrow img { width: 60px; }
    .cf-arrow-left { left: 5px; }
    .cf-arrow-right { right: 5px; }

    /* Video Showcase */
    .vs-slide {
        width: 85vw;
        max-width: 500px;
    }

    .vs-slide.vs-prev {
        transform: translateX(-80vw) rotateY(30deg) translateZ(-150px) scale(0.6);
    }

    .vs-slide.vs-next {
        transform: translateX(80vw) rotateY(-30deg) translateZ(-150px) scale(0.6);
    }

    .vs-slider {
        height: 55vh;
    }

    .vs-arrow img { width: 50px; }
    .vs-arrow-left { left: 5px; }
    .vs-arrow-right { right: 5px; }

    .vs-slide-info h3 {
        font-size: 1.3rem;
    }

    .vs-slide-info p {
        font-size: 0.85rem;
    }

    .vs-play-btn {
        width: 60px;
        height: 60px;
    }

    .vs-play-btn svg {
        width: 24px;
        height: 24px;
    }

    /* CTA */
    .cta-section {
        min-height: 60vh;
    }

    .cta-headline {
        font-size: clamp(1.4rem, 5vw, 2.2rem);
    }

    .cta-subtext {
        font-size: 1rem;
        max-width: 90%;
    }

    /* Footer */
    .site-footer {
        padding: 30px 20px;
    }
}

/* =======================================
   RESPONSIVE — MOBILE (max-width: 600px)
======================================= */
@media (max-width: 600px) {
    .section-content {
        padding: 40px 15px;
    }

    /* Hero */
    .hero-content {
        padding: 30px 15px;
    }

    .hero-logo {
        width: clamp(180px, 55vw, 280px);
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        margin-bottom: 20px;
    }

    .cta-img {
        width: clamp(180px, 50vw, 260px);
    }

    .hero-windows-btn {
        padding: 8px 16px;
        gap: 8px;
        margin-top: 15px;
    }

    .windows-logo-small {
        width: 20px;
        height: 20px;
    }

    .hero-windows-btn span {
        font-size: 0.75rem;
    }

    .hero-stats-bar {
        gap: 8px;
        margin-top: 30px;
        max-width: 100%;
    }

    .stat-square {
        width: 58px;
        height: 58px;
    }

    .stat-svg {
        width: 18px;
        height: 18px;
        margin-bottom: 3px;
    }

    .stat-val {
        font-size: 0.75rem;
    }

    /* Hide tooltips on small screens */
    .stat-square::after,
    .stat-square::before {
        display: none;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .hero-scroll-indicator span {
        font-size: 0.65rem;
    }

    .scroll-arrow {
        width: 18px;
        height: 18px;
    }

    /* Heroes Scroller */
    .scroller-container .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        padding: 0 10px;
    }

    .scroller-track-wrapper {
        height: 35vh;
    }

    .scroller-item {
        width: 150px;
    }

    .hero-info-panel {
        padding: 0 10px;
        min-height: 120px;
    }

    .hero-info-content {
        padding: 20px 15px;
        gap: 15px;
    }

    .hero-info-name {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .hero-info-title {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .hero-info-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-info-element {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    /* Hide video box on very small screens */
    .hero-info-video-box {
        display: none;
    }

    /* Coverflow */
    .coverflow-card {
        width: 260px;
    }

    .coverflow-card-image {
        height: 170px;
    }

    .coverflow-card-body {
        padding: 15px 14px 20px;
        gap: 8px;
    }

    .coverflow-card-body h3 {
        font-size: 1rem;
    }

    .coverflow-card-body p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .coverflow-card.cf-prev {
        transform: translateX(-250px) rotateY(40deg) translateZ(-120px) scale(0.65);
    }

    .coverflow-card.cf-next {
        transform: translateX(250px) rotateY(-40deg) translateZ(-120px) scale(0.65);
    }

    .cf-arrow img { width: 45px; }

    /* Video Showcase */
    .vs-slide {
        width: 90vw;
        max-width: 380px;
    }

    .vs-slide.vs-prev {
        transform: translateX(-85vw) rotateY(25deg) translateZ(-120px) scale(0.55);
    }

    .vs-slide.vs-next {
        transform: translateX(85vw) rotateY(-25deg) translateZ(-120px) scale(0.55);
    }

    .vs-slider {
        height: 50vh;
    }

    .vs-arrow img { width: 40px; }

    .vs-slider-wrapper::before,
    .vs-slider-wrapper::after {
        width: 80px;
    }

    .vs-slide-info {
        padding: 12px 15px 0;
    }

    .vs-slide-info h3 {
        font-size: 1.1rem;
    }

    .vs-slide-info p {
        font-size: 0.8rem;
    }

    .vs-play-btn {
        width: 50px;
        height: 50px;
    }

    .vs-play-btn svg {
        width: 20px;
        height: 20px;
    }

    .vs-dots {
        gap: 8px;
    }

    .vs-dot {
        width: 10px;
        height: 10px;
    }

    /* CTA */
    .cta-section {
        min-height: 50vh;
    }

    .cta-logo {
        width: clamp(150px, 40vw, 250px);
    }

    .cta-headline {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .cta-subtext {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .cta-block {
        gap: 18px;
    }

    /* Footer */
    .site-footer {
        padding: 25px 15px;
    }

    .footer-legal {
        font-size: 0.7rem;
    }

    .footer-publisher-logo {
        height: 28px;
    }

    /* Sound toggle */
    .sound-toggle-btn {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
}

/* ============================================
   SECTION 6: FINAL CTA V2 (Redesign)
============================================= */
.cta-section-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.6) 0%, 
        rgba(0,0,0,0) 30%, 
        rgba(0,0,0,0) 70%, 
        rgba(0,0,0,0.8) 100%
    );
    z-index: 1;
}

.cta-v2-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    pointer-events: none; /* Let clicks pass through empty space */
}

/* Logo Top Center (Force Hide as requested) */
.cta-v2-logo-wrap, .cta-v2-logo {
    display: none !important;
}

/* Gate Button Wrapper - Centered on Portal */
.cta-v2-gate-wrap {
    position: absolute;
    top: 53%; /* Moved down to center vertically on the door */
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 10;
    width: 90%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

/* Black Smoke Effect behind the button */
.cta-smoke-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 180%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0) 65%);
    filter: blur(20px);
    z-index: 1;
    border-radius: 50%;
    animation: smoke-pulse 3.5s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes smoke-pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
    50% { transform: translate(-50%, -48%) scale(1.05); opacity: 0.95; filter: blur(25px); }
    100% { transform: translate(-50%, -52%) scale(1); opacity: 0.8; filter: blur(30px); }
}

/* The Image Gate Button (start.png) */
.cta-gate-btn-img {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2; /* Above the smoke */
    position: relative;
    width: 100%;
    text-align: center;
}

.cta-img-v2 {
    width: 100%;
    max-width: 450px; /* Shrunk width to fit inside the door frame */
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.8));
}

.cta-gate-btn-img:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Pulse Glow Animation for Image (Enhanced) */
@keyframes pulse-glow-img {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 69, 0, 0.4));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(255, 69, 0, 0.8));
    }
    100% { 
        transform: scale(1.02);
        filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 69, 0, 0.5));
    }
}

.cta-gate-btn-img[data-animate="pulse-glow-img"] {
    animation: pulse-glow-img 2s infinite ease-in-out;
}

/* CTA Fire Particles Canvas */
.cta-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind content, above background */
    pointer-events: none; /* Ignore clicks */
    mix-blend-mode: screen; /* Makes fire look brighter and blend nicely */
}

/* Bottom Text Area - Absolute Bottom */
.cta-v2-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 3vh; /* Keep it hugged to the absolute bottom */
    text-align: center;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); /* Extra shadow to read text better */
    padding-top: 40px;
}

.cta-headline-v2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold-bright);
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    letter-spacing: 2px;
    white-space: nowrap; /* Forces onto one line */
    width: 100%;
}

.cta-subtext-v2-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align to the bottom of the YOU text */
}

.cta-subtext-v2 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--text-white);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    display: flex;
    align-items: center; /* Center vertically with YOU */
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* Slightly Larger YOU */
.cta-subtext-v2 .cta-subtext-you {
    color: #FFD700; /* Bright golden yellow as requested */
    font-size: 1.3em; /* Just slightly larger than the surrounding text */
    font-family: 'Cinzel', serif; /* Use the headline font */
    font-weight: 900;
    line-height: 1;
    margin-left: 8px; /* Subtle space */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 1), 0 0 10px rgba(255, 215, 0, 0.4); /* Subtler shadow */
    vertical-align: baseline; /* Align naturally */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-v2-gate-wrap {
        top: 45%;
        max-width: 320px;
    }
    .cta-headline-v2 {
        font-size: 1.6rem;
    }
    .cta-subtext-v2 {
        font-size: 1rem;
    }
    .cta-subtext-v2 .cta-subtext-you {
        font-size: 2.5rem;
        margin-left: 8px;
    }
}

/* ============================================
   SECTION CTA BUTTON (Video & FAQ sections)
   ============================================ */
.section-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 20px;
    width: 100%;
}

.section-cta-wrap.absolute-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 0;
    z-index: 20;
    pointer-events: none; /* Let the container pass clicks */
}

.section-cta-wrap.absolute-bottom .section-cta-btn {
    pointer-events: auto; /* Re-enable clicks on the button itself */
}

.section-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #D4A843, #FFD700, #B8860B);
    color: #1a0a00;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.5), 0 0 40px rgba(212, 168, 67, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.section-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7), 0 0 60px rgba(212, 168, 67, 0.25);
    background: linear-gradient(135deg, #FFD700, #FFA500, #D4A843);
    color: #0d0500;
}

.section-cta-btn:active {
    transform: translateY(0px) scale(1);
}

