:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #6d28d9;
  --color-primary-soft: #ede9fe;
  --color-secondary: #ec4899;
  --color-accent: #f59e0b;
  --color-bg: #020617;
  --color-bg-soft: #0f172a;
  --color-surface: #1e293b;
  --color-surface-strong: #334155;
  --color-card: #111827;
  --color-card-alt: #1e1b4b;
  --color-border: rgba(124,58,237,0.25);
  --color-border-strong: rgba(124,58,237,0.5);
  --color-text: #f1f5f9;
  --color-text-soft: #cbd5e1;
  --color-text-muted: #94a3b8;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-footer-bg: #020617;
  --color-footer-text: #94a3b8;
  --gradient-hero: linear-gradient(135deg, #0f0c29, #1a0533, #020617);
  --gradient-button: linear-gradient(135deg, #7c3aed, #ec4899);
  --gradient-card: linear-gradient(145deg, rgba(124,58,237,0.15), rgba(236,72,153,0.08));
  --gradient-cta: linear-gradient(135deg, #1e1b4b, #312e81);
  --shadow-header: 0 2px 24px rgba(124,58,237,0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 8px 40px rgba(124,58,237,0.25);
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-card: 16px;
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Bengali", sans-serif;
  --container-max: 1200px;
  --header-h: 72px;
  --motion-normal: 0.3s;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; background: var(--color-bg); color: var(--color-text); font-family: var(--font-base); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--motion-normal); }
a:hover { color: var(--color-primary); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
h1,h2,h3,h4 { line-height: 1.3; margin: 0 0 16px; }
p { margin: 0 0 16px; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(2,6,23,0.97); border-bottom: 1px solid var(--color-border); backdrop-filter: blur(12px); transition: box-shadow var(--motion-normal); }
.site-header.scrolled { box-shadow: var(--shadow-header); }
.header-inner { width: 100%; max-width: none; padding: 0 clamp(10px,1.2vw,20px); min-height: var(--header-h); display: flex; align-items: center; gap: clamp(10px,1vw,18px); }
.brand-wrap { flex: 0 0 auto; margin-right: clamp(4px,.8vw,14px); }
.site-logo { display: block; width: auto; height: clamp(32px,3vw,42px); max-width: clamp(118px,10vw,168px); object-fit: contain; }
.primary-nav { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(6px,.72vw,14px); white-space: nowrap; overflow: visible; }
.primary-nav a { flex: 0 1 auto; min-width: 0; padding: 9px clamp(6px,.65vw,12px); font-size: clamp(13px,.84vw,15px); line-height: 1; white-space: nowrap; color: var(--color-text-soft); border-radius: var(--radius-sm); transition: all var(--motion-normal); font-weight: 500; }
.primary-nav a:hover, .primary-nav a.active { color: #fff; background: var(--gradient-card); }
.header-actions { flex: 0 0 auto; margin-left: auto; display: flex; align-items: center; justify-content: flex-end; gap: clamp(6px,.6vw,10px); white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; cursor: pointer; transition: all var(--motion-normal); border: none; white-space: nowrap; text-decoration: none; }
.btn-login { background: transparent; color: var(--color-text); border: 1px solid var(--color-border-strong); }
.btn-login:hover { background: rgba(124,58,237,0.15); color: #fff; }
.btn-register { background: var(--gradient-button); color: #fff; box-shadow: 0 0 12px rgba(124,58,237,0.4); }
.btn-register:hover { opacity: 0.9; box-shadow: 0 0 20px rgba(236,72,153,0.4); }
.btn-primary, .btn-primary-lg { background: var(--gradient-button); color: #fff; border-radius: var(--radius-pill); box-shadow: 0 4px 16px rgba(124,58,237,0.3); }
.btn-primary:hover, .btn-primary-lg:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-primary-lg { padding: 14px 32px; font-size: 16px; }
.btn-outline, .btn-outline-lg { background: transparent; color: var(--color-text); border: 2px solid var(--color-primary); border-radius: var(--radius-pill); }
.btn-outline:hover, .btn-outline-lg:hover { background: var(--color-primary); color: #fff; }
.btn-outline-lg { padding: 14px 32px; font-size: 16px; }
.btn-text { background: none; color: var(--color-primary); padding: 10px 16px; }
.btn-text:hover { text-decoration: underline; }
.btn-block { width: 100%; text-align: center; }
.nav-toggle { display: none; flex: 0 0 40px; width: 40px; height: 40px; background: none; border: 1px solid var(--color-border); border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--color-text); border-radius: 2px; transition: all var(--motion-normal); }
.mobile-nav { display: none; position: fixed; left: 12px; right: 12px; top: 80px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 16px; max-height: calc(100vh - 100px); overflow-y: auto; flex-direction: column; gap: 2px; z-index: 999; box-shadow: var(--shadow-card); }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 14px 16px; border-radius: var(--radius-sm); color: var(--color-text-soft); font-weight: 500; transition: all var(--motion-normal); }
.mobile-nav a:hover { background: var(--gradient-card); color: #fff; }

@media (max-width: 1180px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { padding: 0 clamp(8px,2.4vw,14px); gap: clamp(6px,1.8vw,10px); justify-content: flex-start; }
  .brand-wrap { flex: 0 1 auto; margin-right: 0; }
  .site-logo { height: clamp(30px,8vw,40px); max-width: clamp(104px,27vw,138px); }
  .header-actions { margin-left: auto; gap: clamp(5px,1.6vw,8px); }
  .header-actions .btn { min-height: 40px; padding: 8px clamp(10px,2.6vw,14px); font-size: clamp(12px,3.2vw,14px); }
}
@media (max-width: 375px) {
  .header-inner { padding: 0 8px; gap: 6px; }
  .site-logo { max-width: 104px; }
  .header-actions .btn { min-height: 38px; padding: 6px 9px; font-size: 12px; }
  .nav-toggle { flex-basis: 38px; width: 38px; height: 38px; }
}

/* ===== HERO ===== */
.home-hero { background: var(--gradient-hero); min-height: 80vh; display: flex; align-items: center; padding: 80px 0 60px; position: relative; overflow: hidden; }
.home-hero::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%); border-radius: 50%; }
.home-hero .hero-content { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: var(--gradient-card); border: 1px solid var(--color-primary); color: #c4b5fd; border-radius: var(--radius-pill); padding: 6px 18px; font-size: 13px; margin-bottom: 20px; letter-spacing: 1px; }
.home-hero h1 { font-size: clamp(1.8rem,5vw,3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
.hero-lead { font-size: clamp(15px,1.8vw,18px); color: var(--color-text-soft); line-height: 1.8; max-width: 720px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; color: var(--color-text-muted); font-size: 14px; }
.hero-visual { display: none; }
@media (min-width: 900px) { .home-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; padding: 0 40px; } .hero-visual { display: block; } }

/* ===== SECTIONS ===== */
section { padding: clamp(48px,6vw,80px) 0; }
.section-lead { font-size: clamp(15px,1.6vw,17px); color: var(--color-text-soft); max-width: 760px; margin: 0 auto 40px; line-height: 1.8; }
h2 { font-size: clamp(22px,3vw,36px); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: clamp(18px,2vw,24px); font-weight: 600; margin: 28px 0 12px; }

/* ===== TRUST STRIP ===== */
.home-trust-strip { background: var(--color-surface); padding: 32px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
.trust-item strong { display: block; font-size: clamp(24px,3vw,36px); color: var(--color-primary); font-weight: 800; }
.trust-item span { font-size: 14px; color: var(--color-text-muted); }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px; transition: all var(--motion-normal); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--color-primary); }
.feature-icon { width: 52px; height: 52px; background: var(--gradient-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; color: var(--color-primary); }

/* Icon styles using CSS pseudo-elements */
.icon-shield::before { content: "🛡️"; font-style: normal; font-size: 24px; }
.icon-zap::before { content: "⚡"; font-style: normal; font-size: 24px; }
.icon-gift::before { content: "🎁"; font-style: normal; font-size: 24px; }
.icon-headphones::before { content: "🎧"; font-style: normal; font-size: 24px; }
.icon-users::before { content: "👥"; font-style: normal; font-size: 16px; }
.icon-clock::before { content: "🕐"; font-style: normal; font-size: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--color-text-soft); font-size: 15px; line-height: 1.7; }

/* ===== GAME GRID ===== */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.game-card { display: block; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; transition: all var(--motion-normal); text-decoration: none; }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--color-secondary); }
.game-thumb { width: 100%; height: 200px; object-fit: cover; border-radius: 0; }
.game-info { padding: 20px; }
.game-info h3 { font-size: 18px; margin-bottom: 8px; }
.game-info p { color: var(--color-text-soft); font-size: 14px; }
.game-tag { display: inline-block; background: var(--gradient-button); color: #fff; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; margin-top: 8px; }

/* ===== STEPS ===== */
.steps-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.step-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px; position: relative; }
.step-num { width: 40px; height: 40px; background: var(--gradient-button); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--color-text-soft); font-size: 15px; line-height: 1.7; }

/* ===== PLANS ===== */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.plan-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 32px; text-align: center; position: relative; transition: all var(--motion-normal); }
.plan-card:hover { border-color: var(--color-primary); }
.plan-featured { border-color: var(--color-primary); box-shadow: 0 0 30px rgba(124,58,237,0.2); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-button); color: #fff; padding: 4px 16px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; white-space: nowrap; }
.plan-header h3 { font-size: 22px; margin-bottom: 4px; }
.plan-price { font-size: 28px; font-weight: 800; color: var(--color-primary); margin-bottom: 20px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; }
.plan-features li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--color-text-soft); font-size: 15px; }

/* ===== REVIEWS ===== */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px; }
.review-stars { color: var(--color-accent); font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 15px; line-height: 1.7; color: var(--color-text-soft); font-style: italic; }
.review-author { margin-top: 12px; font-weight: 600; color: var(--color-text-muted); font-size: 14px; }

/* ===== CONTENT ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { font-size: 16px; line-height: 1.9; color: var(--color-text-soft); }
.prose h2 { margin-top: 40px; }
.content-block { margin-bottom: 40px; }
.content-img { margin: 24px 0; }
.content-img img { border-radius: var(--radius-md); }
.content-flow { max-width: 820px; margin: 0 auto; }
.content-flow p { font-size: 16px; line-height: 1.9; color: var(--color-text-soft); }

/* ===== CTA ===== */
.home-final-cta, .game-cta-section, .games-cta-section, .app-cta-section, .register-final-cta, .faq-cta-section {
  background: var(--gradient-cta); text-align: center; border-top: 1px solid var(--color-border); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.cta-note { font-size: 13px; color: var(--color-text-muted); }
.cta-note a { color: var(--color-primary); text-decoration: underline; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a::after { content: "/"; margin-left: 8px; color: var(--color-text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: var(--color-card); }
.faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; background: none; border: none; color: var(--color-text); font-size: 16px; font-weight: 600; cursor: pointer; text-align: left; font-family: var(--font-base); }
.faq-toggle:hover { background: rgba(124,58,237,0.08); }
.faq-icon { transition: transform var(--motion-normal); flex-shrink: 0; margin-left: 12px; }
.faq-toggle[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; }
.faq-answer p { color: var(--color-text-soft); line-height: 1.8; }

/* ===== AUTH PAGES ===== */
.auth-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .auth-layout { grid-template-columns: 1fr 1fr; } }
.auth-form-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 36px; }
.auth-lead { color: var(--color-text-soft); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: var(--color-text-soft); }
.form-group input { width: 100%; padding: 14px 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm); color: var(--color-text); font-size: 15px; font-family: var(--font-base); transition: border-color var(--motion-normal); }
.form-group input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.form-note { text-align: center; margin-top: 16px; font-size: 14px; color: var(--color-text-muted); }
.form-note a { color: var(--color-primary); }
.auth-security-note { margin-top: 20px; padding: 16px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-sm); }
.auth-security-note p { font-size: 13px; color: var(--color-success); margin: 0; }
.auth-visual { border-radius: var(--radius-card); margin-bottom: 20px; }
.auth-trust-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 24px; }
.auth-trust-card h3 { font-size: 18px; margin-bottom: 12px; }
.auth-trust-card ul { padding-left: 20px; }
.auth-trust-card li { padding: 6px 0; color: var(--color-text-soft); font-size: 15px; }
.auth-help-panel { margin-top: 20px; padding: 16px; background: var(--color-surface); border-radius: var(--radius-sm); }
.auth-step-list { background: var(--color-surface); border-radius: var(--radius-md); padding: 24px; }
.auth-step-list h3 { font-size: 18px; margin-bottom: 12px; }

/* ===== GAME PAGES ===== */
.game-intro-section { background: var(--gradient-hero); padding: 80px 0 48px; position: relative; overflow: hidden; }
.game-intro-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.game-intro-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 768px) { .game-intro-grid { grid-template-columns: 1fr 1fr; } }
.game-intro-text h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; line-height: 1.25; }
.game-intro-text .lead { font-size: clamp(15px, 1.6vw, 17px); color: var(--color-text-soft); line-height: 1.85; }
.game-hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.game-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.game-content-section .prose h2 { position: relative; padding-bottom: 14px; margin-bottom: 20px; }
.game-content-section .prose h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--gradient-button); border-radius: 2px; }
.game-faq-section { background: var(--color-bg-soft); border-top: 1px solid var(--color-border); }
.game-faq-section h2 { text-align: center; margin-bottom: 32px; }

/* ===== GAMES LISTING ===== */
.games-hero-section { background: var(--gradient-hero); padding: 80px 0 48px; }
.games-filter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.game-listing-card { display: grid; grid-template-columns: 140px 1fr; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; transition: all var(--motion-normal); text-decoration: none; }
.game-listing-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); border-color: var(--color-secondary); }
.game-listing-thumb { width: 140px; height: 140px; object-fit: cover; border-radius: 0; }
.game-listing-info { padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.game-listing-info h3 { font-size: 17px; margin-bottom: 6px; }
.game-listing-info p { font-size: 13px; color: var(--color-text-soft); line-height: 1.6; margin-bottom: 8px; }
.game-rtp { font-size: 12px; color: var(--color-success); font-weight: 600; }

/* ===== APP PAGE ===== */
.app-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .app-hero-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.app-feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.steps-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step-item { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 24px; }

/* ===== POLICY PAGES ===== */
.policy-intro-section { background: var(--gradient-hero); padding: 80px 0 40px; }
.policy-updated { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; }
.policy-prose { max-width: 820px; margin: 0 auto; }
.policy-prose h2 { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--color-border); }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-footer-bg); border-top: 1px solid var(--color-border); padding: 60px 0 0; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { margin-bottom: 16px; border-radius: var(--radius-sm); }
.footer-brand p { color: var(--color-footer-text); font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 16px; margin-bottom: 16px; color: var(--color-text); }
.footer-col a { display: block; padding: 5px 0; color: var(--color-footer-text); font-size: 14px; transition: color var(--motion-normal); }
.footer-col a:hover { color: var(--color-primary); }
.footer-contact { color: var(--color-footer-text); font-size: 13px; margin-top: 12px; }
.footer-bottom { border-top: 1px solid var(--color-border); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--color-text-muted); margin: 0; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== 404 ===== */
.error-section { min-height: 50vh; display: flex; align-items: center; }
.error-section h1 { font-size: clamp(72px,15vw,144px); color: var(--color-primary); margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: clamp(36px,5vw,56px) 0; }
  .game-grid { grid-template-columns: 1fr; }
  .game-listing-card { grid-template-columns: 100px 1fr; }
  .game-listing-thumb { width: 100px; height: 100px; }
}

/* ===== DEGRADE ===== */
.swiper:not(.swiper-initialized) .swiper-slide { display: inline-block; }
[data-aos] { opacity: 1 !important; transform: none !important; }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
