/* ============================================
   PlayZone — Free Social Casino Games
   Stylesheet for all pages
   Palette: deep slate blue + warm gold accent
   ============================================ */

:root {
    --bg: #1a1f2e;
    --bg-soft: #232838;
    --bg-card: #252b3c;
    --bg-card-hover: #2b3247;
    --surface: #2a3045;
    --text: #e8e6e1;
    --text-soft: #b3b1ad;
    --text-muted: #8a8782;
    --accent: #c9a36a;
    --accent-soft: #d9b683;
    --accent-dark: #a8843f;
    --accent-muted: rgba(201, 163, 106, 0.15);
    --border: #353c52;
    --border-soft: #2f354a;
    --danger: #c97565;
    --good: #7fae8a;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-sm: 8px;
    --shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.25);
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --max-width: 1240px;
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-soft); }
ul { list-style: none; }

.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;
}

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

.container.narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-soft); color: var(--bg); border-color: var(--accent-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-light { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.25); }
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text-soft); border-color: transparent; }
.btn-ghost:hover { color: var(--accent); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--bg-card-hover); }
.btn-large { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 31, 46, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    transition: background var(--transition);
}
.site-header.scrolled { background: rgba(26, 31, 46, 0.98); }

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}
.logo:hover { color: var(--text); }
.logo-text { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.main-nav li { list-style: none; }
.nav-link {
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.98rem;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--accent); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.age-badge { display: flex; align-items: center; }
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    padding: 0.25rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Age Modal ===== */
.age-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 26, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: opacity 0.3s ease;
}
.age-modal-overlay.hidden { opacity: 0; pointer-events: none; }
.age-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    animation: modalIn 0.4s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.age-modal-icon { margin-bottom: 1.25rem; display: flex; justify-content: center; }
.age-modal h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); font-weight: 700; }
.age-modal p { color: var(--text-soft); margin-bottom: 1.75rem; font-size: 0.98rem; }
.age-modal-buttons { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.age-modal-note { color: var(--text-muted); font-size: 0.82rem; }

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 4.5rem 0 7rem;
    background: linear-gradient(180deg, var(--bg) 0%, #1c2235 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 163, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-text { max-width: 600px; }
.hero-tag {
    display: inline-block;
    background: var(--accent-muted);
    color: var(--accent);
    border: 1px solid rgba(201, 163, 106, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--text);
}
.accent { color: var(--accent); }
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    line-height: 1.65;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}
.hero-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
    background: linear-gradient(180deg, #1c2235 0%, var(--bg) 100%);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 163, 106, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0.75rem 0 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.page-hero p {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 680px;
    line-height: 1.6;
}
.back-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color var(--transition);
}
.back-link:hover { color: var(--accent); }

/* ===== Sections ===== */
.section { padding: 4rem 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.section-eyebrow.light { color: var(--accent-soft); }
.section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.85rem;
}
.section-sub {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* ===== Value Cards (Home mid-section) ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: all var(--transition);
}
.value-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--accent-muted);
    border-radius: var(--radius);
    margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text); font-weight: 600; }
.value-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* ===== Games Grid ===== */
.games-section { background: linear-gradient(180deg, var(--bg) 0%, #1c2235 100%); }
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}
.games-grid-large { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}
.game-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.game-card-large { flex-direction: row; }
.game-thumb {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--bg-soft);
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-card:hover .game-thumb img { transform: scale(1.04); }
.game-tag {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: rgba(26, 31, 46, 0.85);
    color: var(--accent);
    backdrop-filter: blur(4px);
    border: 1px solid var(--accent);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.game-body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.game-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text); font-weight: 600; }
.game-body p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 1rem; flex: 1; line-height: 1.55; }
.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.game-meta li {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 0.25rem 0.55rem;
}
.game-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ===== How It Works (Steps) ===== */
.how-section { background: #1c2235; }
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}
.step {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    position: relative;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); font-weight: 600; }
.step p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.55; }

/* ===== About Games Long-form ===== */
.about-games-section .prose { margin-top: 1rem; }
.prose p, .prose-p {
    color: var(--text-soft);
    margin-bottom: 1.1rem;
    line-height: 1.75;
    font-size: 1.02rem;
}
.prose h3 {
    color: var(--text);
    font-size: 1.35rem;
    margin: 2rem 0 0.85rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.prose h2 {
    color: var(--text);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.prose em { color: var(--accent-soft); font-style: italic; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { font-weight: 500; }
.prose ul { margin: 1rem 0 1.25rem 1.25rem; }
.prose ul li {
    color: var(--text-soft);
    margin-bottom: 0.5rem;
    line-height: 1.65;
    list-style: disc;
}

/* ===== Responsible Gambling Banner ===== */
.rg-banner-section { background: linear-gradient(180deg, #1c2235 0%, var(--bg) 100%); }
.rg-banner {
    background: var(--bg-card);
    border: 1px solid var(--accent-dark);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}
.rg-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201, 163, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.rg-banner-text { position: relative; z-index: 2; max-width: 680px; }
.rg-banner h2 { font-size: 1.6rem; margin: 0.5rem 0 0.85rem; color: var(--text); font-weight: 700; }
.rg-banner p { color: var(--text-soft); margin-bottom: 1.5rem; line-height: 1.65; }
.rg-banner-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-list { margin-top: 1.5rem; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; }
.faq-answer p { color: var(--text-soft); line-height: 1.7; }

/* ===== Age Notice (used on game pages) ===== */
.age-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--accent-muted);
    border: 1px solid rgba(201, 163, 106, 0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
    margin-bottom: 2rem;
}
.age-notice .badge-18 { flex-shrink: 0; margin-top: 2px; }
.age-notice p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }
.age-notice-bottom { margin-top: 2.5rem; margin-bottom: 0; }

/* ===== Game Play Section (iframe) ===== */
.game-play-section { padding-top: 2.5rem; }
.game-frame-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}
.game-frame-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.game-frame-header h3 { font-size: 1.1rem; color: var(--text); font-weight: 600; }
.game-frame-coin {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--accent-muted);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(201, 163, 106, 0.3);
}
.game-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg);
}
.game-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.game-frame-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

/* ===== Game Info Grid ===== */
.game-info-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}
.game-info-text h2 {
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.015em;
}
.game-info-text h3 {
    color: var(--text);
    font-size: 1.25rem;
    margin: 2rem 0 0.85rem;
    font-weight: 600;
}
.game-info-text p { color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; }
.feature-list { margin: 1rem 0 1.5rem 1.25rem; }
.feature-list li {
    color: var(--text-soft);
    margin-bottom: 0.65rem;
    line-height: 1.6;
    list-style: disc;
}
.feature-list strong { color: var(--text); }

.game-info-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 90px;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.4rem;
}
.info-card h4 { font-size: 1rem; color: var(--text); margin-bottom: 0.85rem; font-weight: 600; }
.facts-list { display: flex; flex-direction: column; gap: 0.6rem; }
.facts-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-soft);
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--border-soft);
}
.facts-list li:last-child { border-bottom: none; padding-bottom: 0; }
.facts-list li span { color: var(--text-muted); font-size: 0.82rem; }
.info-card-warm { background: var(--accent-muted); border-color: rgba(201, 163, 106, 0.3); }
.info-card-warm h4 { color: var(--accent); }
.info-card-warm p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }

/* ===== Other Games Section ===== */
.other-games-section { background: #1c2235; }
.other-games-section h2 { font-size: 1.5rem; margin-bottom: 1.75rem; color: var(--text); font-weight: 700; }

/* ===== Responsible Gambling Page (help cards, checklists) ===== */
.checklist { margin: 1.25rem 0; }
.checklist li {
    color: var(--text-soft);
    margin-bottom: 0.65rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.45rem;
    width: 18px; height: 18px;
    border: 2px solid var(--accent);
    border-radius: 4px;
}
.commitment-list { margin: 1rem 0 1.5rem 1.25rem; }
.commitment-list li {
    color: var(--text-soft);
    margin-bottom: 0.75rem;
    line-height: 1.65;
    list-style: disc;
}
.commitment-list strong { color: var(--text); font-weight: 600; }

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem;
}
.help-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}
.help-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.help-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.6rem; font-weight: 600; }
.help-card p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.55; }

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}
.contact-list li:hover { border-color: var(--accent); }
.contact-label { color: var(--text-muted); font-size: 0.82rem; letter-spacing: 0.03em; text-transform: uppercase; }
.contact-list a { color: var(--accent); font-weight: 500; font-size: 1.02rem; }

.contact-note {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.4rem;
    margin-top: 1.5rem;
}
.contact-note h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.5rem; font-weight: 600; }
.contact-note p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 90px;
}
.help-mini-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.help-mini-list a { color: var(--accent); font-weight: 500; font-size: 0.95rem; }
.help-mini-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; font-style: italic; }
.contact-closing {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
}
.contact-closing p { color: var(--text-soft); font-size: 1rem; line-height: 1.65; }

.last-updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.last-updated strong { color: var(--text-soft); }

/* ===== Footer ===== */
.site-footer {
    background: #131722;
    border-top: 1px solid var(--border-soft);
    padding: 3rem 0 1.5rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-soft);
}
.logo-light { color: var(--text); }
.footer-tagline {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 1.1rem 0;
    max-width: 380px;
}
.footer-age {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.link-group h4 {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.link-group ul { display: flex; flex-direction: column; gap: 0.55rem; }
.link-group a { color: var(--text-soft); font-size: 0.92rem; transition: color var(--transition); }
.link-group a:hover { color: var(--accent); }

.footer-notice {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-soft);
}
.footer-notice p {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 900px;
}
.footer-notice strong { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
    .hero { padding: 3.5rem 0 6rem; }
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { max-width: 520px; margin: 0 auto; }
    .game-info-grid { grid-template-columns: 1fr; gap: 2rem; }
    .game-info-side { position: static; flex-direction: row; flex-wrap: wrap; }
    .game-info-side .info-card { flex: 1; min-width: 240px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-side { position: static; flex-direction: row; flex-wrap: wrap; }
    .contact-side .info-card { flex: 1; min-width: 240px; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* Mobile */
@media (max-width: 720px) {
    .container { padding: 0 1.1rem; }

    .header-container { height: 64px; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0; right: 0;
        background: rgba(19, 23, 34, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem 1.5rem;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0.5rem; }
    .main-nav li { padding: 0.35rem 0; }
    .nav-link { display: block; padding: 0.6rem 0; font-size: 1.05rem; }
    .nav-link.active::after { display: none; }
    .age-badge { margin-top: 0.5rem; }

    .hero { padding: 2.5rem 0 5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-badge { bottom: -15px; left: 0; padding: 0.65rem 1rem; font-size: 0.82rem; }

    .section { padding: 3rem 0; }
    .section-head { margin-bottom: 2rem; }
    .section-sub { font-size: 0.98rem; }

    .value-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .game-card-large { flex-direction: column; }
    .steps { grid-template-columns: 1fr; }

    .rg-banner { padding: 1.5rem; }
    .rg-banner h2 { font-size: 1.3rem; }
    .rg-banner-buttons { flex-direction: column; }
    .rg-banner-buttons .btn { width: 100%; }

    .game-frame-header { padding: 0.85rem 1rem; }
    .game-frame-header h3 { font-size: 1rem; }

    .help-cards { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small mobile */
@media (max-width: 420px) {
    .container { padding: 0 0.9rem; }
    .hero h1 { font-size: 2rem; }
    .value-card { padding: 1.4rem 1.2rem; }
    .game-body { padding: 1.2rem; }
    .age-notice { padding: 1rem 1.1rem; }
    .age-notice p { font-size: 0.9rem; }
    .footer-links { grid-template-columns: 1fr; }
    .prose h2 { font-size: 1.4rem; }
    .prose h3 { font-size: 1.2rem; }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
