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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
}

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


/* ================================
   NAVBAR
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

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

    padding: 0 7%;

    background: rgba(8, 8, 8, 0.85);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.navbar nav {
    display: flex;
    gap: 32px;
}

.navbar nav a {
    color: #aaaaaa;
    font-size: 14px;

    transition: color 0.2s ease;
}

.navbar nav a:hover {
    color: #ffffff;
}


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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 7% 80px;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(100, 70, 255, 0.18),
            transparent 35%
        ),
        #080808;
}

.hero-content {
    max-width: 850px;
}

.eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #8d7cff;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 90px);

    line-height: 1.02;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.hero h1 span,
.about h2 span {
    color: #8d7cff;
}

.hero-description {
    max-width: 650px;

    color: #a8a8a8;

    font-size: 18px;

    margin-bottom: 40px;
}


/* ================================
   BUTTONS
================================ */

.hero-buttons {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;
}

.button {
    display: inline-flex;

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

    min-height: 48px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: #ffffff;
    color: #080808;
}

.button.secondary {
    border: 1px solid #333333;
    color: #ffffff;
}

.button.secondary:hover {
    border-color: #666666;
}


/* ================================
   SECTIONS
================================ */

.section {
    padding: 120px 7%;
}

.section-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.section-header h2,
.about h2,
.contact h2 {
    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.section-header p:not(.eyebrow),
.contact p {
    color: #999999;
}


/* ================================
   GAMES
================================ */

.games {
    background: #0d0d0d;
}

.games-grid {
    display: grid;

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

    gap: 24px;
}

.game-card {
    overflow: hidden;

    background: #151515;

    border: 1px solid #242424;

    border-radius: 12px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.game-card:hover {
    transform: translateY(-6px);

    border-color: #444444;
}

.game-placeholder {
    aspect-ratio: 16 / 9;

    display: flex;

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

    background:
        linear-gradient(
            135deg,
            #191919,
            #292929
        );

    color: #666666;

    font-size: 13px;

    letter-spacing: 3px;
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 22px;

    margin-bottom: 10px;
}

.game-info p {
    color: #888888;

    font-size: 14px;

    margin-bottom: 20px;
}

.status {
    display: inline-block;

    padding: 5px 10px;

    border-radius: 5px;

    background: #211d3d;

    color: #a99cff;

    font-size: 11px;

    font-weight: 700;
}


/* ================================
   ABOUT
================================ */

.about {
    min-height: 600px;

    display: flex;
    align-items: center;
}

.about-content {
    max-width: 800px;
}

.about-content p:not(.eyebrow) {
    color: #999999;

    font-size: 17px;

    margin-bottom: 20px;
}


/* ================================
   CONTACT
================================ */

.contact {
    text-align: center;

    background: #0d0d0d;
}

.contact-content {
    max-width: 650px;

    margin: auto;
}

.contact .button {
    margin-top: 30px;
}


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

footer {
    padding: 35px 7%;

    border-top: 1px solid #222222;

    background: #080808;
}

.footer-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-content p {
    color: #666666;

    font-size: 12px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 800px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section {
        padding: 90px 5%;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;

        align-items: flex-start;
    }
}

