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

:root {
    --bg: #1a1a1a;
    --bg-raised: #202020;
    --bg-deep: #060606;
    --surface: #262626;

    --text: #e2e2e2;
    --text-mid: #c4c4c4;
    --text-muted: #787878;
    --text-dim: #4a4a4a;

    --accent: #c84040;
    --accent-bright: #e05555;
    --accent-dim: #7a2020;
    --accent-glow: rgba(200, 64, 64, 0.12);

    --border: rgba(128, 128, 128, 0.14);
    --border-hard: rgba(128, 128, 128, 0.28);

    --mono: "Share Tech Mono", monospace;
    --display: "Oxanium", sans-serif;
    --body: "Rajdhani", sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-snap: cubic-bezier(0.87, 0, 0.13, 1);
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
    letter-spacing: 0.02em;
}

/* ─── CURSOR ─── */
.cursor {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
.cursor-ring {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 1px solid var(--accent);
    border-radius: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s var(--ease-out),
        height 0.3s var(--ease-out),
        opacity 0.3s;
    opacity: 0.4;
}
.cursor-ring.hover {
    width: 40px;
    height: 40px;
    opacity: 0.2;
}

/* ─── NOISE + SCANLINE ─── */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}
.scanline {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 997;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0, 0, 0, 0.03) 3px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* ─── UTILS ─── */
.mono {
    font-family: var(--mono);
}
.accent {
    color: var(--accent);
}
.redact {
    background: var(--text-muted);
    color: transparent;
    user-select: none;
    font-family: var(--mono);
    border-radius: 1px;
}
.redact.small {
    font-size: 0.75em;
}
.blink {
    animation: blink 1.1s step-end infinite;
}
.cursor-blink {
    animation: blink 0.9s step-end infinite;
    color: var(--accent);
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.65s var(--ease-out),
        transform 0.65s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    transition:
        background 0.4s,
        padding 0.3s,
        border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(26, 26, 26, 0.96);
    padding: 13px 48px;
    border-bottom-color: var(--border-hard);
    backdrop-filter: blur(12px);
}
.nav-logo {
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 2px;
}
.logo-prefix {
    color: var(--text-muted);
}
.logo-accent {
    color: var(--accent);
}
.logo-status {
    font-size: 0.5rem;
    color: var(--accent);
    margin-left: 6px;
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-link {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-num {
    color: var(--accent);
    font-size: 0.55rem;
}
.nav-link:hover {
    color: var(--text);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text);
    transition:
        transform 0.3s,
        opacity 0.3s;
}
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-snap);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu ul {
    list-style: none;
    text-align: center;
}
.mobile-link {
    display: block;
    font-family: var(--display);
    font-size: 2.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-muted);
    padding: 14px 0;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}
.mobile-link:hover {
    color: var(--accent);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 64, 64, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 64, 64, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 80% at 25% 50%,
        transparent 20%,
        var(--bg) 100%
    );
}

/* HUD corners */
.hero-hud {
    position: absolute;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}
.hud-tl {
    top: 96px;
    left: 48px;
}
.hud-tr {
    top: 96px;
    right: 70px;
    text-align: right;
}
.hud-bl {
    bottom: 56px;
    left: 48px;
}
.hud-br {
    bottom: 56px;
    right: 70px;
    text-align: right;
}
.hud-tl::before,
.hud-tr::before,
.hud-bl::before,
.hud-br::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
}
.hud-tl::before {
    top: -6px;
    left: -6px;
    border-top: 1px solid var(--accent-dim);
    border-left: 1px solid var(--accent-dim);
}
.hud-tr::before {
    top: -6px;
    right: -6px;
    border-top: 1px solid var(--accent-dim);
    border-right: 1px solid var(--accent-dim);
}
.hud-bl::before {
    bottom: -6px;
    left: -6px;
    border-bottom: 1px solid var(--accent-dim);
    border-left: 1px solid var(--accent-dim);
}
.hud-br::before {
    bottom: -6px;
    right: -6px;
    border-bottom: 1px solid var(--accent-dim);
    border-right: 1px solid var(--accent-dim);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
.hero-tag {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    color: var(--text-dim);
    margin-bottom: 24px;
    transition-delay: 0.05s;
}
.hero-title {
    font-family: var(--display);
    font-size: clamp(4.5rem, 13vw, 11rem);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: 0.04em;
    margin-bottom: 0;
    text-transform: uppercase;
}
.hero-title .line {
    display: block;
    transition-delay: 0.15s;
}
.hero-title .line:nth-child(2) {
    transition-delay: 0.25s;
    color: var(--text-mid);
}
.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--accent);
    margin: 28px 0;
    transition-delay: 0.35s;
}
.hero-sub {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
    transition-delay: 0.4s;
}
.hero-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    transition-delay: 0.5s;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    clip-path: polygon(
        0 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% 100%,
        8px 100%,
        0 calc(100% - 8px)
    );
    transition:
        background 0.2s,
        transform 0.2s;
}
.btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
}
.btn-ghost {
    display: inline-block;
    padding: 11px 28px;
    border: 1px solid var(--border-hard);
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.2s,
        border-color 0.2s,
        transform 0.2s;
}
.btn-ghost:hover {
    color: var(--text);
    border-color: var(--accent-dim);
    transform: translateY(-2px);
}

.hero-side {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    border-left: 1px solid var(--border);
}
.hero-ticker {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    white-space: nowrap;
    writing-mode: vertical-rl;
    animation: tickDown 20s linear infinite;
}
@keyframes tickDown {
    from {
        transform: translateY(-30%);
    }
    to {
        transform: translateY(30%);
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    z-index: 2;
    transition-delay: 0.8s;
}
.scroll-line {
    width: 44px;
    height: 1px;
    background: var(--accent);
    transform-origin: left;
    animation: pulse-line 2.4s ease-in-out infinite;
}
@keyframes pulse-line {
    0%,
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.25;
        transform: scaleX(0.4);
    }
}

/* ─── SECTIONS COMMON ─── */
section {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-hard);
    padding-bottom: 16px;
}
.section-num {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--accent);
}
.section-title {
    font-family: var(--display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    flex: 1;
}
.section-tag {
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    border: 1px solid var(--border);
    padding: 3px 8px;
}

/* ─── GAME FEATURE ─── */
.game-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-hard);
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.65s var(--ease-out),
        transform 0.65s var(--ease-out);
}
.game-feature.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Game Visual */
.game-visual {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-hard);
}
.game-art {
    height: 340px;
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
}
.checkmate {
    background: #0a0a0a;
}

/* Board grid — persistent from original */
.board-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 64, 64, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 64, 64, 0.1) 1px, transparent 1px);
    background-size: 36px 36px;
    animation: gridShift 12s linear infinite;
}
@keyframes gridShift {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(36px, 36px);
    }
}

/* Mini chess board */
.chessboard-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(8, 28px);
    grid-template-rows: repeat(8, 28px);
    border: 1px solid rgba(200, 64, 64, 0.4);
    opacity: 0.7;
}
.chess-cell {
    width: 28px;
    height: 28px;
}
.chess-cell.light {
    background: rgba(200, 64, 64, 0.08);
}
.chess-cell.dark {
    background: rgba(0, 0, 0, 0.5);
}
.chess-piece {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent);
    font-family: var(--mono);
    text-shadow: 0 0 8px var(--accent);
}

.piece-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(200, 64, 64, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glow-pulse {
    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.game-hud-tl {
    position: absolute;
    top: 12px;
    left: 14px;
    font-family: var(--mono);
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}
.game-hud-br {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-family: var(--mono);
    font-size: 0.52rem;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Screenshot strip */
.screenshot-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-hard);
    background-color: var(--bg);
}
.screenshot-frame {
    background: var(--bg-raised);
    aspect-ratio: 9/16;
    overflow: hidden;
    position: relative;
}
.screenshot-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    border: 1px dashed var(--border);
}

/* Game Info */
.game-info {
    background: var(--bg);
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.game-label {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: var(--text-dim);
    display: block;
    margin-bottom: 10px;
}
.game-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}
.game-divider {
    width: 100%;
    height: 1px;
    background: var(--border-hard);
}
.game-desc {
    font-family: var(--body);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    letter-spacing: 0.03em;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--bg-raised);
}
.feature-icon {
    font-size: 0.7rem;
    margin-top: 2px;
    line-height: 1;
    flex-shrink: 0;
}
.feature-label {
    font-family: var(--mono);
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.feature-val {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--text-mid);
}

/* Game CTA */
.game-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-play {
    padding: 14px 32px;
    font-size: 0.72rem;
}

/* Game Stats row */
.game-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-hard);
    border-top: 1px solid var(--border-hard);
}
.game-stat {
    background: var(--bg-raised);
    padding: 20px 16px;
    text-align: center;
}
.game-stat-num {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.game-stat-label {
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}

/* Upcoming bar */
.upcoming-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 1px;
    padding: 16px 24px;
    background: var(--bg-raised);
    border: 1px solid var(--border);
}
.upcoming-divider {
    height: 1px;
    background: var(--border-hard);
    width: 32px;
}

/* Status dots */
.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.status-dot.active {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}
.status-dot.pending {
    background: var(--text-dim);
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* ─── INTEL ─── */
.intel {
    background: var(--bg-raised);
    max-width: 100%;
    padding: 100px 48px;
}
.intel .section-header,
.intel-layout {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.intel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-hard);
}
.intel-dossier {
    background: var(--bg-raised);
    padding: 0;
}
.dossier-field {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}
.field-label {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    color: var(--text-dim);
    padding: 14px 20px;
    border-right: 1px solid var(--border);
}
.field-value {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    padding: 14px 20px;
}
.intel-right {
    background: var(--bg-raised);
    display: flex;
    flex-direction: column;
}
.intel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-hard);
    flex: 1;
}
.stat {
    background: var(--bg-raised);
    padding: 32px 28px;
}
.stat-num {
    font-family: var(--display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}
.intel-warning {
    border-top: 1px solid var(--border-hard);
    padding: 18px 24px;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--bg-raised);
}
.warn-icon {
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── CONTACT ─── */
.contact {
    max-width: 1400px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-hard);
}
.contact-left {
    background: var(--bg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-lead {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: var(--text-mid);
}
.contact-channel {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-email {
    font-family: var(--mono);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--text-mid);
}
.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-link {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    text-decoration: none;
    transition:
        color 0.2s,
        letter-spacing 0.3s;
}
.social-link:hover {
    color: var(--accent);
    letter-spacing: 0.22em;
}
.contact-right {
    background: var(--bg-raised);
}
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    height: 100%;
}
.form-header {
    background: var(--bg-raised);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}
.field {
    width: 100%;
    background: var(--bg-raised);
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--text);
    transition: background 0.2s;
    resize: none;
}
.field::placeholder {
    color: var(--text-dim);
    letter-spacing: 0.16em;
}
.field:focus {
    background: var(--surface);
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    font-weight: 400;
    cursor: none;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: var(--accent-bright);
}
.btn-submit:active {
    transform: translateY(1px);
}
.form-status {
    background: var(--bg-raised);
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: 10px 20px;
    min-height: 38px;
    display: flex;
    align-items: center;
}

/* ─── FOOTER ─── */
.footer {
    border-top: 1px solid var(--border-hard);
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left,
.footer-right {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    color: var(--text-dim);
}
.footer-logo {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .game-feature {
        grid-template-columns: 1fr;
    }
    .intel-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 14px 24px;
    }
    .nav.scrolled {
        padding: 10px 24px;
    }
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero {
        padding: 100px 24px 72px;
    }
    .hero-side {
        display: none;
    }
    .hud-tr,
    .hud-br {
        right: 24px;
    }
    section {
        padding: 72px 24px;
    }
    .intel {
        padding: 72px 24px;
    }
    .game-info {
        padding: 32px 24px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .game-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-left {
        padding: 32px 24px;
    }
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
    .cursor,
    .cursor-ring {
        display: none;
    }
    body {
        cursor: auto;
    }
    .btn-submit {
        cursor: pointer;
    }
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(3.5rem, 15vw, 5.5rem);
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hud-tl,
    .hud-tr,
    .hud-bl,
    .hud-br {
        display: none;
    }
    .game-cta {
        flex-direction: column;
    }
    .game-cta .btn-primary,
    .game-cta .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
