/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #08131f;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

html {
    scroll-behavior: smooth;
}

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

.game-hero {

    width: 90%;
    max-width: 1400px;

    margin: 140px auto 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

}

.hero-left {

    flex: 1;

}

.hero-left h1 {

    font-size: 60px;
    margin: 25px 0;

}

.hero-left p {

    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;

}

.game-tag {

    display: inline-block;

    background: #22c55e20;
    color: #22c55e;

    padding: 10px 18px;

    border-radius: 30px;

    font-weight: 600;

}

.game-meta {

    display: flex;
    gap: 20px;

    margin: 35px 0;

    flex-wrap: wrap;

}

.game-meta span {

    background: #1e293b;

    padding: 12px 18px;

    border-radius: 30px;

}

.play-btn {

    display: inline-block;

    background: #22c55e;

    padding: 16px 38px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.play-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 0 20px #22c55e;

}

.hero-right {

    flex: 1;
    text-align: center;

}

.hero-right img {

    width: 100%;
    max-width: 550px;

    border-radius: 25px;

    transition: .4s;

}

.hero-right img:hover {

    transform: scale(1.03);

}

/* ===========================
   GAME SECTION
=========================== */

.game-section {

    width: 90%;
    max-width: 1400px;

    margin: auto;

}

.game-section h2 {

    font-size: 42px;
    margin-bottom: 35px;

}

.game-frame {

    height: 700px;

    background: #111827;

    border: 2px solid rgba(255, 255, 255, .08);

    border-radius: 25px;

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

    font-size: 28px;
    color: #94a3b8;

}

/* ===========================
   CONTROLS
=========================== */

.controls {

    width: 90%;
    max-width: 1400px;

    margin: 90px auto;

}

.controls h2 {

    font-size: 42px;
    margin-bottom: 30px;

}

.controls ul {

    list-style: none;

}

.controls li {

    background: #1e293b;

    padding: 18px 25px;

    margin-bottom: 15px;

    border-radius: 16px;

    font-size: 18px;

}

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

@media(max-width:900px) {

    .game-hero {

        flex-direction: column-reverse;
        text-align: center;

    }

    .hero-left h1 {

        font-size: 45px;

    }

    .game-meta {

        justify-content: center;

    }

    .game-frame {

        height: 450px;

    }

}

.game-frame {

    width: 100%;

    aspect-ratio: 16/9;

    border-radius: 20px;

    overflow: hidden;

    border: 3px solid #22c55e;

    box-shadow: 0 0 30px rgba(34, 197, 94, .35);

}

.game-frame iframe {

    width: 100%;

    height: 100%;

    border: none;

    display: block;

}