/* ==========================================================================
   Lumen Arcade — Bright Editorial Gaming Design System
   Fonts: Outfit (headers) + Source Sans 3 (body) — linked in HTML
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-color: #F7F9FC;
    --surface: #FFFFFF;
    --primary: #2563EB;
    --primary-light: #DBEAFE;
    --primary-dark: #1D4ED8;
    --accent: #F59E0B;
    --accent-light: #FEF3C7;
    --mint: #10B981;
    --mint-light: #D1FAE5;
    --text-primary: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;

    /* Spacing (8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;

    /* Typography */
    --font-header: "Outfit", sans-serif;
    --font-body: "Source Sans 3", sans-serif;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1), 0 4px 8px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-image:
        linear-gradient(rgba(247, 249, 252, 0.92), rgba(247, 249, 252, 0.96)),
        url("../images/layout/site-bg.jpg");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lumen-surface {
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

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

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

/* Fade-in animation */
@keyframes lumen-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lumen-fade-in-soft {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lumen-surface main {
    animation: lumen-fade-in 0.6s ease both;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */

.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-2) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    position: relative;
    flex-wrap: nowrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    position: relative;
    padding: 4px 0;
    flex-shrink: 0;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
}

.logo-text {
    position: relative;
    z-index: 1;
}

.logo-accent {
    display: inline-block;
    width: 28px;
    height: 8px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: var(--space-1);
    margin-left: auto;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background var(--transition-base);
}

.nav-item:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-item.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.nav-toggle:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--text-primary);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* --------------------------------------------------------------------------
   Search
   -------------------------------------------------------------------------- */

.search-container {
    width: min(420px, 100%);
    position: relative;
}

.search-container-nav {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    margin-left: auto;
}

.search-field {
    display: block;
    margin-bottom: 10px;
}

.search-field-inline {
    position: relative;
}

.search-inline-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.search-field input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-primary);
    padding: 13px 18px 13px 48px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.search-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.search-meta {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.search-results {
    display: none;
    gap: 10px;
    max-height: min(60vh, 520px);
    overflow-y: auto;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 140;
}

.search-results.has-results {
    display: grid;
}

.search-result-item,
.search-empty {
    display: block;
    padding: 16px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.search-result-item {
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.search-result-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.search-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    margin-bottom: 8px;
}

.search-result-type,
.search-result-meta {
    font-family: var(--font-header);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.search-result-type {
    color: var(--primary);
}

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

.search-result-title {
    font-family: var(--font-header);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.search-result-desc,
.search-empty {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero-section {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFBEB 50%, #F0FDF4 100%);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: var(--space-6);
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    animation: lumen-fade-in 0.7s ease 0.1s both;
}

.hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-3);
    animation: lumen-fade-in 0.7s ease 0.25s both;
}

.hero-panel-card {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
}

.hero-panel-card strong {
    display: block;
    font-family: var(--font-header);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.hero-panel-card span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

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

.hero-title {
    font-family: var(--font-header);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.highlight {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 0 var(--space-5);
    line-height: 1.7;
}

.hero-actions {
    align-items: center;
}

/* Page & Category Heroes */
.page-hero,
.category-hero {
    padding: var(--space-8) 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
    border-bottom: 1px solid var(--border-light);
}

.page-hero .hero-title,
.category-hero .hero-title {
    font-size: 2.75rem;
    text-align: left;
}

.page-hero .hero-subtitle,
.category-hero .hero-subtitle {
    text-align: left;
    margin-left: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */

.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-3);
    margin: var(--space-6) 0 var(--space-4);
}

.section-header .header-line {
    flex: 1 1 120px;
    max-width: 200px;
    margin-bottom: 4px;
}

.section-title {
    font-family: var(--font-header);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}

.header-line {
    width: 48px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

/* --------------------------------------------------------------------------
   Editorial Manifesto
   -------------------------------------------------------------------------- */

.editorial-manifesto {
    padding: var(--space-8) 0;
    background: var(--surface);
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: var(--space-5);
    align-items: start;
}

.editorial-sidebar {
    order: 1;
}

.editorial-main {
    order: 2;
}

.editorial-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: var(--space-3) 0;
    line-height: 1.65;
}

.editorial-body p {
    color: var(--text-muted);
    margin-bottom: var(--space-3);
    line-height: 1.8;
}

.editorial-sidebar .sidebar-box {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.editorial-sidebar h3 {
    font-family: var(--font-header);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: var(--space-2);
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.sidebar-list .dot {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    background: var(--mint);
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.sidebar-list a:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   Featured Reviews & Game Cards
   -------------------------------------------------------------------------- */

.featured-reviews {
    position: relative;
    padding: var(--space-3) 0 var(--space-8);
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.97) 0%, rgba(255, 255, 255, 1) 100%);
}

.featured-reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/blog/strategy-cover.jpg") center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.featured-reviews .container {
    position: relative;
    z-index: 1;
}

.categories-grid-section {
    padding: var(--space-4) 0 var(--space-8);
}

.featured-batch {
    animation: lumen-fade-in 0.5s ease both;
}

.featured-batch + .featured-batch {
    margin-top: var(--space-4);
}

/* Lumen layout: fixed-column game grid (differs from original auto-fill) */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
}

#featured-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Index in-feed ad slots (Velocity output) */
.index-ad-slot {
    margin: var(--space-4) 0;
}

main > .index-ad-slot:first-child {
    margin-top: var(--space-3);
}

.game-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.card-img-wrapper {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--border-light);
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.game-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-3);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.card-tag {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
    display: block;
}

.card-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid var(--accent-light);
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    color: var(--text-primary);
    flex-shrink: 0;
}

.rating-stars {
    color: var(--accent);
    letter-spacing: 1px;
    font-size: 0.72rem;
    line-height: 1;
}

.rating-score {
    font-family: var(--font-header);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.card-title {
    font-family: var(--font-header);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
    line-height: 1.3;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card .card-img-wrapper {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

.category-count {
    position: absolute;
    bottom: var(--space-2);
    right: var(--space-2);
    background: var(--primary);
    color: #FFFFFF;
    padding: 5px 12px;
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.placeholder-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--mint-light) 100%);
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Insight Feed & Articles
   -------------------------------------------------------------------------- */

.insight-feed {
    padding: var(--space-3) 0 var(--space-8);
    background: var(--surface);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.article-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.article-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    background: var(--border-light);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-thumb img {
    transform: scale(1.04);
}

.article-info {
    padding: var(--space-4);
}

.article-tag {
    font-size: 0.7rem;
    color: var(--mint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-1);
    display: block;
}

.article-title {
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    line-height: 1.35;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-3);
    line-height: 1.65;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--space-1);
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.article-link:hover {
    gap: 8px;
    color: var(--primary-dark);
}

.view-all-intel {
    text-align: center;
    margin-top: var(--space-6);
}

/* --------------------------------------------------------------------------
   Review / Detail Page
   -------------------------------------------------------------------------- */

.review-container {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: var(--space-6);
    padding: var(--space-8) var(--space-3);
    align-items: start;
}

.review-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.review-content {
    min-width: 0;
}

.game-meta-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.game-icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-3);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--surface);
    outline: 2px solid var(--border-color);
}

.game-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-title {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
    line-height: 1.25;
}

.game-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    margin: var(--space-3) 0;
    padding: var(--space-3) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stat-value {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.detail-rating-row {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.detail-rating-stars {
    color: var(--accent);
    letter-spacing: 1px;
    font-size: 0.85rem;
    line-height: 1;
}

.detail-rating-badge {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--accent-light);
    background: var(--accent-light);
    color: var(--text-primary);
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-3);
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

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

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Deep Content / Blog Articles
   -------------------------------------------------------------------------- */

.deep-content {
    max-width: 800px;
    margin: var(--space-8) auto;
    padding: 0 var(--space-3);
}

.article-header {
    margin-bottom: var(--space-6);
    text-align: center;
}

.article-cover {
    position: relative;
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.06) 100%);
    pointer-events: none;
}

.article-cover img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: var(--space-2);
}

.article-body h2 {
    font-family: var(--font-header);
    font-size: 1.65rem;
    font-weight: 700;
    margin: var(--space-6) 0 var(--space-3);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-family: var(--font-header);
    font-size: 1.25rem;
    font-weight: 600;
    margin: var(--space-4) 0 var(--space-2);
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: var(--space-4);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.article-body .intro {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.65;
}

.article-body strong {
    color: var(--primary);
    font-weight: 600;
}

.article-body ul,
.article-body ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-4);
    color: var(--text-muted);
    line-height: 1.8;
}

.article-body li {
    margin-bottom: var(--space-1);
}

/* FAQ */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-2);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-q {
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.faq-a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

#related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-4);
}

#related-grid .game-card {
    animation: lumen-fade-in 0.4s ease both;
}

/* --------------------------------------------------------------------------
   Play Page
   -------------------------------------------------------------------------- */

.play-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
    gap: var(--space-5);
    padding: var(--space-8) var(--space-3);
}

.play-stage {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    min-width: 0;
}

.play-stage-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.play-category-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--mint-light);
    background: var(--mint-light);
    color: #065F46;
    font-family: var(--font-header);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.play-embed {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 640px;
    border: 0;
    border-radius: var(--radius-md);
    background: #0F172A;
    box-shadow: inset 0 0 0 1px var(--border-color);
}

.play-side-panel {
    display: grid;
    gap: var(--space-4);
    align-content: start;
    min-width: 0;
}

.play-kicker {
    color: var(--primary);
    font-family: var(--font-header);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.play-title {
    margin-bottom: var(--space-2);
    font-size: clamp(2rem, 4vw, 3rem);
}

.play-subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--text-muted);
}

.play-frame-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #F8FAFC;
}

.play-note {
    color: var(--text-muted);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Contact & Legal
   -------------------------------------------------------------------------- */

.contact-form {
    max-width: 560px;
    margin-top: var(--space-5);
    padding: var(--space-5);
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form label {
    display: block;
    font-family: var(--font-header);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: var(--surface);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.legal-content {
    max-width: 760px;
    padding: var(--space-8) var(--space-3);
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    font-weight: 600;
    margin: var(--space-5) 0 var(--space-2);
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-3);
}

.legal-content ul,
.legal-content ol {
    color: var(--text-muted);
    padding-left: var(--space-4);
    margin-bottom: var(--space-3);
    line-height: 1.8;
}

.editorial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.editorial-text h2 {
    font-family: var(--font-header);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-5) 0 var(--space-2);
}

.editorial-text p {
    margin-bottom: var(--space-3);
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--text-primary);
    padding: var(--space-10) 0 var(--space-5);
    margin-top: var(--space-10);
    color: #CBD5E1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-brand .logo-text {
    font-family: var(--font-header);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    margin-bottom: var(--space-2);
}

.footer-bio {
    color: #94A3B8;
    max-width: 400px;
    margin-top: var(--space-2);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.footer-column h4 {
    margin-bottom: var(--space-3);
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.footer-column a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: var(--space-1);
    font-size: 0.92rem;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748B;
    font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Utility / Supporting (used by JS & inner pages)
   -------------------------------------------------------------------------- */

.mini-hero {
    padding: var(--space-8) 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.analysis-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.analysis-card h3 {
    font-family: var(--font-header);
    margin-bottom: var(--space-2);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.analysis-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.iframe-container {
    position: relative;
    padding-top: 62.5%;
    background: #0F172A;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: var(--space-4) 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --------------------------------------------------------------------------
   Play page
   -------------------------------------------------------------------------- */
.play-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
    gap: var(--space-5);
    padding: var(--space-8) var(--space-3);
}

.play-stage,
.play-side-panel {
    min-width: 0;
}

.play-stage {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
}

.play-stage-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.play-kicker {
    color: var(--primary);
    font-family: var(--font-header);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.play-title {
    margin-bottom: var(--space-2);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.play-subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--text-muted);
}

.play-frame-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #EEF2FF;
    box-shadow: var(--shadow-md);
}

.play-embed {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 640px;
    border: 0;
    background: #F1F5F9;
}

.play-side-panel {
    display: grid;
    gap: var(--space-4);
    align-content: start;
}

.play-meta-stack {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-3);
}

.play-category-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--primary-light);
    background: var(--primary-light);
    color: var(--primary-dark);
    font-family: var(--font-header);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.play-note {
    color: var(--text-muted);
    line-height: 1.8;
}

.play-page-minimal {
    min-height: 100vh;
    background: var(--bg-color);
    overflow: hidden;
}

.play-frame-only {
    width: 100vw;
    height: 100vh;
}

.play-embed-full {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
}
