@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #08090d;
    color: #f1f3f5;
    font-family: "Space Grotesk", sans-serif;
}


/* -------------------- */
/* NAVIGATION */
/* -------------------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 6%;

    z-index: 100;

    background: rgba(8, 9, 13, 0.65);
    backdrop-filter: blur(15px);
}


.logo {
    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}


nav {
    display: flex;
    gap: 35px;
}


nav a {
    color: #8f949d;
    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}


nav a:hover {
    color: white;
}


/* -------------------- */
/* HERO */
/* -------------------- */

.hero {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 140px 8% 80px;

    overflow: hidden;
}


.hero-content {
    max-width: 650px;
}


.eyebrow,
.section-label {
    color: #8bff9f;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


h1 {
    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.95;

    letter-spacing: -5px;

    margin-bottom: 35px;
}


h1 span,
h2 span {
    color: #8bff9f;
}


.hero-description {
    max-width: 500px;

    color: #9499a3;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 40px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
}


.button {
    padding: 15px 25px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 8px;

    transition: 0.3s;
}


.primary {
    background: #8bff9f;
    color: #08090d;
}


.primary:hover {
    transform: translateY(-3px);
}


.secondary {
    border: 1px solid #292d35;
    color: white;
}


.secondary:hover {
    background: #151820;
}


/* -------------------- */
/* CREATURE */
/* -------------------- */

.creature-area {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}


.glow {
    position: absolute;

    width: 350px;
    height: 350px;

    background: #8bff9f;

    opacity: 0.12;

    filter: blur(100px);

    border-radius: 50%;
}


.creature {
    position: relative;

    width: 280px;
    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 130px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        #1d3024,
        #0d1115
    );

    border: 1px solid #29332d;

    box-shadow:
        0 0 80px rgba(139, 255, 159, 0.08);

    animation: float 4s ease-in-out infinite;
}


.creature-label {
    margin-top: 30px;

    font-size: 11px;

    letter-spacing: 3px;

    color: #8bff9f;
}


.creature-name {
    margin-top: 8px;

    color: #777d87;
}


@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


/* -------------------- */
/* GAME SECTION */
/* -------------------- */

.game-section {
    padding: 150px 8%;
}


h2 {
    font-size: clamp(45px, 6vw, 80px);

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 30px;
}


.section-description {
    max-width: 600px;

    color: #858b95;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 80px;
}


.game-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}


.game-card {
    min-height: 300px;

    padding: 30px;

    border: 1px solid #20242c;

    border-radius: 12px;

    background: #0d0f14;

    transition: 0.4s;
}


.game-card:hover {
    transform: translateY(-8px);

    border-color: #8bff9f;
}


.number {
    color: #8bff9f;

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 100px;
}


.game-card h3 {
    font-size: 20px;

    margin-bottom: 15px;
}


.game-card p {
    color: #777d87;

    line-height: 1.6;
}


/* -------------------- */
/* DEVELOPMENT */
/* -------------------- */

.development-section {
    padding: 150px 8%;

    background: #0d1015;
}


.development-content {
    max-width: 850px;
}


.development-content > p:not(.section-label) {
    max-width: 600px;

    color: #858b95;

    line-height: 1.7;

    margin-bottom: 60px;
}


.progress-container {
    max-width: 700px;
}


.progress-info {
    display: flex;
    justify-content: space-between;

    font-size: 11px;

    letter-spacing: 2px;

    color: #777d87;

    margin-bottom: 12px;
}


.progress-bar {
    width: 100%;
    height: 5px;

    background: #22262e;

    border-radius: 10px;

    overflow: hidden;
}


.progress {
    width: 55%;
    height: 100%;

    background: #8bff9f;
}


/* -------------------- */
/* STUDIO */
/* -------------------- */

.studio-section {
    padding: 180px 8%;

    text-align: center;
}


.studio-section > p:not(.section-label) {
    max-width: 650px;

    margin: 0 auto;

    color: #858b95;

    line-height: 1.8;

    font-size: 18px;
}


/* -------------------- */
/* FOOTER */
/* -------------------- */

footer {
    padding: 50px 8%;

    border-top: 1px solid #20242c;

    display: flex;

    justify-content: space-between;

    color: #656a73;
}


.footer-logo {
    color: white;

    font-weight: 700;

    letter-spacing: 3px;
}


/* -------------------- */
/* MOBILE */
/* -------------------- */

@media (max-width: 900px) {

    .navbar {
        padding: 22px 6%;
    }


    nav {
        display: none;
    }


    .hero {
        grid-template-columns: 1fr;

        padding-top: 150px;

        gap: 100px;
    }


    h1 {
        letter-spacing: -3px;
    }


    .game-grid {
        grid-template-columns: 1fr 1fr;
    }


    .creature {
        width: 220px;
        height: 220px;

        font-size: 100px;
    }

}


@media (max-width: 600px) {

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }


    .game-section,
    .development-section,
    .studio-section {
        padding-left: 6%;
        padding-right: 6%;
    }


    .game-grid {
        grid-template-columns: 1fr;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .button {
        text-align: center;
    }


    footer {
        flex-direction: column;

        gap: 20px;
    }

}