@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600&display=swap');

:root {
    --background: #0b0b0c;
    --background-soft: #121214;
    --surface: #18181b;
    --text: #f2f2f2;
    --muted: #a2a2aa;
    --light-bg: #f2f0eb;
    --light-text: #171719;
    --accent: #a9151d;
    --accent-hover: #c21d27;
    --border-dark: rgba(255, 255, 255, 0.1);
    --border-light: rgba(0, 0, 0, 0.12);
    --header-height: 78px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1160px, calc(100% - 64px));
    margin-inline: auto;
}

.section {
    min-height: 70vh;
    padding: 120px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(11, 11, 12, 0.9);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(16px);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.brand-name {
    font-family: "Oswald", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--accent);
    transition: right 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 60px);
    background:
        radial-gradient(circle at 78% 45%, rgba(169, 21, 29, 0.16), transparent 34%),
        linear-gradient(115deg, #0b0b0c 0%, #111114 62%, #080809 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label,
.status,
.news-date {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
h2,
h3 {
    font-family: "Oswald", sans-serif;
    line-height: 1.08;
}

.hero h1 {
    max-width: 850px;
    margin: 18px 0 26px;
    font-size: clamp(3.4rem, 8vw, 7.2rem);
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 680px;
    color: #c7c7cc;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
    background: var(--accent);
    color: white;
}

.button-primary:hover {
    background: var(--accent-hover);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.25);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    z-index: 2;
    right: 48px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--muted);
}

.section-light {
    background: var(--light-bg);
    color: var(--light-text);
}

.section-dark {
    background: var(--background-soft);
}

.two-column,
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

h2 {
    margin-top: 14px;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.content-copy > p {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.studio-values {
    margin-top: 44px;
    border-top: 1px solid var(--border-light);
}

.value {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.value strong {
    font-family: "Oswald", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.value span {
    color: #5f5f65;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 58px;
}

.section-heading > p {
    max-width: 420px;
    color: var(--muted);
}

.game-feature {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 520px;
    border: 1px solid var(--border-dark);
    background: #0d0d0f;
}

.game-image {
    min-height: 440px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(169, 21, 29, 0.2), transparent 48%),
        radial-gradient(circle at center, #26262b, #0a0a0c 72%);
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.game-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px;
}

.game-details h3 {
    margin: 12px 0 16px;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    text-transform: uppercase;
}

.game-tagline {
    margin-bottom: 22px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.game-details > p:not(.status):not(.game-tagline) {
    color: var(--muted);
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

.game-meta span {
    padding: 6px 10px;
    border: 1px solid var(--border-dark);
    color: #c8c8cd;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-weight: 700;
}

.text-link span {
    color: var(--accent);
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
}

.news-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.news-card h3 {
    margin: 18px 0 16px;
    font-size: 1.65rem;
    text-transform: uppercase;
}

.news-card p:not(.news-date) {
    color: #5f5f65;
}

.news-card .text-link {
    margin-top: auto;
    padding-top: 28px;
}

.contact-section {
    min-height: 62vh;
    background:
        radial-gradient(circle at 72% 45%, rgba(169, 21, 29, 0.17), transparent 34%),
        var(--background);
}

.contact-layout > div > p:not(.section-label) {
    max-width: 570px;
    margin-top: 22px;
    color: var(--muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-top: 46px;
}

.contact-details > a {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details span {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-details strong {
    font-size: clamp(1.1rem, 2.8vw, 2rem);
    overflow-wrap: anywhere;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.social-links a {
    color: var(--muted);
    font-weight: 600;
    transition: color 180ms ease;
}

.social-links a:hover {
    color: white;
}

.site-footer {
    border-top: 1px solid var(--border-dark);
    background: var(--background);
}

.footer-content {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-content a:hover {
    color: white;
}

@media (max-width: 900px) {
    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        height: calc(100vh - var(--header-height));
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 32px 24px;
        background: rgba(11, 11, 12, 0.98);
        transform: translateX(100%);
        transition: transform 220ms ease;
    }

    .site-nav.open {
        transform: translateX(0);
    }

    .site-nav .nav-link {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid var(--border-dark);
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .two-column,
    .contact-layout,
    .game-feature {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .game-feature {
        gap: 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

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

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 620px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: min(100% - 30px, 1160px);
    }

    .section {
        padding: 86px 0;
    }

    .brand-logo {
        width: 64px;
        height: 64px;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .hero {
        min-height: 94vh;
    }

    .hero h1 {
        font-size: clamp(3rem, 17vw, 4.6rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .value {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .game-details {
        padding: 34px 26px;
    }

    .news-card {
        padding: 28px 24px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 24px 0;
    }
}
