/* ======================================
   SLOTORO CASINO — DESIGN SYSTEM 2026
   Dark premium iGaming aesthetic
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --brand:        #f5a623;
  --brand-dark:   #d4881a;
  --brand-glow:   rgba(245,166,35,0.25);
  --accent:       #7c3aed;
  --accent2:      #06b6d4;
  --bg:           #0a0b0f;
  --bg2:          #111318;
  --bg3:          #1a1d26;
  --surface:      #1e2130;
  --surface2:     #252839;
  --border:       rgba(255,255,255,0.08);
  --border-brand: rgba(245,166,35,0.3);
  --text:         #f0f2f5;
  --text-muted:   #8b92a9;
  --text-dim:     #5a6178;
  --green:        #22c55e;
  --red:          #ef4444;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-brand: 0 0 40px rgba(245,166,35,0.15);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --transition:   0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,11,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo span { color: var(--text); }
.logo-icon { font-size: 1.4rem; }
.nav-links { display: flex; gap: 2px; align-items: center; white-space: nowrap; }
.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }

/* ── HAMBURGER MENU ── */
.menu-toggle {
  display: none; background: transparent; border: 1px solid var(--border);
  color: var(--text); font-size: 1.5rem; cursor: pointer;
  padding: 4px 12px; border-radius: var(--radius-sm); transition: var(--transition);
}
.menu-toggle:hover { background: var(--surface); }

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--surface2);
    padding: 16px; border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-card); border-bottom: 2px solid var(--brand);
    z-index: 200; gap: 8px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 14px; text-align: center; background: rgba(0,0,0,0.15); border-radius: 8px; }
  .nav-links a:hover, .nav-links a.active { background: var(--brand-glow); color: var(--brand); }
}
.nav-cta {
  background: var(--brand); color: #000 !important;
  font-weight: 700; padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  white-space: nowrap; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-cta:hover { background: var(--brand-dark) !important; transform: translateY(-1px); }

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}
.lang-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-toggle:hover {
  background: var(--surface2);
  border-color: var(--border-brand);
}
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(30,33,48,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  padding: 8px;
  z-index: 300;
  flex-direction: column;
  gap: 2px;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-menu a:hover {
  background: var(--brand-glow);
  color: var(--text);
}
.lang-menu a.lang-active {
  background: rgba(245,166,35,0.12);
  color: var(--brand);
  font-weight: 700;
}
.lang-dropdown.open .lang-menu {
  display: flex;
}

@media (max-width: 1024px) {
  .lang-dropdown { width: 100%; }
  .lang-toggle { width: 100%; justify-content: center; font-size: 1.1rem; padding: 14px; background: rgba(0,0,0,0.15); border-radius: 8px; }
  .lang-menu {
    position: static;
    background: rgba(0,0,0,0.2);
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    margin-top: 8px;
    border-radius: 8px;
  }
}

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,166,35,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124,58,237,0.08) 0%, transparent 60%),
    var(--bg);
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23f5a623' fill-opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.12); border: 1px solid var(--border-brand);
  color: var(--brand); font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); /* UX Depth */
}
.hero-badge::before { content: '✦'; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 20px;
}
/* UX Gradient Text */
.hero h1 .highlight { 
  background: linear-gradient(135deg, #f5a623 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 40px rgba(245,166,35,0.2);
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); max-width: 580px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.02em;
  padding: 14px 32px; border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; border: none;
}
/* UX Premium Buttons */
.btn-primary {
  background: linear-gradient(135deg, #f5a623 0%, #d4881a 100%);
  color: #1a1000;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 6px 20px rgba(245,166,35,0.3);
}
.btn-primary:hover { 
  background: linear-gradient(135deg, #ffb732 0%, #e59929 100%);
  transform: translateY(-3px); 
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 28px rgba(245,166,35,0.4); 
}
.btn-ghost {
  background: rgba(30, 33, 48, 0.6); color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { 
  background: rgba(37, 40, 57, 0.8); 
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px); 
}

/* ── QUICK FACTS ── */
.quick-facts {
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 40px 0;
  position: relative;
}
.quick-facts::before {
  content: '⚡ Quick Facts';
  position: absolute; top: -12px; left: 20px;
  background: var(--brand); color: #000;
  font-size: 0.75rem; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
}
.quick-facts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
  margin-top: 8px;
}
.qf-item { display: flex; flex-direction: column; gap: 2px; }
.qf-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.qf-value { font-size: 1rem; font-weight: 700; color: var(--text); }
.qf-value.good { color: var(--green); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--brand);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ── CARDS (UX Glassmorphism) ── */
.card {
  background: rgba(30, 33, 48, 0.4); 
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 4px 20px rgba(0,0,0,0.2);
}
.card:hover { 
  border-color: rgba(245,166,35,0.3); 
  box-shadow: 0 8px 32px rgba(245,166,35,0.08), inset 0 1px 0 rgba(255,255,255,0.05); 
  transform: translateY(-4px); 
}
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; letter-spacing:-0.02em; }
.card p { font-size: 0.9rem; color: var(--text-muted); }

/* Slot Cards */
.slot-card {
  background: rgba(30, 33, 48, 0.4); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 20px;
  transition: all 0.3s ease;
}
.slot-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.slot-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.1);
  min-width: 32px;
}
.slot-icon { font-size: 2.5rem; }
.slot-info { flex: 1; }
.slot-name { font-weight: 700; font-size: 1rem; }
.slot-provider { font-size: 0.8rem; color: var(--text-dim); }
.slot-meta { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.slot-tag {
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
}
.tag-rtp { background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.tag-vol { background: rgba(245,166,35,0.12); color: var(--brand); border: 1px solid rgba(245,166,35,0.2); }

/* ── TABLES (UX Premium Dashboard Look) ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05); background: rgba(20,22,30,0.5); }
table { width: 100%; border-collapse: separate; border-spacing: 0; }
thead th { background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05); }
th {
  text-align: left; padding: 16px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-dim); white-space: nowrap;
}
td { padding: 16px; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(245,166,35,0.03); }
.td-good { color: var(--green); font-weight: 600; }
.td-warn { color: var(--brand); font-weight: 600; }
.td-icon { font-size: 1.1rem; }

/* ── HOW-TO STEPS ── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand) 0%, #d4881a 100%); color: #000;
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(245,166,35,0.3);
}
.step-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 0.88rem; color: var(--text-muted); }

/* ── FAQ (UX Slide & Glow) ── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(30, 33, 48, 0.4); border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-q {
  padding: 18px 20px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; letter-spacing:-0.01em;
  transition: all var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.02); color: #fff; }
.faq-q::after { content: '+'; color: var(--brand); font-size: 1.4rem; font-weight: 300; transition: transform 0.3s ease; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] { border-color: rgba(245,166,35,0.2); background: rgba(30,33,48,0.7); }
.faq-a { padding: 0 20px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.trust-item strong { color: var(--green); }
.trust-icon { font-size: 1.2rem; }

/* ── PAYMENT BADGES ── */
.pay-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.pay-badge {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 18px;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}

/* ── SECTION HEADING ── */
.section-heading { margin-bottom: 40px; }
.section-heading h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.5px;
}
.section-heading p { color: var(--text-muted); margin-top: 8px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.8rem; color: var(--text-dim);
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  padding: 12px 0;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-sep { opacity: 0.4; }

/* ── ALERT BLOCK ── */
.alert {
  border-radius: var(--radius-sm); padding: 24px;
  font-size: 0.95rem; display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  border-left: 4px solid;
}
.alert-info { background: rgba(6,182,212,0.08); border-color: var(--accent2); color: var(--text); }
.alert-info h3 { color: var(--accent2); }
.alert-warn { background: rgba(245,166,35,0.08); border-color: var(--brand); color: var(--text); }
.alert-success { background: rgba(34,197,94,0.08); border-color: var(--green); color: var(--text); }

/* ── RESPONSIBLE GAMING ── */
.rg-bar {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 20px;
  font-size: 0.82rem; color: var(--text-dim);
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.rg-bar a { color: var(--text-dim); text-decoration: underline; }
.rg-badge { font-weight: 700; color: var(--text-muted); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  font-size: 0.8rem; color: var(--text-dim); text-align: center; line-height: 1.8;
}
.footer-logo { text-align: center; margin-bottom: 12px; }

/* ── RESPONSIBLE GAMBLING DISCLAIMER ── */
.rg-disclaimer {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
  text-align: center;
}
.rg-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.rg-disclaimer strong {
  color: var(--red);
}
.rg-disclaimer a {
  color: var(--brand);
  text-decoration: underline;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, rgba(124,58,237,0.08) 100%);
  border: 1px solid var(--border-brand); border-radius: 20px;
  padding: 56px; text-align: center;
}
.cta-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); margin-bottom: 28px; }

/* ── GEO SWITCHER ── */
.geo-switcher {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.geo-btn {
  padding: 6px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
  transition: all var(--transition); cursor: pointer;
}
.geo-btn:hover, .geo-btn.active { background: var(--brand); color: #000; border-color: var(--brand); }

/* ── GAME CARDS WITH IMAGES ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.game-card:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}
.game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.game-card:hover img {
  transform: scale(1.08); /* UX Image Zoom */
}
.game-card-body {
  padding: 12px 14px;
}
.game-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.game-card-cta {
  display: block;
  text-align: center;
  background: var(--brand);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.game-card-cta:hover {
  background: var(--brand-dark);
  color: #000;
}
.game-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Full-width slot row (with image) */
.slot-card-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all var(--transition);
}
.slot-card-img:hover { border-color: var(--border-brand); transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.slot-card-img .slot-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: cover;
}
.slot-card-img .slot-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--text-dim); min-width: 40px;
  text-align: center; padding: 0 8px;
  flex-shrink: 0;
}
.slot-card-img .slot-info { flex: 1; padding: 14px 16px 14px 0; }

/* ── COMPARISON TABLE ── */
.compare-winner { background: rgba(245,166,35,0.06); }
.compare-brand { font-weight: 700; color: var(--brand); }

/* Mobile Sticky CTA Base (Hidden on Desktop) */
.mobile-sticky-cta { display: none; }

/* ── MOBILE ADAPTIVE ── */
@media (max-width: 850px) {
  /* Layout Adjustments */
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  
  /* Typography */
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .section-heading h2 { font-size: 1.8rem; }
  
  /* Navbar overrides removed to prevent conflicts with 1024px hamburger logic */
  
  /* Breadcrumbs */
  .breadcrumb { justify-content: center; text-align: center; }
  
  /* Overriding Inline Grid Constraints for Text Layouts */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  /* Elements */
  .hero { padding: 60px 0 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-section { padding: 36px 24px; }
  .trust-bar { gap: 16px; }
  
  /* Tables horizontally scrollable */
  .table-wrap { overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  table { min-width: 600px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-col { margin-bottom: 8px; }
  .rg-bar { flex-direction: column; text-align: center; }
  
  /* Steps/HowTo */
  .step { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Games Grid */
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .game-card-name { font-size: 0.8rem; }
  
  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: flex; justify-content: center; align-items: center;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: rgba(10,11,15,0.95); backdrop-filter: blur(12px);
    padding: 12px 20px; border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  }
  body { padding-bottom: 76px; } /* Prevent hiding footer content under standard sticky */
}

@media (max-width: 480px) {
  /* Smaller screens */
  .hero h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-facts-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 12px 20px; }
  
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .game-card-name { font-size: 0.8rem; }
  .slot-card { flex-direction: column; text-align: center; }
  .slot-meta { justify-content: center; }
}
