/* =========================================================
   BetFury — статична версія. Один файл стилів, без фреймворків.
   Палітра ідентична оригіналу (oklch, navy + crimson + gold).
   ========================================================= */

:root {
  --radius: 0.75rem;

  --background: oklch(0.16 0.018 260);
  --foreground: oklch(0.97 0.005 260);

  --surface: oklch(0.205 0.022 260);
  --surface-elevated: oklch(0.245 0.024 260);

  --brand: oklch(0.6 0.19 22);
  --brand-glow: oklch(0.66 0.18 22);
  --brand-foreground: oklch(0.99 0.005 260);

  --gold: oklch(0.78 0.13 80);

  --muted: oklch(0.245 0.022 260);
  --muted-foreground: oklch(0.7 0.018 260);

  --border: oklch(0.32 0.024 260 / 0.7);

  --sidebar: oklch(0.13 0.018 260);
  --sidebar-border: oklch(0.26 0.022 260 / 0.6);
  --sidebar-accent: oklch(0.22 0.024 260);

  --gradient-brand: linear-gradient(135deg, oklch(0.62 0.2 22), oklch(0.5 0.18 18));
  --gradient-hero:
    radial-gradient(ellipse at 75% 40%, oklch(0.32 0.12 22 / 0.55), transparent 60%),
    linear-gradient(160deg, oklch(0.21 0.03 260), oklch(0.14 0.018 260));
  --gradient-card: linear-gradient(180deg, oklch(0.25 0.024 260), oklch(0.19 0.02 260));

  --shadow-brand: 0 10px 28px -12px oklch(0.45 0.18 22 / 0.55);
  --shadow-elevated: 0 20px 50px -22px oklch(0 0 0 / 0.65);
  --shadow-card: 0 4px 16px -8px oklch(0 0 0 / 0.5);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.app { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.page-title, .section-title, .footer-title, .seo-title, .seo-subtitle, p { margin: 0; }
::selection { background: var(--brand); color: var(--brand-foreground); }

/* ---------- Layout ---------- */
.app { display: flex; min-height: 100vh; max-width: 100%; overflow-x: clip; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.main-col, .hero, .hero-grid, .hero-text, .promo-strip, .section, .footer { max-width: 100%; min-width: 0; }
.page-title, .section-title { overflow-wrap: anywhere; }

/* ---------- Sidebar ---------- */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--sidebar);
  border-right: 1px solid var(--sidebar-border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidebar-header {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid var(--sidebar-border);
}
.sidebar-content { padding: 0.75rem 0.5rem; }
.sidebar-group { padding: 0.5rem 0; }
.sidebar-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  padding: 0.5rem 0.75rem;
}
.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: background 0.15s;
}
.sidebar-menu a:hover { background: var(--sidebar-accent); }
.sidebar-menu .icon { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.85; }

/* ---------- Main column ---------- */
.main-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 64px;
  background: oklch(0.16 0.018 260 / 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 1rem;
}
.header-left { display: flex; align-items: center; gap: 0.5rem; }
.menu-toggle {
  width: 36px; height: 36px;
  display: none;
  align-items: center; justify-content: center;
  border-radius: 0.5rem;
}
.menu-toggle:hover { background: var(--sidebar-accent); }
.header-actions { display: flex; gap: 0.5rem; }

.logo { display: inline-flex; align-items: center; gap: 0.625rem; }
.logo img { width: 36px; height: 36px; border-radius: 0.5rem; }
.logo-text { font-weight: 900; font-size: 1.125rem; letter-spacing: -0.02em; }
.logo-text .accent { color: var(--brand); }
.logo-mobile { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.18s;
  padding: 0 1rem;
  height: 36px;
  font-size: 0.875rem;
}
.btn-sm { height: 32px; padding: 0 0.75rem; font-size: 0.75rem; }
.btn-lg { height: 44px; padding: 0 2rem; font-size: 1rem; border-radius: 0.625rem; }
.btn-xl { height: 56px; padding: 0 2.5rem; font-size: 1rem; border-radius: 0.75rem; font-weight: 700; }

.btn-brand {
  background: var(--brand);
  color: var(--brand-foreground);
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover { background: oklch(0.6 0.19 22 / 0.9); }

.btn-outline {
  border: 2px solid oklch(0.6 0.19 22 / 0.6);
  color: var(--brand);
}
.btn-outline:hover { background: var(--brand); color: var(--brand-foreground); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); }
.hex-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(30deg, oklch(1 0 0 / 0.03) 12%, transparent 12.5%, transparent 87%, oklch(1 0 0 / 0.03) 87.5%, oklch(1 0 0 / 0.03)),
    linear-gradient(150deg, oklch(1 0 0 / 0.03) 12%, transparent 12.5%, transparent 87%, oklch(1 0 0 / 0.03) 87.5%, oklch(1 0 0 / 0.03)),
    linear-gradient(30deg, oklch(1 0 0 / 0.03) 12%, transparent 12.5%, transparent 87%, oklch(1 0 0 / 0.03) 87.5%, oklch(1 0 0 / 0.03)),
    linear-gradient(150deg, oklch(1 0 0 / 0.03) 12%, transparent 12.5%, transparent 87%, oklch(1 0 0 / 0.03) 87.5%, oklch(1 0 0 / 0.03));
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px;
  opacity: 0.6;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0;
  color: oklch(0.77 0.02 260);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.eyebrow::before {
  content: "";
  width: 3px;
  height: 1rem;
  border-radius: 999px;
  background: oklch(0.6 0.19 22 / 0.75);
}
.eyebrow svg {
  display: none;
}
.eyebrow.gold {
  color: oklch(0.77 0.02 260);
}
.eyebrow.gold::before {
  background: oklch(0.78 0.13 80 / 0.7);
}
.page-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.page-title .accent {
  color: var(--brand);
  background-image: linear-gradient(transparent 70%, oklch(0.6 0.19 22 / 0.2) 70%, oklch(0.6 0.19 22 / 0.2) 92%, transparent 92%);
}
.hero p.lead { color: var(--muted-foreground); font-size: 1.125rem; max-width: 36rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  max-width: 28rem;
}
.hero-stats .v { font-size: 1.5rem; font-weight: 900; }
.hero-stats .l { font-size: 0.7rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before, .hero-visual::after {
  content: ""; position: absolute; border-radius: 999px; pointer-events: none;
}
.hero-visual::before { inset: 2rem; border: 1px solid oklch(0.6 0.19 22 / 0.2); }
.hero-visual::after { inset: 4rem; border: 1px solid oklch(0.6 0.19 22 / 0.1); }
.hero-mascot {
  position: relative;
  width: clamp(16rem, 30vw, 26rem);
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.5));
  animation: float 6s ease-in-out infinite;
}
.jackpot-card {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-elevated);
  min-width: 200px;
}
.jackpot-card .label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; color: var(--muted-foreground); margin-bottom: 0.25rem;
}
.jackpot-card .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
.jackpot-card .value {
  font-size: 1.5rem; font-weight: 900; color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ---------- Promo strip ---------- */
.promo-strip {
  border-bottom: 1px solid var(--border);
  background: oklch(0.205 0.022 260 / 0.4);
}
.promo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.promo-feat { display: flex; align-items: center; gap: 0.75rem; }
.promo-feat .ico {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: oklch(0.6 0.19 22 / 0.1);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.promo-feat .name { font-weight: 600; font-size: 0.875rem; }
.promo-feat .sub { font-size: 0.75rem; color: var(--muted-foreground); }

/* ---------- Section ---------- */
.section { padding: 4rem 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.section-head .kicker {
  font-size: 0.7rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.section-head .section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 900; }
.section-head.center { text-align: center; flex-direction: column; align-items: center; max-width: 36rem; margin: 0 auto 2.5rem; }
.section-head.center p { color: var(--muted-foreground); margin-top: 0.75rem; }

/* ---------- Game grid ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.game {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.18s, border-color 0.18s;
}
.game:hover { transform: translateY(-4px); border-color: oklch(0.6 0.19 22 / 0.6); }
.game-bg { position: absolute; inset: 0; opacity: 0.9; }
.game-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.game-img[hidden] { display: none; }
.game .hex-pattern { opacity: 0.3; }
.game-info {
  position: absolute; inset: 0;
  display: flex; align-items: end; padding: 0.75rem;
  background: linear-gradient(180deg, transparent 35%, rgb(0 0 0 / 0.68));
}
.game-info .tag {
  font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgb(255 255 255 / 0.7);
}
.game-info .name { font-weight: 700; color: white; font-size: 0.875rem; line-height: 1.15; }
.hot-badge {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: var(--brand); color: var(--brand-foreground);
  font-size: 0.625rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.game-overlay {
  position: absolute; inset: 0;
  background: rgb(0 0 0 / 0);
  display: grid; place-items: center;
  transition: background 0.18s;
}
.game:hover .game-overlay { background: rgb(0 0 0 / 0.4); }
.game-overlay span {
  opacity: 0; transition: opacity 0.18s;
  padding: 0.375rem 0.75rem; border-radius: 0.375rem;
  background: var(--brand); color: var(--brand-foreground);
  font-size: 0.75rem; font-weight: 700;
}
.game:hover .game-overlay span { opacity: 1; }

/* Tile gradients */
.bg-pink { background: linear-gradient(to bottom right, oklch(0.65 0.22 0 / 0.4), oklch(0.45 0.16 10 / 0.4)); }
.bg-red { background: linear-gradient(to bottom right, oklch(0.6 0.22 25 / 0.4), oklch(0.5 0.18 45 / 0.4)); }
.bg-amber { background: linear-gradient(to bottom right, oklch(0.7 0.18 70 / 0.4), oklch(0.5 0.16 50 / 0.4)); }
.bg-fuchsia { background: linear-gradient(to bottom right, oklch(0.65 0.25 320 / 0.4), oklch(0.45 0.2 300 / 0.4)); }
.bg-emerald { background: linear-gradient(to bottom right, oklch(0.65 0.18 160 / 0.4), oklch(0.45 0.14 180 / 0.4)); }
.bg-blue { background: linear-gradient(to bottom right, oklch(0.6 0.2 250 / 0.4), oklch(0.45 0.18 270 / 0.4)); }
.bg-cyan { background: linear-gradient(to bottom right, oklch(0.7 0.16 220 / 0.4), oklch(0.5 0.18 250 / 0.4)); }
.bg-violet { background: linear-gradient(to bottom right, oklch(0.6 0.22 290 / 0.4), oklch(0.45 0.2 305 / 0.4)); }
.bg-sky { background: linear-gradient(to bottom right, oklch(0.7 0.16 230 / 0.4), oklch(0.5 0.18 250 / 0.4)); }
.bg-rose { background: linear-gradient(to bottom right, oklch(0.6 0.22 15 / 0.4), oklch(0.45 0.18 5 / 0.4)); }
.bg-stone { background: linear-gradient(to bottom right, oklch(0.55 0.02 60 / 0.4), oklch(0.4 0.02 60 / 0.4)); }
.bg-lime { background: linear-gradient(to bottom right, oklch(0.75 0.2 130 / 0.4), oklch(0.55 0.18 145 / 0.4)); }

/* ---------- Promo banner (rocket) ---------- */
.banner {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.banner-glow {
  position: absolute;
  right: -2rem; top: 0; bottom: 0; width: 66%;
  background: radial-gradient(ellipse at 70% 50%, oklch(0.5 0.18 22 / 0.6), transparent 65%);
  opacity: 0.3;
  pointer-events: none;
}
.banner-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem;
}
.banner-text { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.banner-text .section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 900; line-height: 1.15; }
.banner-text .section-title .gold { color: var(--gold); }
.banner-text p { color: var(--muted-foreground); }
.banner-visual { display: grid; place-items: center; }
.banner-visual img {
  width: clamp(12rem, 20vw, 18rem);
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.5));
  animation: float 6s ease-in-out infinite;
}

/* ---------- Bonus cards ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bonus-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 0.18s;
}
.bonus-card:hover { border-color: oklch(0.6 0.19 22 / 0.6); }
.bonus-card .num {
  position: absolute;
  top: -1rem; right: -1rem;
  font-size: 4.5rem; font-weight: 900;
  color: oklch(0.97 0.005 260 / 0.04);
  pointer-events: none;
}
.bonus-card .label {
  font-size: 0.7rem; font-weight: 700; color: var(--muted-foreground);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.bonus-card .pct { font-size: 2.25rem; font-weight: 900; color: var(--brand); margin: 0.5rem 0; }
.bonus-card .note { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---------- VIP ---------- */
.vip {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid oklch(0.78 0.13 80 / 0.3);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.vip-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 50%, oklch(0.7 0.14 80 / 0.35), transparent 55%);
  opacity: 0.2;
}
.vip-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem; align-items: center;
  padding: 3rem;
}
.vip-img { display: grid; place-items: center; }
.vip-img img { max-width: 24rem; }
.vip-text { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.vip-text .section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 900; line-height: 1.15; }
.vip-text .section-title .gold { color: var(--gold); }
.vip-text p { color: var(--muted-foreground); }
.vip-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; width: 100%;
}
.vip-stat {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem; text-align: center;
}
.vip-stat .ico { color: var(--gold); margin: 0 auto 0.25rem; }
.vip-stat .v { font-size: 1.25rem; font-weight: 900; }
.vip-stat .l { font-size: 0.625rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Testimonials ---------- */
.community-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.community-meta strong { color: var(--foreground); }
.community-meta .ico { color: var(--brand); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tcard {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.18s;
}
.tcard:hover { border-color: oklch(0.6 0.19 22 / 0.4); }
.stars { display: flex; align-items: center; gap: 0.125rem; color: var(--gold); margin-bottom: 0.75rem; }
.stars .rate { margin-left: 0.375rem; font-size: 0.75rem; color: var(--muted-foreground); }
.tcard p { font-size: 0.875rem; line-height: 1.6; }
.tcard .who {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem;
}
.tcard .avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  font-weight: 700; color: var(--brand-foreground); font-size: 0.875rem;
}
.tcard .who-name { font-size: 0.875rem; font-weight: 600; }
.tcard .who-city { font-size: 0.75rem; color: var(--muted-foreground); }

/* ---------- SEO text ---------- */
.seo-section {
  padding: 4rem 0 0;
  background: linear-gradient(180deg, transparent, oklch(0.18 0.02 260));
}
.seo-text-card {
  position: relative;
  overflow: hidden;
  max-height: 380px;
  min-height: 360px;
  padding: 3.75rem 3.5rem 4.75rem;
  border-top: 1px solid var(--border);
  background: oklch(0.19 0.02 260);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.03);
}
.seo-text-card.expanded {
  max-height: none;
}
.seo-text-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9rem;
  pointer-events: none;
  background: linear-gradient(180deg, oklch(0.19 0.02 260 / 0), oklch(0.19 0.02 260) 72%);
}
.seo-text-card.expanded::after {
  opacity: 0;
}
.seo-text-content {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  overflow-x: auto;
}
.seo-text-content h1,
.seo-title {
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.seo-text-content h2,
.seo-subtitle {
  margin: 2.25rem 0 0.75rem;
  color: var(--foreground);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.seo-text-content h3 {
  margin: 1.75rem 0 0.625rem;
  color: var(--foreground);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 750;
}
.seo-text-content p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.6;
}
.seo-text-content p + p { margin-top: 1.15rem; }
.seo-text-content ul,
.seo-text-content ol {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.35rem;
  padding-left: 1.35rem;
  color: var(--muted-foreground);
  font-size: 1.02rem;
  line-height: 1.6;
}
.seo-text-content ul { list-style: disc; }
.seo-text-content ol { list-style: decimal; }
.seo-text-content li::marker {
  color: var(--brand);
}
.seo-text-content table {
  width: 100%;
  min-width: 640px;
  margin: 1.35rem 0 1.75rem;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: oklch(0.16 0.018 260 / 0.72);
  box-shadow: var(--shadow-card);
}
.seo-text-content th,
.seo-text-content td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.seo-text-content th {
  color: var(--foreground);
  background: oklch(0.245 0.024 260 / 0.88);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}
.seo-text-content td {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
}
.seo-text-content tr:last-child td {
  border-bottom: 0;
}
.seo-text-content tbody tr:nth-child(even) td {
  background: oklch(0.21 0.022 260 / 0.38);
}
.seo-text-content p:has(> strong:first-child) {
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: oklch(0.16 0.018 260 / 0.58);
  box-shadow: inset 3px 0 0 oklch(0.6 0.19 22 / 0.7);
}
.seo-text-content p:has(> strong:first-child) strong:first-child {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.35;
}
.seo-more {
  position: absolute;
  left: 3.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: var(--surface-elevated);
  color: var(--foreground);
  font-weight: 700;
  transition: background 0.18s, transform 0.18s;
}
.seo-more:hover {
  background: oklch(0.29 0.024 260);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}
.footer-about p { color: var(--muted-foreground); font-size: 0.875rem; max-width: 28rem; margin-top: 1rem; }
.footer-about .age {
  margin-top: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
.footer-about .age span:first-child {
  padding: 0.125rem 0.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-weight: 600;
}
.footer-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.75rem; color: var(--muted-foreground);
}

/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; text-align: center; }
  .hero-text { align-items: center; }
  .eyebrow { align-self: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-visual { order: -1; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-grid, .banner-grid { grid-template-columns: 1fr; padding: 2rem; }
  .vip-img { order: -1; }
  .tcards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sidebar {
    width: 260px;
    position: fixed;
    left: 0; top: 0;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.25s;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-backdrop {
    display: none;
    position: fixed; inset: 0; z-index: 45;
    background: rgb(0 0 0 / 0.5);
  }
  .sidebar-backdrop.open { display: block; }
  .menu-toggle { display: inline-flex; }
  .logo-mobile { display: inline-flex; }
  .header .logo:not(.logo-mobile) { display: none; }

  .promo-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .tcards { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .seo-section { padding-top: 2rem; }
  .seo-text-card { padding: 2rem 1.25rem 4.5rem; min-height: 340px; }
  .seo-text-content p { font-size: 0.95rem; }
  .seo-text-content ul,
  .seo-text-content ol { font-size: 0.95rem; padding-left: 1.15rem; }
  .seo-text-content table { min-width: 560px; }
  .seo-text-content th,
  .seo-text-content td { padding: 0.75rem; }
  .seo-text-content p:has(> strong:first-child) { padding: 0.875rem; }
  .seo-more { left: 1.25rem; }
  .vip-grid, .banner-grid { padding: 1.5rem; }
  .jackpot-card { right: 50%; transform: translateX(50%); bottom: -0.5rem; min-width: 180px; padding: 0.625rem 0.875rem; }
  .jackpot-card .value { font-size: 1.125rem; }
  .page-title { font-size: 2rem; word-break: break-word; max-width: 100%; }
  .hero-text { width: 100%; }
  .hero { padding-bottom: 2rem; }
  .hero-mascot { width: min(70vw, 18rem); }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn-xl { padding: 0 1.5rem; font-size: 0.95rem; height: 52px; }
  .hero-stats { width: 100%; max-width: 100%; }
  .hero-stats .v { font-size: 1.25rem; }
  .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .header-actions .btn { padding: 0 0.625rem; }
}
