/* ========================================
   PRELANDER - SPACE GROTESK + INTER
   Premium Gaming Typography
   ======================================== */

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

html,body{
    height:100vh;
    overflow:hidden;
    font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    background:#08090b;
    color:#fff;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}

/* ========================================
   MAIN CONTAINER
   ======================================== */

.prelander{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    text-decoration:none;
    color:#fff
}

/* ========================================
   LOGO
   ======================================== */

.logo{
    position:absolute;
    top:25px;
    left:40px;
    width:140px;
    z-index:10;
    opacity:0;
    animation:fadeIn .6s ease forwards;
    animation-delay:.1s
}

.logo svg{
    width:100%;
    height:auto;
    color:#fff;
    opacity:.95
}

/* ========================================
   BACKGROUND
   ======================================== */

.bg-grid{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px);
    background-size:60px 60px;
    pointer-events:none;
    z-index:0
}

/* ========================================
   CONTENT
   ======================================== */

.content{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:20px;
    width:100%;
    max-width:900px
}

/* ========================================
   HEADLINE - SPACE GROTESK 700
   ======================================== */

.headline{
    font-family:'Space Grotesk',sans-serif;
    font-size:2.4rem;
    font-weight:700;
    line-height:1.15;
    margin-bottom:16px;
    letter-spacing:-.03em;
    color:#fff;
    opacity:0;
    animation:fadeIn .5s ease forwards;
    animation-delay:.1s
}

/* ========================================
   SUBHEADLINE - INTER 400
   ======================================== */

.subhead{
    font-family:'Inter',sans-serif;
    font-size:1.1rem;
    font-weight:400;
    color:#9aa0ab;
    line-height:1.6;
    margin-bottom:16px;
    max-width:520px;
    opacity:0;
    animation:fadeIn .5s ease forwards;
    animation-delay:.2s
}

/* ========================================
   SOCIAL PROOF - INTER 500
   ======================================== */

.social-proof{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Inter',sans-serif;
    font-size:.9rem;
    font-weight:500;
    color:#6b7280;
    margin-bottom:22px;
    flex-wrap:wrap;
    justify-content:center;
    opacity:0;
    animation:fadeIn .5s ease forwards;
    animation-delay:.3s
}

.rating{
    color:#FFD400
}

.divider{
    color:#3a3f47
}

.users{
    color:#6b7280
}

/* ========================================
   CTA BUTTON - SPACE GROTESK 600
   ======================================== */

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    font-family:'Space Grotesk',sans-serif;
    font-size:1rem;
    font-weight:600;
    letter-spacing:.06em;
    color:#111;
    background:#FFD400;
    border:none;
    border-radius:8px;
    text-decoration:none;
    transition:background .3s ease,box-shadow .3s ease,transform .2s ease;
    text-transform:uppercase;
    box-shadow:0 4px 20px rgba(255,212,0,.2);
    margin-bottom:26px;
    opacity:0;
    animation:fadeIn .5s ease forwards;
    animation-delay:.4s
}

.prelander:hover .cta-button{
    background:#FFC400;
    box-shadow:0 6px 28px rgba(255,212,0,.35);
    transform:translateY(-1px)
}

.cta-icon{
    font-size:.8rem
}

/* ========================================
   HERO IMAGE
   ======================================== */

.hero-image{
    position:relative;
    width:100%;
    max-width:750px;
    aspect-ratio:16/9;
    max-height:36vh;
    border-radius:12px;
    overflow:hidden;
    opacity:0;
    animation:fadeIn .5s ease forwards;
    animation-delay:.5s;
    box-shadow:0 20px 50px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.05)
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block
}

.image-overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(to bottom,rgba(8,9,11,0) 0%,rgba(8,9,11,0) 70%,rgba(8,9,11,.5) 100%);
    pointer-events:none
}

/* ========================================
   DISCLOSURE
   ======================================== */

.disclosure{
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    font-family:'Inter',sans-serif;
    font-size:.65rem;
    font-weight:500;
    color:#2a2e35;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:0;
    animation:fadeIn .5s ease forwards;
    animation-delay:.6s
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
}

/* ========================================
   RESPONSIVE - TABLET (768px)
   ======================================== */

@media(max-width:768px){
    .logo{
        top:20px;
        left:20px;
        width:100px
    }
    
    .content{
        padding:16px
    }
    
    .headline{
        font-size:1.85rem;
        margin-bottom:12px
    }
    
    .subhead{
        font-size:1rem;
        margin-bottom:14px
    }
    
    .social-proof{
        font-size:.82rem;
        gap:8px;
        margin-bottom:18px
    }
    
    .cta-button{
        padding:14px 28px;
        font-size:.95rem;
        width:100%;
        max-width:300px;
        justify-content:center;
        margin-bottom:22px
    }
    
    .hero-image{
        max-height:34vh;
        border-radius:10px
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
   ======================================== */

@media(max-width:480px){
    .logo{
        top:16px;
        left:16px;
        width:90px
    }
    
    .content{
        padding:12px;
        padding-top:65px
    }
    
    .headline{
        font-size:1.5rem;
        margin-bottom:10px;
        letter-spacing:-.02em
    }
    
    .subhead{
        font-size:.92rem;
        margin-bottom:12px;
        line-height:1.5
    }
    
    .social-proof{
        flex-direction:column;
        gap:4px;
        font-size:.78rem;
        margin-bottom:16px
    }
    
    .divider{
        display:none
    }
    
    .cta-button{
        padding:13px 24px;
        font-size:.9rem;
        letter-spacing:.05em;
        margin-bottom:18px
    }
    
    .hero-image{
        max-height:30vh;
        border-radius:8px
    }
}

/* ========================================
   RESPONSIVE - SMALL (360px)
   ======================================== */

@media(max-width:360px){
    .headline{
        font-size:1.35rem
    }
    
    .subhead{
        font-size:.85rem
    }
    
    .cta-button{
        font-size:.85rem;
        padding:12px 20px
    }
    
    .hero-image{
        max-height:26vh
    }
}

/* ========================================
   RESPONSIVE - SHORT HEIGHT (700px)
   ======================================== */

@media(max-height:700px){
    .content{
        padding-top:55px
    }
    
    .headline{
        font-size:1.6rem;
        margin-bottom:10px
    }
    
    .subhead{
        font-size:.95rem;
        margin-bottom:12px
    }
    
    .social-proof{
        margin-bottom:16px
    }
    
    .cta-button{
        padding:12px 28px;
        margin-bottom:18px
    }
    
    .hero-image{
        max-height:30vh
    }
}

/* ========================================
   RESPONSIVE - VERY SHORT (600px)
   ======================================== */

@media(max-height:600px){
    .content{
        padding-top:50px
    }
    
    .headline{
        font-size:1.4rem;
        margin-bottom:8px
    }
    
    .subhead{
        font-size:.88rem;
        margin-bottom:10px
    }
    
    .social-proof{
        font-size:.75rem;
        margin-bottom:14px
    }
    
    .cta-button{
        padding:11px 24px;
        font-size:.85rem;
        margin-bottom:14px
    }
    
    .hero-image{
        max-height:26vh
    }
}
