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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #f8f8f8;
    background:
        radial-gradient(circle at top left, rgba(255, 204, 0, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 0, 0, 0.18), transparent 35%),
        linear-gradient(135deg, #070707, #160000 45%, #050505);
}

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

.section {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 80px 0;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 80px;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: rgba(5, 5, 5, 0.86);
    border-bottom: 1px solid rgba(255, 204, 0, 0.28);
    backdrop-filter: blur(12px);
}

.logo-img {
    width: 120px;
    height: auto;
    display: block;
    transition: 0.25s ease;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.navbar a {
    color: #f3f3f3;
    font-weight: 700;
    transition: 0.25s ease;
}

.navbar a:hover {
    color: #ffcc00;
    transform: translateY(-2px);
}

.nav-download {
    padding: 10px 18px;
    border-radius: 999px;
    color: #111 !important;
    background: #ffcc00;
}

.nav-download:hover {
    background: #ffdd33;
    box-shadow: 0 0 22px rgba(255, 204, 0, 0.45);
}

/* Hero */

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.tagline {
    margin-bottom: 12px;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    color: #ffffff;
    text-shadow:
        0 0 18px rgba(255, 0, 0, 0.75),
        0 0 30px rgba(255, 204, 0, 0.35);
}

.hero-text {
    max-width: 650px;
    margin: 24px auto 40px;
    color: #d7d7d7;
    font-size: 1.15rem;
    line-height: 1.7;
}

.trailer-box {
    max-width: 760px;
    min-height: 300px;
    margin: 0 auto;
    border: 1px solid rgba(255, 204, 0, 0.45);
    border-radius: 26px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 204, 0, 0.08), rgba(255, 0, 0, 0.08)),
        rgba(255, 255, 255, 0.03);
    box-shadow:
        inset 0 0 35px rgba(255, 204, 0, 0.08),
        0 0 45px rgba(255, 0, 0, 0.16);
}

.trailer-box h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.trailer-box p {
    color: #cfcfcf;
}

.mini-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    color: #111;
    background: #ffcc00;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary {
    color: #111;
    background: #ffcc00;
    box-shadow: 0 0 22px rgba(255, 204, 0, 0.28);
}

.btn-primary:hover {
    background: #ffdd33;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.55);
}

.btn-outline {
    color: #ffffff;
    border: 2px solid #ffcc00;
    background: rgba(255, 204, 0, 0.04);
}

.btn-outline:hover {
    color: #111;
    background: #ffcc00;
}

/* Features */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(255, 204, 0, 0.35);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #ffcc00;
    background: rgba(255, 204, 0, 0.08);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.18);
}

.feature-card h3 {
    margin-bottom: 14px;
    color: #ffcc00;
    font-size: 1.2rem;
}

.feature-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

/* Gallery */

.gameplay-title {
    grid-column: 1 / -1;
    text-align: center;
    color: #ffcc00;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.image-placeholder {
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 204, 0, 0.4);
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #ffcc00;
    font-size: 1.5rem;
    font-weight: 900;
    background:
        linear-gradient(135deg, rgba(255, 204, 0, 0.08), rgba(255, 0, 0, 0.08)),
        rgba(255, 255, 255, 0.035);
    transition: 0.25s ease;
}

.image-placeholder:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.18);
}

/* Leaderboard and notes */

.leaderboard,
.patch-notes,
.download {
    text-align: center;
}

.leaderboard h2,
.patch-notes h2,
.download h2 {
    margin-bottom: 24px;
    color: #ffcc00;
    font-size: clamp(2rem, 5vw, 4rem);
}

.leaderboard-box,
.notes-box {
    min-height: 170px;
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(255, 204, 0, 0.38);
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #bfbfbf;
    background: rgba(255, 255, 255, 0.035);
}

.download p {
    margin-bottom: 24px;
    color: #d0d0d0;
}

/* Footer */

.site-footer {
    width: 100%;
    padding: 45px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    border-top: 1px solid rgba(255, 204, 0, 0.28);
    background: rgba(0, 0, 0, 0.82);
}

.site-footer h3 {
    margin-bottom: 14px;
    color: #ffcc00;
}

.site-footer p,
.site-footer a {
    display: block;
    margin-bottom: 8px;
    color: #cfcfcf;
    transition: 0.2s ease;
}

.site-footer a:hover {
    color: #ffcc00;
    transform: translateX(4px);
}

/* Responsive */

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .navbar {
        gap: 14px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .site-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .section {
        padding: 58px 0;
    }

    .site-header {
        position: static;
    }

    .navbar {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar a {
        padding: 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        text-align: center;
    }

    .trailer-box {
        min-height: 230px;
        padding: 24px;
    }

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

    .site-footer {
        grid-template-columns: 1fr;
    }
    .footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    background-color: #111;
    color: #ffffff;
    font-size: 14px;
}

.footer a {
    color: #ffcc33;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 25px;
    color: #ffffff;
    line-height: 1.7;
}

.legal-page h1 {
    color: #ffcc33;
    font-size: 42px;
    margin-bottom: 10px;
}

.legal-page h2 {
    color: #ff4b2b;
    margin-top: 35px;
}

.legal-page a {
    color: #ffcc33;
}
}