    --border: rgba(226, 192, 141, 0.2);
    --text: #ffffff;
    --fog: rgba(100, 100, 120, 0.05);
    }

    .reveal-init {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1.2s ease, transform 1.2s ease;
    }

    .reveal-active {
        opacity: 1;
        transform: translateY(0);
    }

    .stagger-1 {
        transition-delay: 0.2s;
    }

    .stagger-2 {
        transition-delay: 0.4s;
    }

    .stagger-3 {
        transition-delay: 0.6s;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: #050508;
        color: var(--text);
        font-family: 'Outfit', sans-serif;
        overflow: hidden;
        height: 100vh;
    }

    /* Primary Skin Background */
    .hero {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('hero-image.jpg') center/cover no-repeat;
        transform: scale(1.05);
        /* Soft zoom for Ken Burns */
        animation: kenBurns 40s infinite alternate ease-in-out;
        z-index: 1;
    }

    @keyframes kenBurns {
        from {
            transform: scale(1.05) translate(0, 0);
        }

        to {
            transform: scale(1.15) translate(-1%, -1%);
        }
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
        z-index: 2;
    }

    /* Spotlight Layer */
    .spotlight-layer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        background: radial-gradient(circle at 50% 50%, rgba(226, 192, 141, 0.15) 0%, transparent 60%);
        z-index: 3;
        mix-blend-mode: overlay;
    }

    /* Glass UX Panels */
    .glass-panel {
        position: relative;
        z-index: 10;
        background: var(--glass);
        backdrop-filter: blur(25px) saturate(160%);
        -webkit-backdrop-filter: blur(25px) saturate(160%);
        border: 1px solid var(--border);
        padding: 3rem;
        border-radius: 24px;
        max-width: 600px;
        margin: 15vh auto;
        text-align: center;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    }

    .fantasy-title {
        font-family: 'Cinzel', serif;
        font-size: 4rem;
        letter-spacing: 0.5rem;
        color: var(--text);
        text-shadow: 0 0 20px rgba(226, 192, 141, 0.4);
        margin-bottom: 1rem;
    }

    .glass-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.3rem;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 2rem;
    }

    .glass-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 2rem;
    }

    /* Glass Buttons with Image-Skin */
    .glass-btn {
        padding: 1rem 3rem;
        background: rgba(226, 192, 141, 0.1);
        border: 1px solid var(--gold);
        color: var(--gold);
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        letter-spacing: 0.2rem;
        cursor: pointer;
        transition: all 0.4s ease;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }

    .glass-btn:hover {
        background: var(--gold);
        color: #000;
        box-shadow: 0 0 30px rgba(226, 192, 141, 0.5);
        transform: translateY(-3px);
    }

    /* Countdown */
    .countdown-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .unit {
        display: flex;
        flex-direction: column;
    }

    .unit span {
        font-size: 2.5rem;
        font-family: 'Cinzel', serif;
        color: var(--text);
    }

    .unit label {
        font-size: 0.7rem;
        text-transform: uppercase;
        color: var(--gold);
    }

    /* VFX */
    .vfx-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        pointer-events: none;
    }