/*
Theme Name: Velobet Casino Theme
Theme URI: https://mintcream-salamander-752361.hostingersite.com
Author: SEO Satellite Factory
Description: Velobet Casino satellite — Near-black background with vivid lime-green CTAs and Poppins typography. Sharp 6px corners. High-contrast monochrome with the lime as the only saturated colour..
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Tags: casino, multilingual, dark-theme, responsive
Text Domain: satellite
*/

:root {
  /* Brand palette — accent */
  --cyan: #95f400;
  --cyan-hover: #aaf633;
  --cyan-dim: rgba(149,244,0,0.15);
  --cyan-glow: rgba(149,244,0,0.4);
  --cyan-ghost: rgba(149,244,0,0.08);

  /* Accent alpha variants (for gradients, glows, borders) */
  --accent-alpha-002: rgba(149,244,0,0.02);
  --accent-alpha-003: rgba(149,244,0,0.03);
  --accent-alpha-004: rgba(149,244,0,0.04);
  --accent-alpha-005: rgba(149,244,0,0.05);
  --accent-alpha-006: rgba(149,244,0,0.06);
  --accent-alpha-008: rgba(149,244,0,0.08);
  --accent-alpha-010: rgba(149,244,0,0.1);
  --accent-alpha-015: rgba(149,244,0,0.15);
  --accent-alpha-020: rgba(149,244,0,0.2);
  --accent-alpha-025: rgba(149,244,0,0.25);
  --accent-alpha-030: rgba(149,244,0,0.3);
  --accent-alpha-035: rgba(149,244,0,0.35);
  --accent-alpha-040: rgba(149,244,0,0.4);
  --accent-alpha-050: rgba(149,244,0,0.5);
  --accent-alpha-060: rgba(149,244,0,0.6);

  /* Secondary accent */
  --red: #ff3030;
  --red-ghost: rgba(255,48,48,0.12);
  --accent2-alpha-004: rgba(255,48,48,0.04);
  --accent2-alpha-005: rgba(255,48,48,0.05);
  --accent2-alpha-012: rgba(255,48,48,0.12);

  /* Tertiary accent */
  --gold: #e62b3a;
  --gold-ghost: rgba(230,43,58,0.08);
  --accent3-alpha-004: rgba(230,43,58,0.04);
  --accent3-alpha-006: rgba(230,43,58,0.06);
  --accent3-alpha-008: rgba(230,43,58,0.08);
  --accent3-alpha-030: rgba(230,43,58,0.3);
  --accent3-alpha-035: rgba(230,43,58,0.35);

  /* Surfaces */
  --bg: #11110f;
  --bg-up: #181816;
  --bg-card: #1e242b;
  --bg-card-alt: #292f36;
  --border: #2a2a26;
  --border-hi: rgba(255,255,255,0.15);
  --bg-alpha-082: rgba(17,17,15,0.82);
  --bg-alpha-092: rgba(17,17,15,0.92);
  --bg-alpha-097: rgba(17,17,15,0.97);

  /* Text */
  --text: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.45);
  --text-muted: rgba(255,255,255,0.35);
  --text-on-cyan: #11110f;
  --white: #eaeaea;

  /* Typography */
  --sans: 'Poppins', system-ui, sans-serif;

  /* Scale */
  --fs-xs: .72rem;
  --fs-sm: .82rem;
  --fs-base: .95rem;
  --fs-lg: 1.1rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.6rem;
  --fs-hero: clamp(2.4rem, 5.5vw, 4.2rem);

  /* Spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Radii */
  --r: 6px;
  --r-lg: 12px;

  /* Layout */
  --max-w: 1200px;
  --narrow: 860px;
  --header-h: 64px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-cyan: 0 4px 20px rgba(149,244,0,0.4);
  --shadow-cyan-lg: 0 8px 32px rgba(149,244,0,0.4);

  /* Glow effects */
  --glow-sm: 0 0 10px rgba(149,244,0,0.3);
  --glow-md: 0 0 20px rgba(149,244,0,0.25), 0 0 40px rgba(149,244,0,0.1);
  --glow-lg: 0 0 30px rgba(149,244,0,0.4), 0 0 60px rgba(149,244,0,0.15);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 220ms ease;
  --t-slow: 400ms ease;
}

/* ============================================================
   SATELLITE THEME ENGINE — style-base.css
   Universal CSS. Brand-specific :root variables are injected by
   build.js from site-config.json design tokens.
   ============================================================ */

/* :root { ... } — GENERATED BY build.js, prepended to this file */


/* ============================================================ RESET + BASE */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--t-fast), text-shadow var(--t-fast); }
a:hover { text-shadow: var(--glow-sm); }
img { max-width: 100%; height: auto; display: block; }
strong { color: var(--white); font-weight: 600; }
p { margin: 0 0 var(--sp-4); color: var(--text-dim); }

h1,h2,h3,h4 {
  font-family: var(--sans); font-weight: 700;
  line-height: 1.2; color: var(--white); letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-hero); margin-bottom: var(--sp-5); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 var(--sp-5); }
h3 { font-size: var(--fs-xl); margin: var(--sp-8) 0 var(--sp-3); font-weight: 700; }
h4 { font-size: var(--fs-lg); margin: var(--sp-6) 0 var(--sp-2); font-weight: 600; }

ul, ol { padding-left: 1.2em; margin: 0 0 var(--sp-4); }
li { margin-bottom: var(--sp-2); color: var(--text-dim); }

hr { border: 0; height: 1px; background: var(--border); margin: var(--sp-10) 0; }

code {
  font-size: .88em;
  padding: 2px 8px; border-radius: 3px;
  background: var(--cyan-ghost); color: var(--cyan);
}

::selection { background: var(--cyan); color: var(--bg); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--cyan); color: var(--bg); padding: 8px 16px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 var(--sp-6); }
.page-content { padding-top: var(--header-h); min-height: 60vh; }

/* ============================================================ HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--bg-alpha-092);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.5); }

.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--sp-4);
}

.site-logo {
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none;
}
.site-logo .logo-img {
  height: 30px; width: auto; display: block;
  filter: brightness(1.05); transition: filter var(--t-fast);
}
.site-logo:hover .logo-img { filter: brightness(1.2); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 7px 13px; border-radius: var(--r);
  color: var(--text-dim); font-size: var(--fs-sm); font-weight: 500;
  white-space: nowrap;
  transition: all var(--t-fast);
}
.main-nav a:hover, .main-nav a.is-active {
  color: var(--white); background: rgba(255,255,255,0.05);
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switcher { position: relative; display: none; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-dim); font-size: var(--fs-sm); cursor: pointer;
  font-family: var(--sans); transition: all var(--t-fast);
}
.lang-toggle:hover { border-color: var(--cyan); color: var(--white); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 6px; min-width: 150px;
  box-shadow: var(--shadow-md); list-style: none; margin: 0;
  display: none; z-index: 200;
}
.lang-switcher.is-open .lang-menu { display: block; }
.lang-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 4px; font-size: var(--fs-sm);
  color: var(--text-dim);
}
.lang-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.lang-menu a.is-current { color: var(--cyan); font-weight: 600; }

/* Mobile toggle */
.btn-mobile {
  display: flex; flex-direction: column; justify-content: center;
  width: 42px; height: 42px; background: transparent;
  border: 1px solid var(--border); border-radius: var(--r);
  cursor: pointer; padding: 0;
}
.btn-mobile span {
  display: block; width: 20px; height: 2px; background: var(--white);
  margin: 3px auto; transition: transform var(--t-fast), opacity var(--t-fast);
}
.btn-mobile[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.btn-mobile[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.btn-mobile[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-up); border-top: 1px solid var(--border);
  z-index: 99; transform: translateY(-110%); transition: transform var(--t-base);
  overflow-y: auto; padding: var(--sp-6) var(--sp-6) var(--sp-16);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer a {
  display: block; padding: var(--sp-4) var(--sp-5);
  color: var(--white); font-size: var(--fs-lg); font-weight: 500;
  border-radius: var(--r); border: 1px solid transparent;
}
.mobile-drawer a:hover, .mobile-drawer a.is-active {
  background: var(--bg-card); border-color: var(--border);
}
.mobile-drawer .drawer-lang {
  margin-top: var(--sp-8); padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.mobile-drawer .drawer-lang-label {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); margin-bottom: var(--sp-3); padding: 0 var(--sp-5);
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 26px; font-family: var(--sans);
  font-size: var(--fs-base); font-weight: 700; line-height: 1.2;
  border: none; border-radius: var(--r); cursor: pointer;
  text-decoration: none; transition: all var(--t-base);
  min-height: 46px; white-space: nowrap;
}
.btn-cyan {
  background: var(--cyan); color: var(--text-on-cyan);
  box-shadow: var(--shadow-cyan);
}
.btn-cyan:hover {
  background: var(--cyan-hover); color: var(--text-on-cyan);
  transform: translateY(-2px); box-shadow: var(--shadow-cyan-lg);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border-hi);
}
.btn-outline:hover {
  border-color: var(--cyan); color: var(--cyan);
  background: var(--cyan-ghost);
}
.btn-lg { padding: 14px 36px; font-size: 1rem; min-height: 52px; text-transform: uppercase; letter-spacing: 0.5px; }
.header-cta { padding: 8px 20px; font-size: var(--fs-sm); min-height: 38px; }

/* ============================================================ SECTION HEADINGS */
.section-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: var(--sp-6); padding-bottom: var(--sp-3);
  position: relative;
}
.section-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 48px; height: 3px; background: var(--cyan); border-radius: 2px;
}

/* Legacy section labels (kept for backward compat) */
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--sp-4);
}
.section-label .line { flex: 1; height: 1px; background: var(--border); }
.section-label .text {
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--cyan);
  white-space: nowrap;
}

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 48px) var(--sp-6) var(--sp-20);
  overflow: hidden;
}

/* Cosmic background layers */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 30%, var(--accent-alpha-006) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, var(--accent3-alpha-004) 0%, transparent 50%),
    var(--bg);
}
.hero-stars {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.6) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.5) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 15% 85%, var(--accent-alpha-040) 50%, transparent 50%),
    radial-gradient(1px 1px at 45% 45%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 15%, var(--accent-alpha-030) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 75%, rgba(255,255,255,0.45) 50%, transparent 50%),
    radial-gradient(1px 1px at 25% 35%, var(--accent3-alpha-035) 50%, transparent 50%);
  animation: twinkle 8s ease-in-out infinite alternate;
}
@keyframes twinkle { 0% { opacity: 0.6; } 100% { opacity: 1; } }

/* Floating cosmic orbs */
.cosmic-orb {
  position: absolute; border-radius: 50%; filter: blur(40px); z-index: 1; pointer-events: none;
}
.orb-1 { width: 200px; height: 200px; background: var(--accent-alpha-008); top: 15%; left: -5%; animation: float 12s ease-in-out infinite; }
.orb-2 { width: 150px; height: 150px; background: var(--accent3-alpha-006); bottom: 20%; right: -3%; animation: float 16s ease-in-out infinite reverse; }
.orb-3 { width: 100px; height: 100px; background: var(--accent2-alpha-005); top: 40%; right: 10%; animation: float 10s ease-in-out infinite 3s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.1); }
  50% { transform: translate(-10px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.05); }
}

/* Cube motif decorations */
.hero-cube {
  position: absolute; z-index: 1; pointer-events: none;
  border: 2px solid var(--accent-alpha-015);
  border-radius: 6px; opacity: 0.4;
}
.cube-1 { width: 60px; height: 60px; top: 20%; left: 5%; transform: rotate(35deg); animation: cubeFloat 14s ease-in-out infinite; }
.cube-2 { width: 40px; height: 40px; top: 55%; right: 8%; transform: rotate(55deg); animation: cubeFloat 18s ease-in-out infinite reverse; }
.cube-3 { width: 80px; height: 80px; bottom: 15%; left: 15%; transform: rotate(20deg); animation: cubeFloat 12s ease-in-out infinite 2s; }
@keyframes cubeFloat {
  0%, 100% { transform: rotate(35deg) translate(0, 0); }
  33% { transform: rotate(45deg) translate(15px, -20px); }
  66% { transform: rotate(25deg) translate(-10px, 15px); }
}

/* Particle motif decoration */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, var(--accent-alpha-040) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 40% 60%, var(--accent-alpha-030) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 20%, var(--accent-alpha-035) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 50%, var(--accent-alpha-020) 50%, transparent 50%),
    radial-gradient(1px 1px at 35% 80%, var(--accent-alpha-040) 50%, transparent 50%);
  animation: particleDrift 20s linear infinite;
}
@keyframes particleDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.hero-inner {
  max-width: var(--narrow); text-align: center;
  position: relative; z-index: 3;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; border-radius: 50px;
  background: var(--cyan-dim); border: 1px solid var(--accent-alpha-020);
  font-size: var(--fs-xs); font-weight: 600; color: var(--cyan);
  margin-bottom: var(--sp-6); letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem); color: var(--text-dim);
  margin-bottom: var(--sp-8); max-width: 560px;
  margin-left: auto; margin-right: auto; font-weight: 300;
}
.hero-stats {
  display: flex; justify-content: center; gap: var(--sp-8);
  margin-bottom: var(--sp-10); flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 1.45rem; font-weight: 700; color: var(--cyan);
}
.hero-stat .label {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); margin-top: 2px;
}

.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp-6); }
.hero-legal {
  font-size: .68rem; color: var(--text-muted); letter-spacing: .06em;
  text-transform: uppercase;
}

/* Page hero (subpages — compact) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--sp-12)) var(--sp-6) var(--sp-10);
  background: var(--bg-up);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, var(--accent-alpha-006), transparent 50%),
    radial-gradient(circle at 20% 80%, var(--accent2-alpha-004), transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); margin-bottom: var(--sp-4); }
.page-hero .hero-intro {
  max-width: 680px; margin: 0 auto var(--sp-6);
  color: var(--text-dim); font-size: var(--fs-lg);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-4);
}
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--cyan); }

/* ============================================================ CONTENT SECTIONS */
.content-section {
  padding: var(--sp-16) 0; border-bottom: 1px solid var(--border);
}
.content-section:nth-child(even) { background: rgba(255,255,255,0.015); }
.content-section:last-of-type { border-bottom: 0; }
.section-inner {
  max-width: var(--narrow); margin: 0 auto; padding: 0 var(--sp-6);
}

/* Section heading underline */
.content-section h2 { position: relative; padding-bottom: var(--sp-3); }
.content-section h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 48px; height: 3px; background: var(--cyan); border-radius: 2px;
}

/* ============================================================ CARDS */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: border-color var(--t-base), transform var(--t-base);
}
.card:hover { border-color: var(--border-hi); }

/* Pros/Cons dual cards */
.procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); margin: var(--sp-8) 0; }
.procon-card {
  padding: var(--sp-6); border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
}
.procon-card.pros { border-top: 3px solid var(--cyan); }
.procon-card.cons { border-top: 3px solid var(--red); }
.procon-card h3 {
  margin-top: 0; font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: .08em;
}
.procon-card.pros h3 { color: var(--cyan); }
.procon-card.cons h3 { color: var(--red); }
.procon-card ul { list-style: none; padding: 0; margin: 0; }
.procon-card li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  font-size: var(--fs-sm); color: var(--text-dim);
}
.procon-card.pros li::before,
.procon-card.cons li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg);
}
.procon-card.pros li::before { background: var(--cyan); }
.procon-card.cons li::before { background: var(--red); }

/* Rating bar */
.rating-bar {
  display: flex; align-items: center; gap: 20px;
  padding: var(--sp-6); border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  margin-bottom: var(--sp-8); flex-wrap: wrap;
}
.rating-score {
  font-size: 2.8rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.rating-score small { font-size: 1.1rem; color: var(--text-muted); }

/* Warning callout */
.callout-warning, p.callout-warning {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 18px 22px; border-radius: var(--r-lg);
  border: 1px solid var(--accent3-alpha-030);
  border-left: 3px solid var(--gold);
  background: var(--gold-ghost);
  margin: var(--sp-6) 0;
  font-size: var(--fs-sm); color: var(--text-dim); line-height: 1.65;
}

/* ============================================================ GAME TILES */
.games-section { margin: var(--sp-10) 0; }
.games-section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--sp-4); margin-bottom: var(--sp-5); flex-wrap: wrap;
}
.games-section-header h3 { margin: 0; font-size: var(--fs-xl); }
.games-section-header h3::after { display: none; }
.games-category-tag {
  font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--cyan); font-weight: 700;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.game-tile {
  position: relative; display: block;
  aspect-ratio: 292 / 342; border-radius: 10px;
  overflow: hidden; background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  text-decoration: none;
}
.game-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.game-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-alpha-082) 100%);
  opacity: .7; transition: opacity .3s;
}
.game-tile:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--cyan);
  box-shadow: var(--glow-md);
}
.game-tile:hover img { transform: scale(1.06); }
.game-tile:hover::after { opacity: 1; }
/* Game overlay — name + provider + play button on hover */
.game-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; padding: 12px 8px;
  opacity: 0; transition: opacity .3s;
}
.game-tile:hover .game-overlay { opacity: 1; }
.game-overlay-name {
  color: var(--white); font-weight: 700; font-size: .78rem;
  text-align: center; line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  max-width: 100%; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}
.game-overlay-provider {
  color: var(--cyan); font-size: .6rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  margin-top: 2px; text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  max-width: 100%; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}
.game-overlay-play {
  background: var(--cyan); color: var(--text-on-cyan);
  font-weight: 700; font-size: .62rem; text-transform: uppercase;
  letter-spacing: .1em; padding: 6px 14px; border-radius: var(--r);
  box-shadow: var(--shadow-cyan); margin-top: 8px;
}
.game-tile-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
}

/* Category filter tabs */
.game-filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: var(--sp-6); padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.filter-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 600;
  color: var(--text-dim); background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all .25s;
}
.filter-tab:hover {
  color: var(--cyan); border-color: var(--accent-alpha-030);
  background: var(--accent-alpha-005);
  text-shadow: none;
}
.filter-tab.active {
  color: var(--text-on-cyan); background: var(--cyan);
  border-color: var(--cyan); box-shadow: var(--shadow-cyan);
}
.filter-tab-count {
  font-size: .65rem; font-weight: 400;
  opacity: .7;
}

/* ============================================================ HERO BG IMAGE */
.hero-bg-image {
  background-size: cover; background-position: center;
  opacity: .18;
  filter: blur(2px);
}

/* ============================================================ PROMO CARDS */
.promo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5); margin: var(--sp-6) 0;
}
.promo-card {
  background: var(--bg-card); border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.promo-card:hover {
  border-color: var(--accent-alpha-020); box-shadow: var(--glow-sm);
}
.promo-card-img { aspect-ratio: 16/9; overflow: hidden; }
.promo-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.promo-card:hover .promo-card-img img { transform: scale(1.05); }
.promo-card-body { padding: 20px; }
.promo-type-badge {
  display: inline-block; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--cyan); background: var(--cyan-dim);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 8px;
  border: 1px solid var(--accent-alpha-015);
}
.promo-card-body h4 {
  font-size: 1rem; margin-bottom: 8px; line-height: 1.3;
}
.promo-card-body h4::after { display: none; }
.promo-card-body p {
  font-size: .82rem; color: var(--text-dim); line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo-legal {
  display: block; font-size: .65rem; color: var(--text-dim);
  margin-top: 6px;
}

/* ============================================================ TABLES */
.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: var(--sp-5) 0; border-radius: var(--r-lg);
}
table {
  width: 100%; border-collapse: collapse; min-width: 500px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; font-size: var(--fs-sm);
}
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th {
  background: var(--bg-card-alt); color: var(--cyan);
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
td { color: var(--text-dim); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: var(--accent-alpha-002); }

/* ============================================================ LISTS (in content) */
.section-html ul, .content-section ul {
  list-style: none; padding: 0; margin: var(--sp-4) 0;
}
.section-html ul li, .content-section ul li {
  position: relative; padding-left: var(--sp-6); margin-bottom: var(--sp-3);
  color: var(--text-dim); line-height: 1.65;
}
.section-html ul li::before, .content-section ul li::before {
  content: ''; position: absolute; left: 0; top: .6em;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--cyan); transform: rotate(45deg);
}
.section-html ul li strong, .content-section ul li strong { color: var(--white); }

.section-html ol, .content-section ol {
  counter-reset: step; list-style: none; padding: 0; margin: var(--sp-4) 0;
}
.section-html ol li, .content-section ol li {
  position: relative; padding-left: var(--sp-10); margin-bottom: var(--sp-3);
  counter-increment: step; color: var(--text-dim);
}
.section-html ol li::before, .content-section ol li::before {
  content: counter(step); position: absolute; left: 0; top: .05em;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan); color: var(--text-on-cyan);
  font-weight: 800; font-size: var(--fs-xs);
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================ PAYMENT / PROVIDER ICONS */
.icon-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin: var(--sp-4) 0;
  align-items: center;
}
.icon-pill {
  display: inline-flex; align-items: center;
  padding: 4px 12px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: var(--fs-xs); color: var(--text-dim); font-weight: 500;
}
.payment-icon, .provider-icon {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; padding: 0 12px; border-radius: var(--r);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: filter var(--t-base), border-color var(--t-base), transform var(--t-base);
  filter: grayscale(1) brightness(1.3) opacity(.65);
}
.payment-icon img, .provider-icon img {
  height: 20px; width: auto; display: block; max-width: 70px; object-fit: contain;
}
.payment-icon:hover, .provider-icon:hover {
  filter: none; border-color: var(--cyan); transform: translateY(-1px);
}

/* ============================================================ FAQ ACCORDION */
.faq-accordion { margin: var(--sp-6) 0; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); margin-bottom: 8px; overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 20px; background: transparent;
  border: 0; text-align: left; font-family: var(--sans);
  font-size: var(--fs-base); font-weight: 600; color: var(--white);
  cursor: pointer; gap: 14px; transition: background var(--t-fast);
}
.faq-question:hover { background: var(--accent-alpha-003); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--cyan);
  border-radius: 1px; transition: transform var(--t-base);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-base); }
.faq-answer-inner {
  padding: 0 20px 16px; color: var(--text-dim);
  font-size: var(--fs-sm); line-height: 1.7;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-answer { max-height: 800px; }

/* ============================================================ FOOTER */
.site-footer {
  background: var(--bg-up); border-top: 1px solid var(--border);
  padding: var(--sp-16) 0 var(--sp-8); margin-top: var(--sp-16);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10); margin-bottom: var(--sp-12);
}
.footer-col h4 {
  margin: 0 0 var(--sp-4); font-size: .66rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: var(--fs-sm); color: var(--text-dim); }
.footer-col a:hover { color: var(--cyan); }

.footer-brand {
  display: inline-flex; margin-bottom: var(--sp-4); text-decoration: none;
}
.footer-brand img {
  height: 26px; width: auto; filter: brightness(1.05);
  transition: filter var(--t-fast);
}
.footer-brand:hover img { filter: brightness(1.2); }
.footer-tagline { font-size: var(--fs-sm); color: var(--text-muted); margin: 0 0 var(--sp-4); }

/* RG support box */
.footer-rg {
  padding: 18px 22px; border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  margin-bottom: var(--sp-8);
}
.footer-rg-label {
  font-size: var(--fs-sm); font-weight: 600; color: var(--white);
  margin-bottom: var(--sp-3);
}
.footer-rg-list {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  list-style: none; margin: 0; padding: 0;
}
.footer-rg-list a { font-size: var(--fs-sm); color: var(--cyan); font-weight: 500; }

/* 18+ badge */
.footer-18plus {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; background: var(--red); color: var(--white);
  font-weight: 700; font-size: var(--fs-sm); border-radius: var(--r);
  margin-bottom: var(--sp-4);
}
.footer-18plus-badge {
  background: var(--white); color: var(--red); padding: 1px 7px;
  border-radius: 3px; font-weight: 900; font-size: var(--fs-xs);
}

/* Legal */
.footer-legal {
  font-size: .66rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: var(--sp-6); padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.footer-legal-label {
  font-weight: 700; color: var(--text-dim); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 4px; display: block; font-size: .66rem;
}

.footer-bottom {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: var(--sp-5); border-top: 1px solid var(--border);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.footer-social {
  display: flex; gap: 12px; list-style: none; margin: 0; padding: 0;
}
.footer-social a { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================ STICKY CTA BAR (mobile) */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--bg-alpha-097); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--accent-alpha-015);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
  transform: translateY(120%); transition: transform var(--t-base);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-text { flex: 1; }
.sticky-cta-text strong { display: block; font-size: var(--fs-sm); color: var(--cyan); }
.sticky-cta-text span { font-size: var(--fs-xs); color: var(--text-muted); }

/* Anchor offset for sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + var(--sp-4)); }

/* ============================================================ RESPONSIVE */
@media (min-width: 640px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  body { font-size: 1rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  :root { --header-h: 72px; }
  .main-nav { display: block; }
  .main-nav a { font-size: .75rem; padding: 7px 9px; }
  .lang-switcher { display: block; }
  .btn-mobile { display: none; }
  .mobile-drawer { display: none !important; }
  .sticky-cta { display: none; }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { min-height: 100vh; }
}
@media (min-width: 1280px) {
  .main-nav a { font-size: var(--fs-sm); padding: 7px 13px; }
  .games-grid.games-grid-wide { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 700px) {
  .procon-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print */
@media print {
  .site-header, .site-footer, .sticky-cta, .mobile-drawer { display: none; }
  body { background: #fff; color: #000; }
  .page-content { padding-top: 0; }
}
