/* ==========================================================
   GUESS Y LANDING PAGE
   PART 1
   Reset + Global + Hero
========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    padding-top:0;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0b3d2e;
    color:#ffffff;
    overflow-x:hidden;
}

/* ===========================
   GLOBAL
=========================== */

section{
    width:100%;
    padding:120px 0;
}

.section-content{
    width:min(1200px,90%);
    margin:0 auto;
    position:relative;
    z-index:2;
}

h2{
    font-size:3rem;
    font-weight:800;
    margin-bottom:25px;
}

p{
    line-height:1.8;
}

/* ===========================
   NAVIGATION
=========================== */

.top-nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:0 24px;
    transition:all .3s ease;
    background:transparent;
}

.top-nav.scrolled{
    background:rgba(4, 41, 29, 0.75);
    backdrop-filter:blur(14px);
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.nav-inner{
    max-width:1400px;
    margin:0 auto;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    flex:1;
}

.nav-link{
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    font-size:1rem;
    transition:all .25s ease;
    position:relative;
    padding:6px 0;
}

.nav-link:hover,
.nav-link.active{
    color:#febe00;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:2px;
    background:#febe00;
    transition:width .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-cta{
    padding:12px 24px;
    font-size:1rem;
    white-space:nowrap;
}

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

#hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(254,190,0,.18),
    transparent 35%),

    linear-gradient(
    135deg,
    #0b3d2e,
    #145c44,
    #0b3d2e);

}

/* floating numbers */

#hero::before{

    content:"7  13  ?  25  42  ?";

    position:absolute;

    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:120px;

    font-weight:bold;

    letter-spacing:40px;

    color:rgba(255,255,255,.03);

    transform:rotate(-12deg);

    pointer-events:none;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

}

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

.logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

}

.logo span{

    font-size:88px;

    font-weight:900;

    color:white;

    text-shadow:
    0 8px 25px rgba(0,0,0,.35);

}

/* ===========================
   HERO TITLE
=========================== */

.hero-content h2{

    font-size:58px;

    color:#ffe082;

    line-height:1.25;

    margin-bottom:20px;

}

.hero-content p{

    font-size:22px;

    color:white;

    margin-bottom:35px;

}

/* ===========================
   PLAY BUTTON
=========================== */

.play-btn{

    display:inline-block;

    background:#febe00;

    color:#222;

    text-decoration:none;

    font-weight:800;

    font-size:22px;

    padding:18px 42px;

    border-radius:14px;

    transition:.3s;

    box-shadow:
    0 12px 30px rgba(0,0,0,.35);

}

.play-btn:hover{

    transform:translateY(-5px);

    background:#ffd54f;

}

/* ===========================
   HERO BADGES
=========================== */

.hero-features{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.hero-features div{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    padding:12px 20px;

    border-radius:12px;

    transition:.3s;

}

.hero-features div:hover{

    transform:translateY(-4px);

    background:rgba(255,255,255,.12);

}
/* ==========================================================
   PART 2
   ABOUT
========================================================== */

#about{

    min-height:100vh;

    display:flex;

    align-items:center;

}

.about-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:90px;

}

.about-text{

    flex:1;

}

.about-text h2{

    font-size:3.2rem;

    color:#ffffff;

    margin-bottom:25px;

}

.about-intro{

    font-size:1.2rem;

    color:#f5f5f5;

    margin-bottom:30px;

    line-height:1.9;

}

.about-list{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:16px;

}

.about-list li{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    border-radius:14px;

    padding:14px 18px;

    backdrop-filter:blur(10px);

    transition:.3s;

    font-size:1.05rem;

}

.about-list li:hover{

    transform:translateX(8px);

    background:rgba(255,255,255,.12);

}

.about-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:620px;

    border-radius:24px;

    box-shadow:
    0 30px 60px rgba(0,0,0,.45);

    transition:.35s;

}

.about-image img:hover{

    transform:
    translateY(-8px)
    scale(1.02);

}
/* ==========================================================
   PART 3
   FEATURES
========================================================== */

#features{

    min-height:100vh;

    display:flex;

    align-items:center;

}

#features h2{

    text-align:center;

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.card:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.12);

    box-shadow:0 30px 60px rgba(0,0,0,.40);

}

.card h3{

    font-size:1.6rem;

    margin-bottom:18px;

    color:#ffe082;

}

.card p{

    font-size:1.05rem;

    color:#f5f5f5;

    line-height:1.8;

}
/* ==========================================================
   PART 4
   GAME PREVIEW
========================================================== */

#screenshots{

    min-height:100vh;

    display:flex;

    align-items:center;

}

#screenshots h2{

    text-align:center;

    margin-bottom:60px;

}

.shots{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.shot{

    overflow:hidden;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:0 24px 50px rgba(0,0,0,.28);

    transition:.35s;

    padding:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    aspect-ratio:4 / 5;

}

.shot:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.shot img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    border-radius:16px;

    transition:.4s;

}

.shot:hover img{

    transform:scale(1.04);

}
/* ==========================================================
   PART 5
   READY TO PLAY
========================================================== */

#play{

    min-height:80vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

#play .section-content{
    text-align:center;
}

#play h2{

    font-size:3.4rem;

    margin-bottom:25px;

}

#play p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:1.25rem;

    color:#f5f5f5;

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#051f17;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 20px;

    text-align:center;

}

footer p{

    color:#ffffff;

    font-size:1rem;

    margin-bottom:18px;

}

footer nav{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

footer a{

    color:#febe00;

    text-decoration:none;

    transition:.3s;

}

footer a:hover{

    color:#ffd54f;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px){

    .about-container{

        flex-direction:column;

        text-align:center;

    }

    .about-text h2{

        text-align:center;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .shots{

        grid-template-columns:1fr;

    }

    .hero-content h2{

        font-size:2.2rem;

    }

    .logo span{

        font-size:56px;

    }

    .play-btn{

        width:100%;

        max-width:320px;

    }

}

@media (max-width:600px){

    section{

        padding:80px 0;

    }

    h2{

        font-size:2.2rem;

    }

    .hero-content p,
    .about-intro,
    .card p,
    #play p{

        font-size:1rem;

    }

}
/* ==========================================================
   GLOBAL SECTION BACKGROUND
========================================================== */

#about,
#features,
#screenshots,
#play{
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(255,210,80,.12),
    transparent 40%),

    linear-gradient(
    135deg,
    #0b3d2e 0%,
    #145c44 55%,
    #8d8a18 100%);
}

/* Floating game symbols */

#about::before,
#features::before,
#screenshots::before,
#play::before{

    content:"7   ?   Y   13   ?   42   Y   25";

    position:absolute;

    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:120px;

    font-weight:900;

    letter-spacing:70px;

    color:rgba(255,255,255,.025);

    transform:rotate(-15deg);

    pointer-events:none;

    user-select:none;
}

/* Make content appear above symbols */

.about-container,
.cards,
.shots,
#features h2,
#screenshots h2,
#about h2{

    position:relative;
    z-index:2;
}