/* ========================================
   RED FUEL RAGE STUDIO - Cinématique Minimaliste
   Design: Noir & Blanc | Russo One + Manrope
   ======================================== */

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

:root {
    /* Palette Monochrome */
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-lighter: #111111;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.85);
    --white-muted: rgba(255, 255, 255, 0.55);
    --white-subtle: rgba(255, 255, 255, 0.12);
    --white-faint: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-title: 'Russo One', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Easings Cinématiques */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--white);
    color: var(--black);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    mix-blend-mode: difference;
    transition: transform 0.6s var(--ease-out);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

.nav-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    padding: 0.5rem 0;
    position: relative;
    transition: opacity 0.4s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--white-subtle);
}

.lang-link {
    font-family: var(--font-title);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.lang-link.active {
    color: var(--white);
}

.lang-link:hover {
    color: var(--white);
}

.lang-sep {
    font-size: 0.6rem;
    color: var(--white-subtle);
}

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-menu span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* Menu Mobile Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-out);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu .nav-link {
    font-size: 1.25rem;
    letter-spacing: 0.25em;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.008;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 5;
    animation: grain-subtle 0.15s steps(3) infinite;
}

@keyframes grain-subtle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-1%, -1%);
    }

    20% {
        transform: translate(1%, 1%);
    }

    30% {
        transform: translate(-2%, 0);
    }

    40% {
        transform: translate(2%, -1%);
    }

    50% {
        transform: translate(-1%, 2%);
    }

    60% {
        transform: translate(1%, -2%);
    }

    70% {
        transform: translate(-2%, 1%);
    }

    80% {
        transform: translate(2%, 2%);
    }

    90% {
        transform: translate(-1%, 0);
    }
}

.hero-vhs-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
    opacity: 0.25;
}

.hero-vhs-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 0.5%,
            transparent 1%);
    background-size: 100% 2px;
    animation: vhs-tracking 6s linear infinite;
}

.hero-vhs-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    animation: vhs-static 0.3s steps(2) infinite;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 7;
    background: linear-gradient(to bottom,
            rgba(18, 16, 16, 0) 50%,
            rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 3px;
    opacity: 0.35;
}

.hero-scanlines::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 0, 0, 0.03) 33%,
        transparent 66%,
        rgba(0, 0, 255, 0.03) 100%
    );
    background-size: 6px 100%;
    animation: vhs-chromatic-shift 0.5s steps(3) infinite;
    pointer-events: none;
}

@keyframes vhs-chromatic-shift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px);
    }
}

/* Bandes de glitch VHS */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 8;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0.03) 41%,
        transparent 41%,
        transparent 80%,
        rgba(0, 0, 0, 0.2) 80%,
        rgba(0, 0, 0, 0.2) 81%,
        transparent 81%
    );
    background-size: 100% 8px;
    opacity: 0.35;
    animation: vhs-bars 10s ease-in-out infinite;
}

@keyframes vhs-bars {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-1px);
        opacity: 0.4;
    }
}

/* Jitter Affectant toute la Hero Section */
.hero-bg {
    animation: vhs-jitter 15s ease-in-out infinite;
}

@keyframes vhs-jitter {
    0%, 90%, 95%, 100% {
        transform: none;
        filter: none;
    }

    92% {
        transform: translate(1px, 0);
    }

    93% {
        transform: translate(-1px, 1px);
        filter: contrast(1.05);
    }

    94% {
        transform: translate(0, -1px);
    }

    96% {
        transform: translate(1px, 0) skewX(0.1deg);
    }

    97% {
        transform: translate(-1px, 0);
        filter: brightness(1.03);
    }

    98% {
        transform: translate(0, 0);
    }
}

.hero-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-layer-moon {
    z-index: 1;
}

.moon-img {
    height: 60vh;
    width: auto;
    max-width: 90vw;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2) drop-shadow(0 0 100px rgba(255, 0, 0, 0.1));
    opacity: 0.8;
}

.hero-layer-trees-2 {
    z-index: 2;
}

.hero-layer-trees-1 {
    z-index: 3;
}

.trees-img {
    position: absolute;
    bottom: -5%;
    width: 110%;
    left: -5%;
    height: auto;
    object-fit: cover;
}

.hero-layer-trees-2 .trees-img {
    filter: brightness(0.2) blur(2px);
    opacity: 0.9;
}

.hero-layer-trees-1 .trees-img {
    filter: brightness(0);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 25%, rgba(0,0,0,0.3) 60%, var(--black) 100%);
    z-index: 4;
    pointer-events: none;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.6), inset 0 0 40px rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
}

.hero-logo-wrapper {
    width: min(380px, 60vw);
    position: relative;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

@keyframes vhs-chromatic {

    0%,
    88%,
    100% {
        text-shadow: none;
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
        transform: translateX(0);
    }

    89% {
        text-shadow: 3px 0 rgba(255, 0, 0, 0.8), -3px 0 rgba(0, 0, 255, 0.8);
        filter: drop-shadow(3px 0 rgba(255, 0, 0, 0.6)) drop-shadow(-3px 0 rgba(0, 0, 255, 0.6));
        transform: translateX(2px);
    }

    90% {
        text-shadow: -2px 0 rgba(0, 255, 0, 0.7), 2px 0 rgba(255, 0, 255, 0.7);
        filter: drop-shadow(-2px 0 rgba(0, 255, 0, 0.5)) drop-shadow(2px 0 rgba(255, 0, 255, 0.5));
        transform: translateX(-1px);
    }

    91% {
        text-shadow: 4px 0 rgba(255, 0, 0, 0.6), -4px 0 rgba(0, 0, 255, 0.6);
        filter: drop-shadow(4px 0 rgba(255, 0, 0, 0.4)) drop-shadow(-4px 0 rgba(0, 0, 255, 0.4));
        transform: translateX(1px);
    }

    92% {
        text-shadow: none;
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
        transform: translateX(-1px);
    }

    93% {
        text-shadow: 2px 0 rgba(255, 50, 50, 0.9), -2px 0 rgba(50, 50, 255, 0.9);
        filter: drop-shadow(2px 0 rgba(255, 50, 50, 0.7)) drop-shadow(-2px 0 rgba(50, 50, 255, 0.7));
        transform: translateX(1px);
    }

    94% {
        text-shadow: none;
        transform: translateX(0);
    }

    95% {
        text-shadow: 1px 0 rgba(255, 0, 0, 0.5), -1px 0 rgba(0, 0, 255, 0.5);
        transform: translateX(-1px);
    }

    96% {
        text-shadow: none;
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white-muted);
}

.hero-cta {
    position: relative;
    margin-top: 2rem;
}

.cta-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white-muted);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color 0.4s, transform 0.4s var(--ease-out);
    padding: 1rem;
}

.cta-arrow:hover {
    color: var(--white);
    transform: translateY(3px);
}

.cta-arrow svg {
    width: 20px;
    height: 20px;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* ========================================
   GAME SECTIONS
   ======================================== */
.game-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 3rem;
    overflow: hidden;
    background: var(--black);
    border-top: 1px solid var(--white-subtle);
}

.game-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--black);
}

/* Animated background stains */
.game-bg-stains {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.bg-stain {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.9;
    animation: stain-float 20s ease-in-out infinite;
}

/* Hellgrid section - warm red/dark orange tones */
.game-section.hellgrid .stain-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 60, 30, 0.8) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.game-section.hellgrid .stain-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 70, 40, 0.7) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -4s;
}

.game-section.hellgrid .stain-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 90, 50, 0.6) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: -8s;
}

.game-section.hellgrid .stain-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(180, 50, 30, 0.5) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: -12s;
}

.game-section.hellgrid .stain-5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(160, 60, 40, 0.6) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    animation-delay: -16s;
}

/* Archon section - cool blue/purple tones */
.game-section.archon .stain-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(80, 100, 180, 0.7) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.game-section.archon .stain-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(100, 80, 170, 0.6) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -5s;
}

.game-section.archon .stain-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(70, 90, 150, 0.8) 0%, transparent 70%);
    top: 30%;
    right: 25%;
    animation-delay: -10s;
}

.game-section.archon .stain-4 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(90, 110, 190, 0.5) 0%, transparent 70%);
    bottom: 30%;
    left: 20%;
    animation-delay: -14s;
}

.game-section.archon .stain-5 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 80, 140, 0.6) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -18s;
}

@keyframes stain-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(30px, -20px) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
        opacity: 0.6;
    }
    75% {
        transform: translate(20px, 20px) scale(1.02);
        opacity: 0.9;
    }
}

.game-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.game-logo-wrapper {
    width: 100%;
    position: relative;
}

.game-logo-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.12));
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.game-label {
    font-family: var(--font-title);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-muted);
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--white-subtle);
    background: var(--white-faint);
    display: inline-block;
    width: fit-content;
}

.game-pitch {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.85;
    color: var(--white-dim);
    font-weight: 300;
}

.game-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid var(--white-subtle);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.tag:hover {
    background: var(--white-faint);
    border-color: var(--white-muted);
}

.game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Boutons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-out);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    box-shadow: inset 0 0 0 1px var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1px solid var(--white-subtle);
    cursor: pointer;
    transition: all 0.6s var(--ease-out);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-outline svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.game-number {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-family: var(--font-title);
    font-size: 6rem;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
}

/* ========================================
   STUDIO SECTION
   ======================================== */
.studio-section {
    position: relative;
    padding: 12rem 3rem;
    background: var(--black-soft);
    border-top: 1px solid var(--white-subtle);
}

.studio-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 6rem;
    align-items: start;
}

.studio-header {
    position: sticky;
    top: 35vh;
}

.studio-label {
    display: block;
    font-family: var(--font-title);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 1rem;
}

.studio-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.studio-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.studio-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--white-dim);
    font-weight: 300;
}

.studio-text.secondary {
    font-size: 0.9rem;
    color: var(--white-muted);
}

.studio-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--white-subtle);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.05em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-muted);
}

/* ========================================
   PRESS KIT CTA SECTION
   ======================================== */
.presskit-cta-section {
    position: relative;
    padding: 10rem 3rem;
    background: var(--black);
    border-top: 1px solid var(--white-subtle);
    text-align: center;
}

.presskit-cta-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.presskit-cta-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.presskit-cta-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 12rem 3rem 10rem;
    text-align: center;
    background: var(--black);
    border-top: 1px solid var(--white-subtle);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--white-muted);
    font-weight: 300;
}

.contact-email {
    font-family: var(--font-title);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.3rem;
    margin: 1rem 0;
    letter-spacing: 0.05em;
    transition: color 0.4s;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-out);
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-subtle);
    color: var(--white-muted);
    font-family: var(--font-title);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    background: transparent;
    transition: all 0.5s var(--ease-out);
}

.social-link:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 3rem;
    border-top: 1px solid var(--white-subtle);
    background: var(--black);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--white-muted);
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-family: var(--font-title);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.4s;
}

.footer-links a:hover {
    color: var(--white);
}

/* ========================================
   PRESSKIT PAGE
   ======================================== */
.press-content {
    padding: 12rem 3rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.press-hero {
    text-align: center;
    margin-bottom: 8rem;
}

.press-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 10vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.press-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
    font-weight: 300;
    margin-bottom: 3rem;
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
}

.press-section h2 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--white-subtle);
}

.press-section.full {
    grid-column: 1 / -1;
}

.fact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-list li {
    font-size: 0.9rem;
    color: var(--white-dim);
    font-weight: 300;
}

.fact-list strong {
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--font-title);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    width: 140px;
    display: inline-block;
}

.project-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.project-card {
    padding: 2.5rem;
    background: var(--black-soft);
    border: 1px solid var(--white-subtle);
    transition: border-color 0.4s;
}

.project-card:hover {
    border-color: var(--white-muted);
}

.project-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.project-card p {
    font-weight: 300;
    line-height: 1.8;
    color: var(--white-dim);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .game-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .game-info {
        align-items: center;
    }

    .game-label {
        margin: 0 auto;
    }

    .studio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .studio-header {
        position: static;
    }

    .studio-stats {
        margin-top: 2.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.25rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .hero {
        min-height: 600px;
    }

    .hero-logo-wrapper {
        width: 75vw;
    }

    .game-section {
        padding: 6rem 1.5rem;
        min-height: auto;
    }

    .game-number {
        font-size: 4rem;
        bottom: 2rem;
        right: 2rem;
    }

    .game-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .studio-section {
        padding: 8rem 1.5rem;
    }

    .studio-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .presskit-cta-section {
        padding: 8rem 1.5rem;
    }

    .contact-section {
        padding: 8rem 1.5rem 6rem;
    }

    .footer {
        padding: 2.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes reveal {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}