/* Signal Spike Games - v2.0 Redesign */
/* "The Signal" - Amber phosphor aesthetic, warm precision */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
    /* Backgrounds - warm blacks, not cold */
    --bg-primary: #0c0b09;
    --bg-secondary: #141310;
    --bg-surface: #1c1a17;
    --bg-elevated: #252320;

    /* The Signal - amber phosphor accent */
    --accent-primary: #e8a000;
    --accent-primary-hover: #ffc030;
    --accent-glow: rgba(232, 160, 0, 0.15);

    /* Text - warm whites */
    --text-primary: #f5f2eb;
    --text-secondary: #a8a49a;
    --text-muted: #6b6760;

    /* Borders - warm grays */
    --border-subtle: #2a2824;
    --border-visible: #3d3a35;

    /* Game-specific */
    --starboys-accent: #e8a020;
    --bloodrust-accent: #c45030;
    --fireflyte-accent: #b8d86a;
    --null-accent: #94a3b8;

    /* Discord */
    --discord-blurple: #5865F2;
    --discord-blurple-hover: #6d78d9;

    /* Functional */
    --success: #7cb342;
    --warning: var(--accent-primary);
    --error: #d45050;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-main: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-logo: 'Oxanium', 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Consolas', monospace;

    /* Layout */
    --max-width: 1100px;
    --announcement-height: 0px;
    --nav-height: 64px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.12s ease;
    --transition-normal: 0.2s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Starfield background - dialed back for cleaner feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        /* Bright stars */
        radial-gradient(1.5px 1.5px at 10% 15%, rgba(255, 255, 255, 0.55), transparent),
        radial-gradient(1.5px 1.5px at 45% 8%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 33% 72%, rgba(255, 255, 255, 0.65), transparent),
        radial-gradient(1.5px 1.5px at 82% 95%, rgba(255, 255, 255, 0.55), transparent),
        radial-gradient(1.5px 1.5px at 70% 35%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 15% 85%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 92% 22%, rgba(255, 255, 255, 0.55), transparent),
        /* Medium stars */
        radial-gradient(1px 1px at 25% 35%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 78% 42%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 55% 62%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 88% 75%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 12% 48%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 42% 88%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 65% 12%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 95% 55%, rgba(255, 255, 255, 0.35), transparent),
        /* Dim stars */
        radial-gradient(0.5px 0.5px at 62% 28%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(0.5px 0.5px at 88% 12%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 15% 58%, rgba(255, 255, 255, 0.18), transparent),
        radial-gradient(0.5px 0.5px at 52% 65%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 70% 78%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(0.5px 0.5px at 5% 88%, rgba(255, 255, 255, 0.18), transparent),
        radial-gradient(0.5px 0.5px at 28% 22%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 38% 48%, rgba(255, 255, 255, 0.18), transparent);
    pointer-events: none;
    z-index: -2;
}

/* Subtle warm nebula glow - restrained */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(232, 160, 0, 0.03), transparent),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(232, 160, 0, 0.02), transparent);
    pointer-events: none;
    z-index: -1;
}


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

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary-hover);
}

.link-button {
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent-primary);
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.14em;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.link-button:focus-visible {
    outline: 1px solid var(--accent-primary);
    outline-offset: 3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent-primary);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-4xl) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
    transition: transform var(--transition-fast);
    z-index: 1002;
}

.skip-link:focus-visible {
    transform: translateY(0);
}

.nav {
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(12, 11, 9, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: background var(--transition-normal);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    font-family: var(--font-logo);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 0 18px rgba(232, 160, 0, 0.08);
}

.nav-logo:hover {
    color: var(--text-primary);
}

.nav-logo .spike {
    color: var(--accent-primary);
    font-weight: 700;
    letter-spacing: 0.16em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

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

.nav-link--active,
.nav-link[aria-current="page"] {
    color: var(--text-primary);
}

.nav-link--active::after,
.nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--accent-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-sm);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-toggle:hover {
    border-color: var(--border-visible);
}

/* Mobile nav */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.75rem;
        gap: var(--space-xs);
    }

    .announcement-badge {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        font-size: 0.98rem;
        letter-spacing: 0.11em;
        gap: 0.22rem;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border-subtle);
        padding: var(--space-lg);
        gap: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-primary-hover);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-visible);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-steam {
    background: #171a21;
    color: #c7d5e0;
    border: 1px solid #2a475e;
}

.btn-steam:hover {
    background: #2a475e;
    color: #fff;
}

.btn-discord {
    background: var(--discord-blurple);
    color: #fff;
}

.btn-discord:hover {
    background: var(--discord-blurple-hover);
    color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn i {
    font-size: 1em;
}

.btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + var(--announcement-height) + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(12, 11, 9, 0.3) 0%,
            rgba(12, 11, 9, 0.6) 70%,
            var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-xl);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title .spike {
    color: var(--accent-primary);
}


.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Compact hero for homepage */
.hero-compact {
    padding: calc(var(--nav-height) + var(--announcement-height) + var(--space-2xl)) 0 var(--space-xl);
}

.hero-compact .hero-title {
    margin-bottom: var(--space-sm);
}

.hero-compact .hero-subtitle {
    margin-bottom: 0;
}

/* ============================================
   GAMES SHOWCASE (Homepage)
   ============================================ */

.games-showcase {
    padding-top: calc(var(--nav-height) + var(--announcement-height));
}

.game-row {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.game-row:first-child {
    padding-top: var(--space-2xl);
}

.game-row:last-child {
    border-bottom: none;
}

.game-row-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.game-row--reverse .game-row-inner {
    direction: rtl;
}

.game-row--reverse .game-row-inner>* {
    direction: ltr;
}

.game-row-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
}

.game-row-media a {
    display: block;
}

.game-row-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
}

.game-row-media a:hover img {
    transform: scale(1.03);
}

.game-row-media--logo {
    background: transparent;
    border: none;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-row-media--logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.game-row-media--logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.game-row-media--dvd-teaser {
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-subtle);
}

.dvd-teaser-mark {
    width: min(72%, 360px);
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    text-transform: uppercase;
    text-align: center;
    background: rgba(6, 6, 6, 0.82);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dvd-teaser-mark-title,
.dvd-teaser-mark-subtitle {
    display: block;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 0.9;
}

.dvd-teaser-mark-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.dvd-teaser-mark-subtitle {
    margin-top: 0.35rem;
    font-size: clamp(1rem, 2vw, 1.45rem);
    letter-spacing: 0.16em;
}

.game-row-media--vault a {
    border: none;
    background: transparent;
}

.vault-home-mark {
    width: min(78%, 340px);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 242, 235, 0.08);
    background:
        radial-gradient(circle at 18% 20%, rgba(232, 160, 0, 0.14), transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 10px 30px rgba(0, 0, 0, 0.18);
    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.game-row-media--vault a:hover .vault-home-mark,
.game-row-media--vault a:focus-visible .vault-home-mark {
    transform: scale(1.03);
    border-color: rgba(232, 160, 0, 0.2);
    box-shadow:
        inset 0 0 0 1px rgba(232, 160, 0, 0.08),
        0 14px 36px rgba(0, 0, 0, 0.24);
}

.vault-home-mark__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.vault-home-mark__title {
    font-size: clamp(1.5rem, 3.2vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-align: center;
}

.game-row-media--vexel a {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    border: none;
    background: transparent;
    box-shadow: none;
}

.game-row-media--dvd-home img {
    width: 82%;
    max-width: 560px;
}

.game-row-media--legacy-card {
    aspect-ratio: 16 / 9;
}

.game-row-media--legacy-card a {
    width: 100%;
    height: 100%;
}

.game-row-media--legacy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-row-media--birds {
    border-color: rgba(133, 217, 235, 0.16);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.05), transparent 24%),
        linear-gradient(180deg, rgba(28, 18, 42, 0.34), rgba(10, 8, 16, 0.18));
}

.game-row-media--halcyon {
    border-color: rgba(240, 225, 188, 0.16);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 218, 156, 0.05), transparent 24%),
        linear-gradient(180deg, rgba(56, 38, 24, 0.34), rgba(16, 12, 10, 0.16));
}

.game-row-media--odaya {
    border-color: rgba(139, 179, 203, 0.16);
    background:
        radial-gradient(circle at 18% 18%, rgba(139, 179, 203, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(58, 32, 32, 0.28), rgba(18, 14, 16, 0.18));
}

.vexel-home-logo {
    width: 100%;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: transform var(--transition-normal);
    font-family: "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(122, 96, 232, 0.9);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 1px rgba(44, 33, 92, 0.3);
    opacity: 1;
}

.game-row-media--vexel a:hover .vexel-home-logo,
.game-row-media--vexel a:focus-visible .vexel-home-logo {
    transform: scale(1.03);
}

.vexel-home-logo>span {
    flex: 0 0 auto;
    display: inline-block;
    transform: scaleY(1.08);
    transform-origin: center bottom;
}

@media (max-width: 500px) {
    .vexel-home-logo {
        font-size: 1.35rem;
    }
}

.game-row-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-row-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.game-row-note {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.game-row-status {
    margin-left: var(--space-sm);
    color: var(--accent-primary);
}

.game-row-status::before {
    content: '·';
    margin-right: var(--space-sm);
    color: var(--text-muted);
}

.game-row-status--released {
    color: var(--success);
}

.game-row-status--mono {
    color: var(--text-secondary);
}

/* Roadmap section (homepage) */
.roadmap-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.roadmap-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.roadmap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.35rem, 1.4vw, 1rem);
    position: relative;
    width: 100%;
    padding: var(--space-lg) clamp(1rem, 3vw, 2rem) var(--space-md);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 22px rgba(0, 0, 0, 0.2);
}

/* Connecting line */
/* Line spans from first dot center to last dot center */
.roadmap::before {
    content: '';
    position: absolute;
    top: calc(var(--space-lg) + 8px);
    left: var(--roadmap-line-left, clamp(1.75rem, 7vw, 4.5rem));
    right: var(--roadmap-line-right, clamp(1.75rem, 7vw, 4.5rem));
    height: 1px;
    background: var(--border-subtle);
    z-index: 0;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    position: relative;
    z-index: 1;
}

.roadmap-step-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    max-width: 11rem;
}

.roadmap-step--collection {
    z-index: 2;
}

.roadmap-step--open {
    z-index: 12;
}

.roadmap-collection-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: center;
    cursor: pointer;
}

.roadmap-dot {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border-visible);
    background: var(--bg-primary);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.roadmap-dot:hover {
    transform: scale(1.2);
    border-color: var(--accent-primary);
}

.roadmap-collection-toggle:hover .roadmap-dot,
.roadmap-collection-toggle:focus-visible .roadmap-dot,
.roadmap-step--open .roadmap-collection-toggle .roadmap-dot {
    transform: scale(1.2);
}

.roadmap-collection-toggle:focus-visible {
    outline: none;
}

/* Done state */
.roadmap-step--done .roadmap-dot {
    border-color: var(--success);
    background: var(--success);
}

.roadmap-step--done h3,
.roadmap-step--done h3 a,
.roadmap-step--done .roadmap-heading {
    color: var(--text-primary);
    text-decoration: none;
}

.roadmap-step--done h3 a:hover {
    color: var(--success);
}

.roadmap-step--done .roadmap-collection-toggle:hover .roadmap-heading,
.roadmap-step--done .roadmap-collection-toggle:focus-visible .roadmap-heading {
    color: var(--success);
}

.roadmap-step--done .roadmap-status {
    color: var(--success);
}

/* Active state (in dev / alpha) */
.roadmap-step--active .roadmap-dot {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    box-shadow: 0 0 8px rgba(232, 160, 0, 0.3);
}

.roadmap-step--active h3,
.roadmap-step--active h3 a,
.roadmap-step--active .roadmap-heading {
    color: var(--text-primary);
    text-decoration: none;
}

.roadmap-step--active h3 a:hover {
    color: var(--accent-primary);
}

.roadmap-step--active .roadmap-collection-toggle:hover .roadmap-heading,
.roadmap-step--active .roadmap-collection-toggle:focus-visible .roadmap-heading {
    color: var(--accent-primary);
}

.roadmap-step--active .roadmap-status {
    color: var(--accent-primary);
}

.roadmap-step--current .roadmap-dot {
    box-shadow: 0 0 0 4px rgba(232, 160, 0, 0.14), 0 0 12px rgba(232, 160, 0, 0.22);
}

.roadmap-step--current h3,
.roadmap-step--current h3 a,
.roadmap-step--current .roadmap-heading {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

/* Up next state */
.roadmap-step--next .roadmap-dot {
    border-color: var(--accent-primary);
    background: var(--bg-primary);
}

.roadmap-step h3,
.roadmap-step h3 a,
.roadmap-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 var(--space-xs);
    text-decoration: none;
    line-height: 1.35;
    text-wrap: balance;
}

.roadmap-step--next h3,
.roadmap-step--next .roadmap-heading {
    color: var(--text-secondary);
}

.roadmap-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.roadmap-step--next .roadmap-status {
    color: var(--accent-primary);
    opacity: 0.7;
}

/* Legacy state */
.roadmap-step--legacy {
    opacity: 1;
}

.roadmap-step--legacy .roadmap-dot {
    border-color: var(--text-muted);
    background: var(--text-muted);
    opacity: 1;
}

.roadmap-step--legacy h3 {
    font-weight: 500;
    color: var(--text-secondary);
}

.roadmap-step--legacy .roadmap-heading {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Jam state (Solus) */
.roadmap-step--jam .roadmap-dot {
    border-color: #9d4edd;
    background: #9d4edd;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.roadmap-status--jam {
    color: #9d4edd;
}

/* Roadmap Modal (Legacy Games) */
.roadmap-step.has-modal {
    cursor: default;
}

.roadmap-modal,
.roadmap-preview {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translate(-50%, 6px);
    background: var(--bg-elevated);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    z-index: 10;
    width: max-content;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast),
        visibility var(--transition-fast);
}

.roadmap-modal::after,
.roadmap-preview::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
}

.roadmap-modal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.roadmap-modal li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 4px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.roadmap-modal li a {
    color: inherit;
    text-decoration: none;
}

.roadmap-modal li a:hover {
    color: var(--text-primary);
}

.roadmap-modal li:last-child {
    border-bottom: none;
}

.roadmap-modal--collection {
    width: min(360px, calc(100vw - 2rem));
    min-width: 240px;
    padding: var(--space-md);
}

.roadmap-modal--collection::after {
    left: -10px;
    right: -10px;
    height: 22px;
}

.roadmap-step--open .roadmap-modal--collection {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.roadmap-collection-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.45rem 1.25rem;
    padding: 0;
    margin: 0;
    text-align: left;
}

.roadmap-collection-list li {
    padding: 0;
    border: 0;
}

.roadmap-collection-item {
    position: relative;
}

.roadmap-collection-list--wide {
    min-width: 300px;
}

.roadmap-collection-link,
.roadmap-collection-text {
    display: inline-block;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-decoration: none;
}

.roadmap-collection-link:hover {
    color: var(--text-primary);
}

.roadmap-collection-link--current {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.16em;
}

.roadmap-preview--collection-link {
    bottom: auto;
    top: 50%;
    left: calc(100% + 12px);
    transform: translate(6px, -50%);
    width: 180px;
    min-width: 180px;
}

.roadmap-preview--collection-link::after {
    top: 0;
    bottom: 0;
    left: -14px;
    right: auto;
    width: 20px;
    height: auto;
}

.roadmap-collection-list--wide .roadmap-collection-item:nth-child(even) .roadmap-preview--collection-link {
    left: auto;
    right: calc(100% + 12px);
    transform: translate(-6px, -50%);
}

.roadmap-collection-list--wide .roadmap-collection-item:nth-child(even) .roadmap-preview--collection-link::after {
    left: auto;
    right: -14px;
}

.roadmap-preview-body--compact {
    padding: var(--space-sm) var(--space-md);
}

.roadmap-preview-body--compact h4 {
    margin: 0;
    font-size: 0.84rem;
}

.roadmap-preview {
    width: min(260px, calc(100vw - 2rem));
    min-width: 220px;
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.roadmap-preview--collection-link {
    width: 180px;
    min-width: 180px;
}

.roadmap-preview-media {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
    border-bottom: 1px solid var(--border-subtle);
}

.roadmap-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roadmap-preview-body {
    padding: var(--space-md);
}

.roadmap-preview-body h4 {
    font-size: 0.95rem;
    margin: 0 0 var(--space-xs);
    color: var(--text-primary);
}

.roadmap-preview-body p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.roadmap-collection-item--has-preview:hover .roadmap-preview--collection-link,
.roadmap-collection-item--has-preview:focus-within .roadmap-preview--collection-link {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
}

.roadmap-preview-mark {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.roadmap-preview-mark--vexel {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    font-family: "Iowan Old Style", Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.35rem;
    letter-spacing: 0.14em;
    color: #a78bfa;
}

.roadmap-preview-mark--vexel > span {
    flex: 0 0 auto;
    display: inline-block;
    transform: scaleY(1.08);
}

.roadmap-step.has-modal:hover .roadmap-modal,
.roadmap-step.has-modal:focus-within .roadmap-modal,
.roadmap-step--has-preview:hover .roadmap-preview,
.roadmap-step--has-preview:focus-within .roadmap-preview {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

@media (max-width: 768px) {
    .roadmap-preview {
        display: none !important;
    }

    .roadmap {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
        padding-left: var(--space-xl);
    }

    .roadmap::before {
        display: none;
    }

    .roadmap-step {
        flex-direction: row;
        gap: var(--space-md);
        max-width: none;
        align-items: flex-start;
        width: 100%;
    }

    .roadmap-step--collection {
        display: block;
    }

    .roadmap-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 8px;
        top: 8px;
        width: 1px;
        height: calc(100% + var(--space-lg));
        background: var(--border-subtle);
        z-index: 0;
    }

    .roadmap-dot {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .roadmap-step h3,
    .roadmap-heading {
        text-align: left;
    }

    .roadmap-step-copy {
        align-items: flex-start;
        max-width: none;
    }

    .roadmap-collection-toggle {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-md);
        text-align: left;
    }

    .roadmap-modal--collection {
        position: static;
        bottom: auto;
        left: auto;
        transform: none;
        width: auto;
        min-width: 0;
        margin: var(--space-sm) 0 0 calc(16px + var(--space-md));
    }

    .roadmap-step--open .roadmap-modal--collection {
        transform: none;
    }

    .roadmap-collection-list,
    .roadmap-collection-list--wide {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .roadmap-preview--collection-link {
        display: none !important;
    }

    .roadmap-section {
        padding: var(--space-2xl) 0;
    }
}

.game-row-details h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.game-row-details h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.game-row-details h2 a:hover {
    color: var(--accent-primary);
}

.game-row-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

@media (max-width: 768px) {
    .game-row-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .game-row--reverse .game-row-inner {
        direction: ltr;
    }

    .game-row-details {
        text-align: left;
    }

    .game-row {
        padding: var(--space-2xl) 0;
    }
}

/* ============================================
   SECTION HEADERS (used on game detail pages)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 500;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Badges (used on game detail pages) */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.badge-alpha {
    background: var(--bg-primary);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.badge-released {
    background: var(--bg-primary);
    color: var(--success);
    border: 1px solid var(--success);
}

.badge-beta {
    background: var(--bg-primary);
    color: var(--success);
    border: 1px solid var(--success);
}


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

.footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.footer-page-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(var(--space-lg), 5vw, var(--space-2xl));
}

.footer-page-link {
    position: relative;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-page-link:hover,
.footer-page-link--active,
.footer-page-link[aria-current="page"] {
    color: var(--text-primary);
}

.footer-page-link--active::after,
.footer-page-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--accent-primary);
}

.footer-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: var(--space-2xl);
    align-items: start;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.footer-panel {
    min-width: 0;
}

.footer-panel--newsletter {
    padding-left: var(--space-2xl);
    border-left: 1px solid var(--border-subtle);
}

.footer-panel-kicker {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.footer-panel h2 {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
    max-width: none;
}

.footer-panel p {
    margin-bottom: 0;
    max-width: 56ch;
    line-height: 1.7;
}

.footer-panel code,
.contact-modal code {
    padding: 0;
    background: none;
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.84em;
}

.footer-panel-actions,
.contact-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.newsletter-form {
    margin-top: var(--space-md);
}

.newsletter-form-row {
    display: flex;
    align-items: stretch;
    gap: var(--space-md);
}

.newsletter-input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 1rem;
    border: 1px solid var(--border-visible);
    border-radius: 10px;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-input:hover {
    border-color: rgba(232, 160, 0, 0.2);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(232, 160, 0, 0.1);
}

.newsletter-submit {
    min-width: 120px;
    border-radius: 10px;
}

.newsletter-footnote {
    margin-top: var(--space-sm);
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 48ch;
}

.newsletter-status,
.contact-copy-status {
    margin-top: var(--space-sm);
    min-height: 1.5em;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.newsletter-status:empty,
.contact-copy-status:empty {
    display: none;
}

.newsletter-status[data-state="success"],
.contact-copy-status[data-state="success"] {
    color: var(--success);
}

.newsletter-status[data-state="info"] {
    color: var(--accent-primary);
}

.newsletter-status[data-state="error"],
.contact-copy-status[data-state="error"] {
    color: #ff8b8b;
}

.newsletter-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--text-primary);
}

.social-link:focus-visible {
    outline: 1px solid var(--accent-primary);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .footer-page-links {
        gap: var(--space-lg);
    }

    .footer-panels {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-lg) 0;
    }

    .footer-panel--newsletter {
        padding-left: 0;
        padding-top: var(--space-lg);
        border-left: none;
        border-top: 1px solid var(--border-subtle);
    }

    .newsletter-form-row {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }

    .footer-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   GAME PAGE STYLES
   ============================================ */

.game-hero {
    padding: calc(var(--nav-height) + var(--announcement-height) + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(to bottom,
            var(--bg-secondary) 0%,
            var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.game-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.game-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.game-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(20, 19, 16, 0.7) 0%,
            var(--bg-primary) 100%);
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    margin-bottom: var(--space-xl);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text-secondary);
}

.breadcrumb span {
    color: var(--text-secondary);
}

.breadcrumb i {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.game-logo-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-md);
}

.game-logo {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
}

.game-title-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.game-title {
    margin-bottom: 0;
}


.game-genre {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.game-platforms {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.game-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.game-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.game-free-note {
    margin-top: var(--space-md);
    margin-bottom: 0;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Game Details Grid */
.game-details {
    padding: var(--space-3xl) 0;
}

.game-details-top {
    padding-top: calc(var(--nav-height) + var(--announcement-height) + var(--space-2xl));
}

.details-grid-no-media .game-media .game-intro {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    grid-template-areas:
        "media logo"
        "media info";
    gap: var(--space-2xl);
    align-items: start;
}

.details-logo {
    grid-area: logo;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.details-logo > .game-logo,
.details-logo > .vexel-page-logo {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "logo"
            "media"
            "info";
        gap: var(--space-xl);
    }

    .details-logo {
        align-items: center;
    }

    .details-logo > .game-logo {
        width: min(100%, 420px);
        margin-inline: auto;
    }

    .details-logo > .vexel-page-logo {
        margin-inline: auto;
    }
}

.game-media {
    grid-area: media;
    position: relative;
    min-width: 0;
}

.game-intro {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.game-screenshot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.main-screenshot {
    aspect-ratio: 16 / 9;
}

.main-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.main-screenshot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.main-screenshot img[hidden],
.main-screenshot video[hidden] {
    display: none !important;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.gallery-thumb {
    appearance: none;
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.8;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--border-visible);
}

.gallery-thumb--active {
    opacity: 1;
    border-color: var(--accent-primary);
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 640px) {
    .screenshot-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.game-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    min-width: 0;
}

.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.info-card h3 {
    margin-bottom: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
}

.feature-item i {
    color: var(--accent-primary);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    opacity: 0.8;
}

.feature-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.specs-list {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-row:first-child {
    padding-top: 0;
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Game About Section */
.game-about {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.game-about .section-header {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.game-about .section-header h2 {
    font-size: 1.5rem;
}

.about-text {
    max-width: 100%;
    column-count: 2;
    column-gap: var(--space-2xl);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-text {
        column-count: 1;
    }
}

/* Story Panels */
.story-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .story-panels {
        grid-template-columns: 1fr;
    }
}

.story-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--transition-normal);
}

.story-panel:hover {
    border-color: var(--border-visible);
}

.story-panel h3 {
    font-size: 1rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.story-panel p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}

/* Game CTA Section */
.game-cta {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.game-cta-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.game-cta p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: calc(var(--nav-height) + var(--announcement-height) + var(--space-3xl)) 0 var(--space-4xl);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: var(--space-md);
    text-transform: none;
}

.legal-content .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-3xl);
}

.legal-text {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.legal-text h2 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    text-transform: none;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: var(--space-md);
}

.legal-text ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-text li {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: var(--announcement-height);
    background: var(--accent-primary);
    color: var(--bg-primary);
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    padding: var(--space-xs) var(--space-md);
    z-index: 1001;
}

.announcement-badge {
    background: var(--bg-primary);
    color: var(--accent-primary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.announcement-bar strong {
    font-weight: 600;
}

.announcement-link {
    color: var(--bg-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.announcement-link:hover {
    opacity: 0.8;
}

.announcement-link i {
    font-size: 0.7em;
    margin-left: 2px;
}

/* ============================================
   EXPO PAGE
   ============================================ */

.expo-hero {
    padding: calc(var(--nav-height) + var(--announcement-height) + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.expo-hero h1 {
    margin: var(--space-md) 0 var(--space-sm);
}

.expo-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.expo-details {
    padding: var(--space-3xl) 0;
}

.expo-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
    align-items: start;
}

@media (max-width: 800px) {
    .expo-grid {
        grid-template-columns: 1fr;
    }
}

.expo-info h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    margin-top: var(--space-2xl);
}

.expo-info h2:first-child {
    margin-top: 0;
}

.expo-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.expo-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.expo-list li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.expo-list li:last-child {
    border-bottom: none;
}

.expo-list strong {
    color: var(--text-primary);
}

.expo-sidebar .info-card {
    position: sticky;
    top: calc(var(--nav-height) + var(--announcement-height) + var(--space-lg));
}

.expo-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.expo-links .btn i {
    margin-left: var(--space-xs);
}

/* ============================================
   DEVLOG
   ============================================ */

.devlog-header {
    padding: calc(var(--nav-height) + var(--announcement-height) + var(--space-3xl)) 0 var(--space-2xl);
    border-bottom: 1px solid var(--border-subtle);
}

.devlog-header h1 {
    margin-bottom: var(--space-sm);
}

.devlog-header p {
    color: var(--text-secondary);
    max-width: 600px;
}

.devlog-entries {
    padding: var(--space-3xl) 0;
}

.devlog-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: var(--space-3xl);
    align-items: start;
}

.devlog-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--announcement-height) + var(--space-lg));
}

.devlog-nav h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.devlog-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.devlog-nav li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.devlog-nav li:last-child {
    border-bottom: none;
}

.devlog-nav a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.devlog-nav a:hover {
    color: var(--text-primary);
}

.devlog-nav span {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .devlog-layout {
        grid-template-columns: 1fr;
    }

    .devlog-sidebar {
        position: static;
        order: -1;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: var(--space-xl);
        margin-bottom: var(--space-xl);
    }
}

.devlog-entry {
    max-width: 700px;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--border-subtle);
    scroll-margin-top: calc(var(--nav-height) + var(--announcement-height) + var(--space-xl));
}

.devlog-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.entry-meta time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.entry-tag {
    display: inline-block;
    padding: 2px 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.entry-tag.starboys {
    border-color: var(--starboys-accent);
    color: var(--starboys-accent);
}

.entry-tag.bloodrust {
    border-color: var(--bloodrust-accent);
    color: var(--bloodrust-accent);
}

.entry-tag.null {
    border-color: var(--null-accent);
    color: var(--null-accent);
}

.devlog-entry h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    text-transform: none;
}

.entry-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.devlog-empty {
    text-align: center;
    padding: var(--space-4xl) 0;
    color: var(--text-muted);
}

/* ============================================
   GAME PAGE DEVELOPMENT SECTION
   ============================================ */

.dev-status {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.dev-status .section-header {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.dev-status .section-header h2 {
    font-size: 1.5rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.status-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--transition-normal);
}

.status-item:hover {
    border-color: var(--border-visible);
}

.status-item h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.status-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.status-item.current {
    border-color: var(--accent-primary);
}

.status-item.current h3::before {
    content: '→ ';
    color: var(--accent-primary);
}

/* Collaborators Section */
.game-collaborators {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.game-collaborators .section-header {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.game-collaborators .section-header h2 {
    font-size: 1.5rem;
}

.collaborators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .collaborators-grid {
        grid-template-columns: 1fr;
    }
}

.collaborator-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--transition-normal);
}

.collaborator-card:hover {
    border-color: var(--border-visible);
}

.collaborator-info h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.collaborator-role {
    color: var(--accent-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md) !important;
}

.collaborator-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.collaborator-info .btn {
    margin-top: auto;
}

/* Game Feature Showcase Section */
.game-feature-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle);
}

.game-feature-section .section-header {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.game-feature-section .section-header h2 {
    font-size: 1.5rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 900px) {
    .feature-showcase {
        grid-template-columns: 1fr;
    }
}

.feature-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.feature-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.feature-description p:last-child {
    margin-bottom: 0;
}

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

body.contact-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: rgba(8, 8, 7, 0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--transition-normal),
        visibility var(--transition-normal);
}

.contact-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
}

.contact-modal-dialog {
    position: relative;
    width: min(100%, 560px);
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border: 1px solid var(--border-visible);
    border-radius: 14px;
    background: var(--bg-surface);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.newsletter-modal .contact-modal-dialog {
    width: min(100%, 520px);
}

.contact-modal.is-open .contact-modal-dialog {
    transform: translateY(0);
}

.contact-modal-dialog::after {
    content: none;
}

.contact-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        color var(--transition-fast),
        background var(--transition-fast);
}

.contact-modal-close:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.03);
}

.contact-modal-close:focus-visible {
    outline: 1px solid var(--accent-primary);
    outline-offset: 2px;
}

.contact-modal-kicker {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.contact-modal-dialog h2 {
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    padding-right: 3rem;
}

.contact-modal-dialog p {
    margin-bottom: 0;
    max-width: 52ch;
    line-height: 1.7;
}

.contact-modal-intro {
    margin-top: var(--space-md);
}

.contact-email-card {
    margin-top: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.contact-email-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-email-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.contact-email-value {
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: clamp(0.95rem, 2vw, 1.08rem);
}

@media (max-width: 640px) {
    .contact-modal {
        padding: var(--space-md);
    }

    .contact-modal-dialog {
        padding: 1.1rem;
    }

    .contact-email-row .btn,
    .contact-modal-actions .btn {
        width: 100%;
    }

    .contact-email-value {
        width: 100%;
        word-break: break-all;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-primary);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
    line-height: 1;
}

.lightbox-prev {
    left: var(--space-lg);
}

.lightbox-next {
    right: var(--space-lg);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

@media (max-width: 640px) {

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 60px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: var(--space-sm);
    }

    .lightbox-next {
        right: var(--space-sm);
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.about-text--single-column {
    column-count: 1;
}

.credits-list {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    font-weight: 400;
}

.icon-inline-sm {
    font-size: 0.7em;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {

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

    html {
        scroll-behavior: auto;
    }
}



/* ============================================
   GAME JAM STYLES
   ============================================ */

:root {
    --jam-accent: #c084fc;
}

.badge-jam {
    color: var(--jam-accent);
    border-color: var(--jam-accent);
}

.game-row-status--jam {
    color: var(--jam-accent);
}

.roadmap-status.roadmap-status--jam {
    color: var(--jam-accent);
}

.roadmap-step--jam .roadmap-dot {
    background: var(--jam-accent);
    box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.2);
    border-color: var(--jam-accent);
}

.roadmap-step--jam h3 a:hover {
    color: var(--jam-accent) !important;
}

.roadmap-step--jam .roadmap-collection-toggle:hover .roadmap-heading,
.roadmap-step--jam .roadmap-collection-toggle:focus-visible .roadmap-heading {
    color: var(--jam-accent);
}

/* Homepage Title Hovers */
.game-row--starboys h2 a:hover {
    color: var(--starboys-accent);
}

.game-row--bloodrust h2 a:hover {
    color: var(--bloodrust-accent);
}

.game-row--solus h2 a:hover {
    color: var(--jam-accent);
}

.game-row--null h2 a:hover {
    color: var(--null-accent);
}

.game-row--vexel h2 a:hover {
    color: #7a60e8;
    /* Vexel accent */
}

.game-row--dvdsurvivors h2 a:hover {
    color: #f2c45b;
}

.game-row--birds h2 a:hover {
    color: #85d9eb;
}

.game-row--halcyon h2 a:hover {
    color: #f0e1bc;
}

.game-row--odaya h2 a:hover {
    color: #8bb3cb;
}



/* ============================================
   UTILITIES
   ============================================ */

.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
    background: transparent !important;
    border-color: var(--border-subtle) !important;
    color: var(--text-muted) !important;
}

