/*
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: 'Space Grotesk', 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;
}

/* ============================================================
   GAMMA — Bold Geometric — style-base.css
   Sharp angles, strong hierarchy, dense layout, zero border-radius.
   Space Grotesk for all text. Heavy weight contrast.
   :root variables injected by build.js.
   ============================================================ */

/* ============================================================ 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: 1rem;
  font-weight: 300;
  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); }
a:hover { color: var(--cyan-hover); }
img { max-width: 100%; height: auto; display: block; }
strong { color: var(--white); font-weight: 700; }
p { margin: 0 0 var(--sp-4); color: var(--text-dim); }

/* Typography — Space Grotesk throughout, heavy weight contrast */
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--white); letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.05; margin-bottom: var(--sp-6); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.1; margin: 0 0 var(--sp-6); }
h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.2; margin: var(--sp-8) 0 var(--sp-3); }
h4 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin: var(--sp-6) 0 var(--sp-2); }

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: 2px; background: var(--border); margin: var(--sp-10) 0; }

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

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

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

/* ============================================================ LAYOUT */
.geo-container { max-width: 960px; margin: 0 auto; padding: 0 var(--sp-6); }
.geo-footer-wide { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.geo-main { padding-top: var(--header-h); min-height: 60vh; }

/* Label — bold uppercase accent tag */
.geo-label {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); display: inline-block; margin-bottom: var(--sp-3);
}

.geo-legal { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-3); }

/* ============================================================ BUTTONS — SHARP CORNERS */
.geo-btn {
  display: inline-block; font-family: var(--sans);
  font-size: var(--fs-sm); font-weight: 700;
  padding: 12px 28px; border-radius: 0;
  text-decoration: none; cursor: pointer; text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  border: 2px solid transparent;
}
.geo-btn-fill { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.geo-btn-fill:hover { background: var(--cyan-hover); border-color: var(--cyan-hover); }
.geo-btn-outline { background: transparent; color: var(--cyan); border-color: var(--cyan); }
.geo-btn-outline:hover { background: var(--cyan-ghost); }
.geo-btn-sm { font-size: var(--fs-xs); padding: 8px 16px; }
.geo-btn-lg { padding: 14px 36px; font-size: var(--fs-base); }

/* ============================================================ HEADER — CHUNKY SOLID BAR */
.geo-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--bg); border-bottom: 3px solid var(--cyan);
}

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

.geo-logo img { height: 30px; width: auto; }

.geo-nav {
  flex: 1; display: flex; justify-content: center;
  gap: var(--sp-1); overflow-x: auto;
  scrollbar-width: none;
}
.geo-nav::-webkit-scrollbar { display: none; }

.geo-nav-link {
  font-size: var(--fs-xs); font-weight: 700; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; padding: var(--sp-2) var(--sp-3);
  border-bottom: 3px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.geo-nav-link:hover { color: var(--white); }
.geo-nav-link.geo-nav-active {
  color: var(--cyan); border-bottom-color: var(--cyan);
}

.geo-header-actions { display: flex; align-items: center; gap: var(--sp-4); }

/* Language switcher */
.geo-lang-switch { position: relative; }
.geo-lang-btn {
  background: none; border: 2px solid var(--border); border-radius: 0;
  color: var(--text-dim); padding: 4px 12px; font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: 0.06em; cursor: pointer;
  font-family: var(--sans);
}
.geo-lang-list {
  display: none; position: absolute; right: 0; top: 100%; margin-top: 4px;
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: 0; min-width: 110px; list-style: none; padding: 0;
  z-index: 200;
}
.geo-lang-list a {
  display: block; padding: 8px 14px; font-size: var(--fs-sm);
  font-weight: 600; color: var(--text-dim);
}
.geo-lang-list a:hover, .geo-lang-list a.is-current { color: var(--white); background: var(--cyan-ghost); }
.geo-lang-switch[data-open] .geo-lang-list { display: block; }

.geo-header-cta { font-size: var(--fs-xs); padding: 8px 18px; }

/* Burger — 3 lines */
.geo-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; padding: 0;
}
.geo-burger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  position: absolute; left: 6px; transition: transform var(--t-base);
}
.geo-burger span:nth-child(1) { top: 10px; }
.geo-burger span:nth-child(2) { top: 17px; }
.geo-burger span:nth-child(3) { top: 24px; }

@media (max-width: 1023px) {
  .geo-nav { display: none; }
  .geo-header-cta { display: none; }
  .geo-burger { display: block; }
}

/* ============================================================ MOBILE OVERLAY — FULL SCREEN */
.geo-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-slow);
}
.geo-overlay[aria-hidden="false"] { opacity: 1; pointer-events: all; }

.geo-overlay-nav { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.geo-overlay-link {
  font-size: 1.5rem; font-weight: 800; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: var(--sp-2) 0;
}
.geo-overlay-link:hover, .geo-overlay-link.geo-nav-active { color: var(--cyan); }

.geo-overlay-lang {
  margin-top: var(--sp-10); display: flex; gap: var(--sp-4);
}
.geo-overlay-lang-link {
  font-size: var(--fs-sm); font-weight: 700; color: var(--text-dim);
  padding: var(--sp-2) var(--sp-3); border: 2px solid var(--border);
}
.geo-overlay-lang-link.is-current { color: var(--cyan); border-color: var(--cyan); }

/* ============================================================ HERO — ASYMMETRIC + GEOMETRIC PATTERN */
.geo-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 80px) 0 0;
}
.geo-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--bg) 40%, var(--bg-up) 100%);
  opacity: 0.6;
}
.geo-hero-bg[style*="background-image"] {
  background-size: cover; background-position: center; opacity: 0.15;
}
/* Geometric pattern overlay — CSS repeating triangles */
.geo-hero-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image:
    linear-gradient(60deg, var(--cyan) 25%, transparent 25%),
    linear-gradient(-60deg, var(--cyan) 25%, transparent 25%);
  background-size: 40px 70px;
}

.geo-hero-frame {
  position: relative; z-index: 2;
  max-width: 960px; margin: 0 auto; padding: 0 var(--sp-6) 60px;
}
.geo-hero-content { max-width: 640px; }
.geo-hero-sub { font-size: var(--fs-lg); color: var(--text-dim); margin-bottom: var(--sp-4); }
.geo-hero-ctas { display: flex; gap: var(--sp-4); margin-top: var(--sp-6); flex-wrap: wrap; }

/* Stats strip — bold horizontal bar */
.geo-hero-stats {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap;
  border-top: 3px solid var(--cyan);
  background: var(--bg-card);
}
.geo-stat-item {
  flex: 1; min-width: 140px;
  padding: var(--sp-5) var(--sp-6);
  border-right: 1px solid var(--border);
  text-align: center;
}
.geo-stat-item:last-child { border-right: none; }
.geo-stat-accent { background: var(--cyan-ghost); }
.geo-stat-num { display: block; font-size: var(--fs-2xl); font-weight: 800; color: var(--white); }
.geo-stat-label { font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================ SECTIONS — STRIPE BANDS + ACCENT BAR */
.geo-section {
  padding: 72px 0;
  position: relative;
}
.geo-stripe-alt { background: var(--bg-card); }

/* Angled divider between sections */
.geo-section::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan) 30%, transparent 30%);
}

/* Left accent bar */
.geo-section-accent {
  position: absolute; top: 72px; bottom: 72px; left: 0;
  width: 4px; background: var(--cyan);
}
@media (max-width: 768px) { .geo-section-accent { display: none; } }

.geo-section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  margin-bottom: var(--sp-6);
}

.geo-section-body { color: var(--text); }
.geo-section-body h3 { margin-top: var(--sp-10); }

/* Tables — strong header, zebra, sharp corners */
.geo-section-body table {
  width: 100%; border-collapse: collapse; margin: var(--sp-6) 0;
  font-size: var(--fs-sm); border-radius: 0;
}
.geo-section-body th {
  text-align: left; padding: var(--sp-3) var(--sp-4);
  background: var(--cyan-ghost); color: var(--cyan);
  font-weight: 700; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: 0.06em; border-bottom: 2px solid var(--cyan);
}
.geo-section-body td {
  padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.geo-section-body tr:nth-child(even) td { background: rgba(255,255,255,0.03); }

/* CTA block between sections */
.geo-cta-block {
  text-align: center; margin-top: var(--sp-10);
  padding: var(--sp-6) 0; border-top: 2px solid var(--border);
}

/* ============================================================ PAGE BANNER (subpages) */
.geo-page-banner {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 48px;
}
.geo-banner-inner {
  position: relative; z-index: 2;
  max-width: 960px; margin: 0 auto; padding: 0 var(--sp-6);
}
.geo-breadcrumbs { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--sp-4); }
.geo-breadcrumbs a { color: var(--text-dim); }
.geo-breadcrumbs a:hover { color: var(--cyan); }
.geo-banner-intro { font-size: var(--fs-lg); color: var(--text); margin: var(--sp-4) 0; }
.geo-banner-ctas { margin-top: var(--sp-6); }

/* ============================================================ BENTO GRID — MIXED SIZE GAME TILES */
.geo-bento-wrap { margin: var(--sp-10) 0; }
.geo-bento-heading {
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--white);
  margin-bottom: var(--sp-4); padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--cyan);
}

.geo-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: var(--sp-2);
}
@media (max-width: 768px) { .geo-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } }
@media (max-width: 480px) { .geo-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; } }

.geo-game-item {
  position: relative; overflow: hidden; display: block;
  border-radius: 0; border: 2px solid transparent;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.geo-game-item:hover { transform: scale(1.03); border-color: var(--cyan); }
.geo-game-item img { width: 100%; height: 100%; object-fit: cover; }

.geo-bento-lg { grid-column: span 2; grid-row: span 2; }
.geo-bento-md { grid-column: span 2; }
.geo-bento-sm { }

.geo-game-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg); /* solid bar, not gradient */
}
.geo-game-bar strong { display: block; font-size: var(--fs-sm); color: var(--white); font-weight: 700; }
.geo-game-bar span { font-size: var(--fs-xs); color: var(--cyan); text-transform: uppercase; letter-spacing: 0.04em; }

.geo-game-placeholder { width: 100%; height: 100%; background: var(--bg-card); }

/* ============================================================ TAB BAR (casino filter) */
.geo-tab-bar {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: var(--sp-6) 0; border-bottom: 2px solid var(--border);
}
.geo-tab {
  padding: var(--sp-3) var(--sp-5); font-size: var(--fs-sm);
  font-weight: 700; color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.04em; border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.geo-tab:hover { color: var(--white); }
.geo-tab.geo-tab-active { color: var(--cyan); border-bottom-color: var(--cyan); }
.geo-tab-count { font-weight: 400; color: var(--text-muted); margin-left: 4px; font-size: var(--fs-xs); }

/* ============================================================ PROMO STRIP — HORIZONTAL BLOCKS */
.geo-promo-strip { display: flex; flex-direction: column; gap: var(--sp-4); margin: var(--sp-8) 0; }

.geo-promo-block {
  display: grid; grid-template-columns: 180px 1fr; gap: 0;
  border: 2px solid var(--border); border-radius: 0;
  overflow: hidden; background: var(--bg-card);
  transition: border-color var(--t-fast);
}
.geo-promo-block:hover { border-color: var(--cyan); }
@media (max-width: 640px) { .geo-promo-block { grid-template-columns: 1fr; } }

.geo-promo-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 120px; }
.geo-promo-info { padding: var(--sp-4) var(--sp-5); }

/* ============================================================ FAQ — TAB PANELS + EXPAND */
.geo-faq-tabs { display: flex; gap: 0; margin-bottom: var(--sp-6); border-bottom: 2px solid var(--border); }
.geo-faq-tab {
  padding: var(--sp-3) var(--sp-5); font-weight: 700; font-size: var(--fs-sm);
  color: var(--text-dim); text-transform: uppercase; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--sans);
}
.geo-faq-tab:hover { color: var(--white); }
.geo-faq-tab.geo-tab-active { color: var(--cyan); border-bottom-color: var(--cyan); }

.geo-faq-item { border-bottom: 1px solid var(--border); }
.geo-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-4) 0; cursor: pointer; background: none; border: none;
  width: 100%; text-align: left; font-family: var(--sans);
  font-size: var(--fs-base); font-weight: 700; color: var(--white);
}
.geo-faq-q:hover { color: var(--cyan); }
.geo-faq-marker { font-weight: 300; color: var(--cyan); font-size: var(--fs-lg); }
.geo-faq-marker::after { content: '+'; }
.geo-faq-item.is-open .geo-faq-marker::after { content: '\2212'; }
.geo-faq-a { display: none; padding: 0 0 var(--sp-4); color: var(--text-dim); line-height: 1.7; }
.geo-faq-item.is-open .geo-faq-a { display: block; }

/* ============================================================ FLOATING ACTION BUTTON */
.geo-fab {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6); z-index: 90;
  width: 56px; height: 56px; border-radius: 0;
  background: var(--cyan); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-fast);
}
.geo-fab.is-visible { opacity: 1; pointer-events: all; }
.geo-fab:hover { transform: scale(1.08); background: var(--cyan-hover); }

/* ============================================================ MEGA FOOTER */
.geo-mega-footer {
  margin-top: var(--sp-16); border-top: 4px solid var(--cyan);
  font-size: var(--fs-sm); color: var(--text-dim);
  /* Geometric background pattern */
  background-image:
    linear-gradient(60deg, rgba(0,255,255,0.02) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(0,255,255,0.02) 25%, transparent 25%);
  background-size: 60px 104px;
}

.geo-footer-row { padding: var(--sp-8) 0; border-bottom: 1px solid var(--border); }
.geo-footer-row:last-child { border-bottom: none; }

.geo-footer-brand-row { padding: var(--sp-10) 0; }
.geo-footer-logo { height: 30px; width: auto; margin-bottom: var(--sp-3); }
.geo-footer-tagline { color: var(--text-dim); max-width: 480px; }

/* 4-column link grid */
.geo-footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-8);
}
@media (max-width: 768px) { .geo-footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .geo-footer-cols { grid-template-columns: 1fr; } }

.geo-footer-col h4 {
  font-size: var(--fs-xs); font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.geo-footer-col ul { list-style: none; padding: 0; }
.geo-footer-col li { margin-bottom: var(--sp-1); }
.geo-footer-col a { color: var(--text-dim); font-size: var(--fs-sm); }
.geo-footer-col a:hover { color: var(--cyan); }

/* Icon strip */
.geo-icon-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3);
}
.geo-icon img { height: 26px; width: auto; opacity: 0.5; transition: opacity var(--t-fast); }
.geo-icon:hover img { opacity: 1; }
.geo-icon-text {
  font-size: var(--fs-xs); padding: 4px 8px;
  background: var(--bg-card); color: var(--text-dim);
}
.geo-icon-divider { width: 1px; height: 20px; background: var(--border); margin: 0 var(--sp-3); }

/* Legal row */
.geo-footer-18 { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.geo-badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 0;
  background: #c0392b; color: #fff; font-weight: 800; font-size: 12px;
}
.geo-footer-disclaimer {
  font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.5;
  margin-bottom: var(--sp-4);
}
.geo-footer-disclaimer strong { font-size: var(--fs-xs); color: var(--text-dim); }
.geo-footer-copyright {
  text-align: center; font-size: var(--fs-xs); color: var(--text-muted);
  padding-top: var(--sp-4); border-top: 1px solid var(--border);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 640px) {
  .geo-section { padding: 48px 0; }
  .geo-hero { padding-top: calc(var(--header-h) + 48px); }
  .geo-hero-stats { flex-direction: column; }
  .geo-stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .geo-bento { gap: var(--sp-1); }
}
