/* ============================
   Vavada Login - Modern Casino UI
   Brand: orange-red + gold on dark navy
   ============================ */

:root {
  /* Background */
  --bg: #15131D;
  --bg-2: #1B1827;
  --surface: #221F30;
  --surface-2: #2B2740;
  --surface-3: #353050;
  --border: #2E2A42;
  --border-2: #3F3A5A;

  /* Text */
  --text: #ffffff;
  --text-2: #C3BFD4;
  --text-3: #847FA0;
  --muted: #5B566F;

  /* Brand (Vavada crimson red) */
  --brand: #E50046;
  --brand-2: #FF1F4F;
  --brand-3: #C70039;
  --brand-soft: #FF4D6B;
  --gold: #FFC107;
  --gold-2: #FFD54A;

  /* Secondary accents */
  --green: #22c55e;
  --green-2: #16a34a;
  --red: #ef4444;
  --purple: #a855f7;
  --blue: #3b82f6;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #E50046 0%, #FF1F4F 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
  --grad-fire: linear-gradient(135deg, #E50046 0%, #FF6B00 100%);
  --grad-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  --grad-hero:
    radial-gradient(ellipse 60% 60% at 15% 25%, rgba(229,0,70,.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(255,193,7,.16), transparent 60%),
    radial-gradient(ellipse 40% 40% at 65% 15%, rgba(255,31,79,.14), transparent 60%);

  /* Layout */
  --container: 1280px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-1: 0 4px 12px rgba(0,0,0,.35);
  --shadow-2: 0 10px 30px rgba(0,0,0,.45);
  --shadow-glow: 0 8px 24px rgba(229,0,70,.4);
  --shadow-gold: 0 8px 24px rgba(255,193,7,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
table { border-collapse: collapse; width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================
   Buttons
   ========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
  line-height: 1;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-secondary {
  background: var(--surface-2);
  color: #fff;
  border: 1px solid var(--border-2);
}
.btn-secondary:hover { background: var(--surface-3); }

.btn-gold {
  background: var(--grad-gold);
  color: #2B1A00;
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-2);
}
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* ==========================
   Header
   ========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(21, 19, 29, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}
.brand-mark { height: 36px; width: 36px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: #fff; background: var(--surface); }

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

/* Language switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  font-size: 14px;
  color: #fff;
  transition: background .15s ease;
}
.lang-btn:hover { background: var(--surface-3); }
.lang-btn .flag { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.lang-btn .caret { width: 14px; height: 14px; opacity: .8; transition: transform .2s ease; }
.lang.open .lang-btn .caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-2);
  display: none;
  z-index: 70;
  max-height: 360px;
  overflow-y: auto;
}
.lang.open .lang-menu { display: block; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-2);
  transition: background .12s ease, color .12s ease;
}
.lang-item:hover { background: var(--surface-2); color: #fff; }
.lang-item .flag { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.lang-item.active { background: var(--surface-2); color: #fff; font-weight: 600; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.burger img { width: 22px; height: 22px; }

/* ==========================
   Hero
   ========================== */
.hero {
  position: relative;
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse 60% 60% at 15% 25%, rgba(229,0,70,.25), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(255,193,7,.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 65% 15%, rgba(255,31,79,.16), transparent 60%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: .5;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(229,0,70,.14);
  border: 1px solid rgba(229,0,70,.35);
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 0 rgba(255,31,79,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,31,79,.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,31,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,31,79,0); }
}

.hero-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.hero-title .grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-bonus-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(229,0,70,.16), rgba(255,193,7,.12));
  border: 1px solid rgba(255,193,7,.45);
  margin-bottom: 22px;
  max-width: 100%;
}
.hero-bonus-icon { width: 44px; height: 44px; flex-shrink: 0; }
.hero-bonus-text { display: flex; flex-direction: column; gap: 2px; }
.hero-bonus-amount {
  font-size: 22px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.hero-bonus-label { font-size: 13px; color: var(--text-2); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 13px;
  color: var(--text-2);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item img,
.hero-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Hero side - bonus card */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-2);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,193,7,.6), rgba(229,0,70,.45), transparent);
  -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-fire);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-card-big {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-card-small {
  font-size: 15px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.hero-card-list li img,
.hero-card-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.promo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px dashed var(--gold);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.promo-box-label { font-size: 12px; color: var(--text-3); }
.promo-box-code {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  flex: 1;
  min-width: 80px;
}
.promo-box-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  font-size: 12px;
  color: #fff;
  transition: background .15s ease;
  cursor: pointer;
}
.promo-box-copy:hover { background: var(--surface-3); }
.promo-box-copy img,
.promo-box-copy svg { width: 14px; height: 14px; }
.promo-box-copy.copied { background: var(--green-2); border-color: var(--green-2); }

/* ==========================
   Stats Bar
   ========================== */
.stats {
  padding: 32px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon img,
.stat-icon svg { width: 26px; height: 26px; }
.stat-value {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
}

/* ==========================
   Section base
   ========================== */
.section {
  padding: 72px 0;
  position: relative;
}
.section-tight { padding: 48px 0; }

/* Long-read review prose */
.review-prose {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
}
.review-prose p { margin: 0 0 18px; }
.review-prose p:last-child { margin-bottom: 0; }
.review-prose p:first-of-type { font-size: 17px; color: var(--text); }
.review-prose strong { color: var(--text); font-weight: 700; }
.providers-prose { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }

/* Working mirror section CTA */
.mirror-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.mirror-cta .btn { min-width: 220px; }
@media (max-width: 480px) {
  .mirror-cta { flex-direction: column; gap: 10px; }
  .mirror-cta .btn { width: 100%; min-width: 0; }
}
@media (max-width: 720px) {
  .review-prose { font-size: 15px; line-height: 1.7; }
  .review-prose p:first-of-type { font-size: 16px; }
  .providers-prose { margin-top: 28px; padding-top: 20px; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.3px;
}
.section-desc {
  color: var(--text-2);
  font-size: 16px;
}

/* ==========================
   Category Tiles
   ========================== */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.cat:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(229,0,70,.25);
}
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
}
.cat-icon img,
.cat-icon svg { width: 32px; height: 32px; }

/* color-tinted backgrounds for each category */
.cat.cat-slots .cat-icon { background: linear-gradient(135deg, rgba(229,0,70,.28), rgba(255,31,79,.18)); }
.cat.cat-live .cat-icon { background: linear-gradient(135deg, rgba(168,85,247,.25), rgba(124,58,237,.15)); }
.cat.cat-table .cat-icon { background: linear-gradient(135deg, rgba(255,193,7,.25), rgba(255,107,0,.18)); }
.cat.cat-crash .cat-icon { background: linear-gradient(135deg, rgba(239,68,68,.25), rgba(229,0,70,.18)); }
.cat.cat-sport .cat-icon { background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(34,197,94,.15)); }
.cat.cat-jackpot .cat-icon { background: linear-gradient(135deg, rgba(255,215,0,.25), rgba(255,107,0,.15)); }

.cat-name {
  font-size: 14px;
  font-weight: 600;
}
.cat-count {
  font-size: 12px;
  color: var(--text-3);
}

/* ==========================
   Bonus Cards
   ========================== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bonus {
  position: relative;
  padding: 26px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
  overflow: hidden;
}
.bonus:hover { transform: translateY(-4px); border-color: var(--brand); }
.bonus-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bonus-tag-best { background: var(--grad-gold); color: #2B1A00; }
.bonus-tag-new { background: var(--grad-primary); color: #fff; }
.bonus-tag-cash { background: var(--grad-purple); color: #fff; }
.bonus-tag-reload { background: var(--grad-fire); color: #fff; }

.bonus-amount {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bonus-bonus-extra {
  font-size: 14px;
  color: var(--brand-2);
  font-weight: 700;
  margin-bottom: 14px;
}
.bonus-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}
.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}
.bonus-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ==========================
   Games Grid
   ========================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.game {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform .2s ease, border-color .2s ease;
}
.game:hover { transform: translateY(-3px); border-color: var(--brand); }
.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,13,23,.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity .2s ease;
}
.game:hover .game-overlay { opacity: 1; }
.game-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}
.game-provider {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 10px;
}
.game-buttons { display: flex; gap: 6px; }
.game-btn {
  flex: 1;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .5px;
}
.game-btn-play { background: var(--grad-primary); color: #fff; }
.game-btn-demo { background: var(--surface-3); color: #fff; border: 1px solid var(--border-2); }

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--grad-fire);
  color: #fff;
}
.game-badge.new { background: var(--grad-primary); color: #fff; }
.game-badge.top { background: var(--grad-gold); color: #2B1A00; }

/* Always show overlay on touch devices */
@media (hover: none) {
  .game-overlay { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(15,13,23,.92) 100%); }
}

/* ==========================
   Tournaments
   ========================== */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tour {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}
.tour::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: .18;
  pointer-events: none;
  filter: blur(40px);
}
.tour-gold::after { background: var(--gold); }
.tour-platinum::after { background: var(--purple); }
.tour-fire::after { background: var(--red); }

.tour-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.tour-header img,
.tour-header svg { width: 32px; height: 32px; }
.tour-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,193,7,.15);
  color: var(--gold);
}
.tour-badge-vip { background: rgba(168,85,247,.15); color: var(--purple); }
.tour-badge-hot { background: rgba(239,68,68,.15); color: var(--red); }

.tour-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.tour-prize-label { font-size: 12px; color: var(--text-3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.tour-prize {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tour-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tour-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.tour-row span { color: var(--text-3); }
.tour-row strong { color: #fff; font-weight: 600; text-align: right; }

/* ==========================
   VIP Levels
   ========================== */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.vip {
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vip-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}
.vip-newcomer .vip-icon { background: linear-gradient(135deg, #475569, #334155); color: #cbd5e1; }
.vip-bronze .vip-icon { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #fff; }
.vip-silver .vip-icon { background: linear-gradient(135deg, #c0c0c0, #808080); color: #fff; }
.vip-gold .vip-icon { background: linear-gradient(135deg, #ffd700, #d97706); color: #2B1A00; }
.vip-platinum .vip-icon { background: linear-gradient(135deg, #e5e4e2, #a855f7); color: #fff; }

.vip-name { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.vip-limits { display: flex; flex-direction: column; gap: 8px; }
.vip-limit { font-size: 12px; color: var(--text-2); }
.vip-limit strong { display: block; color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 2px; }

/* ==========================
   Payments
   ========================== */
.payments-wrap {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
}
.payments-row { margin-bottom: 24px; }
.payments-row:last-child { margin-bottom: 0; }
.payments-row-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.payments-list img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  transition: transform .15s ease;
}
.payments-list img:hover { transform: translateY(-2px); }

.payments-table {
  margin-top: 24px;
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.payments-table table { width: 100%; font-size: 13px; }
.payments-table th, .payments-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.payments-table th { background: var(--surface); color: var(--text-2); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.payments-table tr:last-child td { border-bottom: none; }
.payments-table td.num { font-weight: 700; color: var(--brand-2); }

/* ==========================
   Providers
   ========================== */
.providers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.providers img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform .15s ease, border-color .15s ease;
  padding: 8px;
}
.providers img:hover { transform: translateY(-2px); border-color: var(--brand); }

/* ==========================
   Steps
   ========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* ==========================
   Facts Table
   ========================== */
.facts {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.facts table { width: 100%; }
.facts tr { border-bottom: 1px solid var(--border); }
.facts tr:last-child { border-bottom: none; }
.facts th, .facts td {
  padding: 16px 22px;
  text-align: left;
  font-size: 14px;
}
.facts th {
  background: var(--bg-2);
  color: var(--text-2);
  font-weight: 600;
  width: 40%;
}
.facts td { color: #fff; }

/* ==========================
   FAQ
   ========================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 920px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--brand); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.faq-q .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--brand); }
.faq-icon img,
.faq-icon svg { width: 16px; height: 16px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* ==========================
   Pros & Cons
   ========================== */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pc {
  padding: 28px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.pc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pc-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}
.pc-pros .pc-icon { background: rgba(34,197,94,.15); color: var(--green); }
.pc-cons .pc-icon { background: rgba(239,68,68,.15); color: var(--red); }
.pc-title { font-size: 20px; font-weight: 800; }
.pc-list { display: flex; flex-direction: column; gap: 12px; }
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.pc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
}
.pc-pros .pc-list li::before { background: var(--green); }
.pc-cons .pc-list li::before { background: var(--red); }

/* ==========================
   Live Casino feature row
   ========================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.feature-row.reverse > div:first-child { order: 2; }

.feature-content h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}
.feature-content p {
  color: var(--text-2);
  margin-bottom: 18px;
  font-size: 15px;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.feature-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  font-size: 12px;
  color: var(--text-2);
}

.feature-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-2);
}
.feature-image-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================
   CTA Banner
   ========================== */
.cta-banner {
  position: relative;
  padding: 48px 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(229,0,70,.32), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255,193,7,.22), transparent 50%),
    var(--surface);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
}
.cta-banner-text { max-width: 640px; flex: 1; min-width: 280px; }
.cta-banner h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin-bottom: 8px; }
.cta-banner p { color: var(--text-2); font-size: 15px; }

/* ==========================
   Footer
   ========================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-about { max-width: 360px; }
.footer-about p { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-top: 12px; }
.footer-col-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-legal img { height: 28px; width: auto; opacity: .9; }
.footer-copy { font-size: 13px; color: var(--text-3); }

/* ==========================
   Mobile menu
   ========================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 90;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu .nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
}
.mobile-menu .nav-link:hover { background: var(--surface); }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================
   Responsive
   ========================== */
@media (max-width: 1200px) {
  .nav-link { padding: 10px 10px; font-size: 13px; }
  .header-inner { gap: 16px; }
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .providers { grid-template-columns: repeat(4, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .vip-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse > div:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pc-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .header-inner { height: 68px; gap: 10px; flex-wrap: nowrap; }
  .brand { min-width: 0; flex-shrink: 1; gap: 0; }
  .brand-logo { height: auto; max-height: 38px; max-width: 150px; width: auto; }
  .brand-mark { display: none; }
  .lang { display: none; }
  .header-actions { gap: 8px; margin-left: auto; flex-shrink: 0; }
  .header-actions .btn { padding: 12px 18px; font-size: 14px; border-radius: 12px; }
  .header-actions .btn-login { padding: 12px 16px; }
  .burger { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; }
  .burger img { width: 22px; height: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .providers { grid-template-columns: repeat(3, 1fr); }
  .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 32px 0 28px; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 22px; }
  .hero-bonus-card { width: 100%; padding: 12px 14px; gap: 12px; }
  .hero-bonus-icon { width: 36px; height: 36px; }
  .hero-bonus-amount { font-size: 18px; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .hero-card { padding: 22px 18px; border-radius: 20px; }
  .hero-card-big { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .payments-wrap { padding: 22px 18px; }
  .payments-table { font-size: 12px; overflow-x: auto; }
  .payments-table table { min-width: 480px; }
  .cta-banner { padding: 28px 22px; flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-banner .btn { width: 100%; }
  .feature-image { aspect-ratio: 4 / 3; }
  .facts th, .facts td { padding: 12px 16px; font-size: 13px; }
  .facts th { width: 45%; }
  .faq-q { padding: 16px 18px; font-size: 15px; }
  .faq-q .faq-icon { width: 28px; height: 28px; }
  .pc { padding: 22px 18px; }
  .step { padding: 20px 18px; }
  .section-head { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .header-inner { gap: 8px; height: 64px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 11px 14px; font-size: 13px; }
  .header-actions .btn-login { padding: 11px 12px; }
  .burger { width: 44px; height: 44px; }
  .burger img { width: 20px; height: 20px; }
  .brand-logo { max-height: 34px; max-width: 130px; }
  .hero-title { font-size: 26px; }
  .hero-card-big { font-size: 28px; }
  .hero-card { padding: 18px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-value { font-size: 18px; }
  .stat-label { font-size: 12px; }
  .stat-icon { width: 40px; height: 40px; }
  .stat-icon img, .stat-icon svg { width: 22px; height: 22px; }
  .vip-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .categories { grid-template-columns: 1fr 1fr; }
  .cat { padding: 18px 10px; }
  .cat-icon { width: 48px; height: 48px; border-radius: 14px; }
  .cat-icon img, .cat-icon svg { width: 28px; height: 28px; }
  .promo-box { padding: 10px; }
  .promo-box-code { font-size: 16px; letter-spacing: 1.5px; }
  .promo-box-copy { padding: 6px 10px; }
  .bonus { padding: 22px 18px; }
  .bonus-amount { font-size: 38px; }
  .feature-image-grid { grid-template-columns: repeat(3, 1fr); padding: 10px; gap: 6px; }
  .tour { padding: 22px 18px; border-radius: 18px; }
  .tour-prize { font-size: 30px; }
}

@media (max-width: 380px) {
  .container { padding: 0 10px; }
  .header-inner { gap: 6px; height: 60px; }
  .brand-logo { max-height: 30px; max-width: 110px; }
  .header-actions .btn { padding: 10px 12px; font-size: 12px; }
  .header-actions .btn-login { padding: 10px 10px; }
  .burger { width: 42px; height: 42px; }
  .burger img { width: 18px; height: 18px; }
  .hero-title { font-size: 22px; }
  .hero-subtitle { font-size: 14px; }
}

/* Mobile overflow safety net */
@media (max-width: 720px) {
  img { max-width: 100%; }
  .brand-logo { height: auto !important; max-height: 38px; width: auto; }
  .review-prose, .review-prose p { word-wrap: break-word; overflow-wrap: anywhere; }
  table { max-width: 100%; }
  .payments-table, .facts { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { min-width: 0; }
  .game-img, .feature-image-single { width: 100%; height: auto; }
}
