* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;

    background: #0b0b0f;

    color: white;
}


/* NAVBAR */

nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: rgba(11, 11, 15, 0.75);

    backdrop-filter: blur(12px);

    z-index: 100;
}

nav h2 {
    font-size: 22px;
}

.nav-links {
    display: flex;

    gap: 25px;
}

.nav-links a {
    color: #999;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}


/* ABOUT ME */

.hero {
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 100px 10%;

    background:
        radial-gradient(
            circle at 75% 30%,
            #28284a,
            transparent 35%
        ),
        #0b0b0f;
}

.hero-content {
    max-width: 750px;
}

.label {
    color: #8f8fff;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 95px);

    line-height: 1;

    margin-bottom: 30px;
}

.hero h1 span {
    color: #8f8fff;
}

.description {
    max-width: 550px;

    color: #999;

    line-height: 1.8;

    font-size: 16px;
}


/* GENERAL SECTION */

.section {
    padding: 120px 9%;
}

.section > h2 {
    font-size: clamp(40px, 6vw, 65px);

    margin-bottom: 45px;
}


/* UPDATE */

#updates {
    background: #101015;
}

.update {
    max-width: 700px;

    padding: 30px;

    background: #15151b;

    border: 1px solid #24242d;

    border-radius: 10px;
}

.date {
    color: #8f8fff;

    font-size: 12px;

    margin-bottom: 15px;
}

.update h3 {
    font-size: 25px;

    margin-bottom: 15px;
}

.update p:last-child {
    color: #999;

    line-height: 1.7;
}


/* GAMES */

.games {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.game {
    padding: 30px;

    background: #15151b;

    border: 1px solid #22222b;

    border-radius: 10px;

    transition: 0.3s;
}

.game:hover {
    transform: translateY(-5px);

    border-color: #5555a0;
}

.game h3 {
    margin-bottom: 10px;
}

.game p {
    color: #888;

    line-height: 1.6;
}


/* CREW */

.crew {
    background: #101015;
}

.crew-text {
    max-width: 600px;

    color: #999;

    line-height: 1.7;

    margin-top: -25px;

    margin-bottom: 45px;
}


/* CREW GALLERY */

.gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.gallery img {
    width: 100%;

    height: 280px;

    object-fit: cover;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.4s;
}

.gallery img:hover {
    transform: scale(1.03);
}


/* SOCIAL */

.social {
    text-align: center;
}

.social-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}

.social-links a {
    min-width: 220px;

    padding: 18px 25px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    color: white;

    text-decoration: none;

    border: 1px solid #292932;

    border-radius: 8px;

    transition: 0.3s;
}

.social-links a span {
    color: #888;

    font-size: 13px;
}

.social-links a:hover {
    transform: translateY(-4px);

    background: white;

    color: #0b0b0f;
}

.social-links a:hover span {
    color: #555;
}


/* FOOTER */

footer {
    padding: 40px;

    text-align: center;

    color: #555;

    background: #08080b;
}


/* MOBILE */

@media (max-width: 750px) {

    nav {
        padding: 0 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 7%;
    }

    .section {
        padding: 90px 7%;
    }

    .games {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 280px;
    }

}