:root {
  --bg: #ffffff;
  --bg-card: #faf5ff;
  --bg-soft: #f5f3ff;
  --navy: #4c1d95;
  --navy-mid: #6d28d9;
  --navy-light: #ede9fe;
  --accent: #8b5cf6;
  --accent-hover: #7c3aed;
  --accent-dim: rgba(139, 92, 246, 0.14);
  --text: #1e1b2e;
  --text-muted: #6b6280;
  --border: #e9e0f5;
  --gold: #fbbf24;
  --purple: #c4b5fd;
  --purple-deep: #3b0764;
  --header-offset: 24px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(76, 29, 149, 0.1);
  --shadow-lg: 0 8px 40px rgba(76, 29, 149, 0.14);
  --max: 920px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

a {
  color: var(--navy-mid);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  position: static !important;
  top: auto !important;
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

/* Верхний промо-баннер Betby */
.header-promo {
  display: block;
  background: linear-gradient(
    90deg,
    #ddd6fe 0%,
    #a78bfa 18%,
    #8b5cf6 40%,
    #7c3aed 65%,
    #6d28d9 85%,
    #4c1d95 100%
  );
  color: #fff;
  text-decoration: none;
}

.header-promo:hover {
  color: #fff;
  background: linear-gradient(
    90deg,
    #ede9fe 0%,
    #c4b5fd 18%,
    #a78bfa 40%,
    #8b5cf6 65%,
    #7c3aed 85%,
    #5b21b6 100%
  );
}

.header-promo-inner {
  width: 100%;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr minmax(120px, auto);
  align-items: center;
  gap: 16px 24px;
}

.header-promo-by {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-promo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.header-promo-title {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}

.header-promo-prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.15;
}

.header-promo-small {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

.header-promo-amount {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-top: 2px;
}

.header-promo-get {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.header-promo:hover .header-promo-get {
  background: var(--gold);
  color: var(--navy);
}

/* Fallback for older promo markup (cache-safe) */
.header-promo-badge,
.header-promo-copy,
.header-promo-label,
.header-promo-highlight,
.header-promo-btn {
  color: #fff;
}

.header-promo-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.9;
}

.header-promo-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.header-promo-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.header-promo-highlight {
  font-size: clamp(1.2rem, 4.2vw, 2rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--gold);
}

.header-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Основная полоса на всю ширину */
.header-bar {
  width: 100%;
  background: var(--navy);
  padding: 12px 0 14px;
  margin-top: 0;
}

.header-bar-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.logo {
  display: none !important;
  align-items: center;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo:hover .logo-img {
  opacity: 0.92;
}

.content-figure {
  margin: 28px 0;
  text-align: center;
}

.content-figure img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-figure figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Навигация */
.page-nav {
  flex: 0 1 auto;
}

.page-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
}

.page-nav a {
  display: block;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s;
}

.page-nav a:hover,
.page-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.page-nav a.nav-link-freebets {
  color: #1a1a1a !important;
  background: linear-gradient(135deg, #fde047, #fbbf24);
  box-shadow: 0 2px 12px rgba(251, 191, 36, 0.45);
}

.page-nav a.nav-link-freebets:hover,
.page-nav a.nav-link-freebets.active {
  color: #1a1a1a !important;
  background: linear-gradient(135deg, #fef08a, #fcd34d);
  transform: translateY(-1px);
}

.header-bar .header-cta {
  flex-shrink: 0;
}

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.article h1 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.25;
  margin: 32px 0 16px;
  color: var(--navy);
}

.page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.page-chips a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: 0.2s;
}

.page-chips a:hover {
  background: var(--navy-light);
  border-color: var(--navy-mid);
  color: var(--navy);
}

.page-chips a.chip-freebets {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  color: #fff;
  border-color: transparent;
}

.page-chips a.chip-freebets:hover {
  color: #fff;
  filter: brightness(1.08);
}

.key-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.key-stat {
  text-align: center;
  padding: 14px 10px;
  background: linear-gradient(180deg, var(--bg-card) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.key-stat-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.key-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.intro-more {
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow: hidden;
}

.intro-more summary {
  padding: 14px 18px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.intro-more summary::-webkit-details-marker {
  display: none;
}

.intro-more summary::after {
  content: " ▾";
  color: var(--text-muted);
  font-weight: 400;
}

.intro-more[open] summary::after {
  content: " ▴";
}

.intro-more-body {
  padding: 0 18px 16px;
  border-top: 1px solid var(--border);
}

.intro-more-body p {
  margin: 12px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.article h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
  padding: 16px 20px;
  color: var(--navy);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  scroll-margin-top: var(--header-offset);
}

.article > p {
  max-width: 72ch;
}

.article h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--navy-mid);
  scroll-margin-top: var(--header-offset);
}

.article p,
.article li {
  color: var(--text);
}

.article strong {
  color: var(--navy);
}

.article ul,
.article ol {
  padding-left: 1.25rem;
}

.article ol li {
  margin-bottom: 12px;
}

/* Hero CTA */
.hero-cta {
  background: linear-gradient(135deg, var(--navy-light) 0%, #f3e8ff 50%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 28px 0 36px;
  box-shadow: var(--shadow);
}

.hero-cta-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-cta-text {
  flex: 1 1 280px;
}

.hero-cta-media {
  flex: 0 1 320px;
  margin: 0;
  max-width: 100%;
}

.hero-img {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.hero-cta h2 {
  margin: 0;
  border: none;
  padding: 0;
  font-size: 1.35rem;
  color: var(--navy);
}

.hero-cta p {
  margin: 8px 0 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.betby-card-img {
  margin: -8px -8px 16px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  max-height: 140px;
}

.betby-card-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.btn-outline {
  display: inline-flex;
  padding: 12px 24px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  border-radius: 10px;
  transition: 0.2s;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Betby */
.betby-section {
  margin: 40px 0;
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.betby-section > h2 {
  border: none;
  margin-top: 0;
  padding-top: 0;
}

.betby-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.betby-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.betby-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-mid), var(--accent));
}

.betby-card .prize {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 8px 0;
}

.betby-card .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.betby-meta span {
  background: var(--navy-light);
  color: var(--navy-mid);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.betby-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* FAQ accordion */
.faq-section {
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  scroll-margin-top: var(--header-offset);
}

.faq-section > h2 {
  border: none;
  padding-top: 0;
  margin-top: 0;
}

.faq-intro {
  color: var(--text-muted);
  margin: -8px 0 24px;
  font-size: 0.95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
}

.faq-item[open] {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s, background 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--navy);
  color: #fff;
}

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--bg-soft);
}

.faq-answer p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.65;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg);
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 720px;
}

.odds-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 10px;
  white-space: nowrap;
}

.odds-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.odds-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

.odds-table tbody tr:hover {
  background: var(--navy-light);
}

.odd-link {
  display: inline-block;
  min-width: 44px;
  text-align: center;
  padding: 4px 8px;
  background: var(--accent-dim);
  border-radius: 6px;
  font-weight: 700;
  color: var(--accent) !important;
  transition: 0.15s;
}

.odd-link:hover {
  background: var(--accent);
  color: #fff !important;
}

/* Freebets page */
.page-hero {
  text-align: center;
  padding: 48px 20px 32px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin: 0 0 12px;
  color: #fff;
}

.page-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 24px;
}

.page-hero-img {
  max-width: 640px;
  margin: 0 auto 24px;
}

.page-hero-img img {
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.page-hero .label {
  color: var(--accent) !important;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 32px auto;
  padding: 0 20px;
}

.stat-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-box .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-box .desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 40px 0;
}

.stage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.stage-card .num {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.scoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.scoring-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 28px;
}

.scoring-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.rules-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border);
}

.cta-block {
  text-align: center;
  padding: 48px 20px;
  background: linear-gradient(135deg, var(--navy-light), var(--bg-card));
  border-radius: var(--radius);
  margin: 48px 0;
  border: 1px solid var(--border);
}

.cta-block h2 {
  color: var(--navy);
}

.cta-block-lead {
  color: var(--text-muted);
  margin: 0 auto 20px;
  max-width: 520px;
}

/* Footer */
.site-footer {
  border-top: 2px solid var(--navy);
  background: var(--bg-soft);
  padding: 32px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--navy-mid);
  font-weight: 600;
}

.disclaimer {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  :root {
    --header-offset: 20px;
  }

  .betby-cards,
  .scoring-grid {
    grid-template-columns: 1fr;
  }

  .stages {
    grid-template-columns: 1fr 1fr;
  }

  .header-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 12px 16px;
    gap: 10px;
  }

  .header-promo-get,
  .header-promo-btn {
    justify-self: center;
    width: 100%;
    max-width: 220px;
  }

  .header-promo-by {
    justify-self: center;
  }

  .key-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-bar-inner {
    padding: 0 14px;
  }

  .header-bar-inner {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    align-self: center;
  }

  .page-nav ul {
    justify-content: center;
    gap: 6px 4px;
  }

  .page-nav a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .header-bar .header-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-cta-body {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta-text .btn-primary {
    width: 100%;
    max-width: 280px;
  }

  .faq-section {
    padding: 20px 16px;
  }

  .faq-item summary {
    padding-right: 44px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stages {
    grid-template-columns: 1fr;
  }
}

/* Bonus landing page */
.bonus-article {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 40px;
}

.bonus-article .section-lead {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  color: var(--navy);
  margin: 36px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-light);
}

.bonus-article h2 {
  font-size: 1.3rem;
  margin: 40px 0 14px;
  padding: 14px 18px;
  color: var(--navy);
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  scroll-margin-top: var(--header-offset);
}

.bonus-article h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--navy-mid);
}

.bonus-article p,
.bonus-article li {
  max-width: 72ch;
  color: var(--text);
}

.bonus-article > p:first-of-type {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 20px 0 28px;
}

.bonus-type-card,
.info-card {
  background: linear-gradient(180deg, #fff 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.bonus-type-card .card-title,
.info-card .card-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--navy);
}

.bonus-type-card p,
.info-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: none;
}

.card-label {
  font-weight: 700;
  color: var(--navy-mid);
}

.timeline-waves {
  margin: 20px 0 28px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.timeline-list {
  margin: 0;
  padding-left: 1.2rem;
}

.timeline-list li {
  margin-bottom: 12px;
  max-width: none;
}

.stage-detail {
  margin: 28px 0;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stage-detail:empty {
  display: none;
}

.stage-detail h3 {
  margin-top: 0;
  color: var(--navy);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.bonus-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  vertical-align: top;
}

.bonus-table tr:first-child td {
  background: var(--navy-light);
  font-weight: 700;
  color: var(--navy);
}

.cta-inline {
  text-align: center;
  margin: 32px 0;
  padding: 28px 20px;
  background: linear-gradient(135deg, var(--navy-light), #f3e8ff);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cta-inline p {
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--navy);
  max-width: none;
}

.highlight-figure {
  margin: 28px 0;
}

.betby-stages-block {
  scroll-margin-top: var(--header-offset);
}

#withdraw {
  scroll-margin-top: var(--header-offset);
}

#intro {
  scroll-margin-top: var(--header-offset);
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .container,
  .bonus-article {
    padding-left: 14px;
    padding-right: 14px;
  }

  .bonus-article {
    padding-bottom: 32px;
  }

  .article h2,
  .bonus-article h2 {
    padding: 12px 14px;
    font-size: 1.12rem;
    margin: 32px 0 12px;
  }

  .bonus-article p,
  .bonus-article li,
  .article > p {
    max-width: none;
  }

  .timeline-waves,
  .cta-inline,
  .cta-block {
    padding: 18px 14px;
    margin-left: 0;
    margin-right: 0;
  }

  .stage-detail {
    margin: 20px 0;
    padding: 14px 12px;
    box-shadow: none;
  }

  .stage-detail .table-wrap {
    margin-left: -12px;
    margin-right: -12px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  .bonus-table {
    font-size: 0.78rem;
  }

  .bonus-table td {
    padding: 8px 6px;
  }

  .table-wrap {
    margin-left: -2px;
    margin-right: -2px;
  }
}

@media (max-width: 480px) {
  .container,
  .bonus-article {
    padding-left: 12px;
    padding-right: 12px;
  }

  .stage-detail {
    padding: 12px 10px;
  }

  .stage-detail .table-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}
