/* === COLOR VARIABLES === */
:root {
  --color-brand: #ffe600;
  --color-dark: #07000e;
  --color-light: #fffdf1;
  --color-card: #170a24;
  --color-border: #322044;
  --color-muted: #b8adc5;
  --color-secondary: #241036;
  --color-live: #ff3434;
  --color-win: #35ff8a;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 76% 8%, rgba(105, 33, 140, 0.28), transparent 34%),
    linear-gradient(180deg, #12001e 0%, var(--color-dark) 18%, #07000e 100%);
  color: var(--color-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.content-paragraphs a,
.faq-answer a,
.section-subtitle a,
.cta-subtitle a {
  color: var(--color-brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.content-paragraphs a:hover,
.faq-answer a:hover,
.section-subtitle a:hover,
.cta-subtitle a:hover {
  border-bottom-color: currentColor;
}

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

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.text-brand {
  color: var(--color-brand);
}

.bg-brand {
  background-color: var(--color-brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-dark);
  box-shadow: 0 14px 28px rgba(255, 230, 0, 0.14);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-light);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  background: #20102e;
  border-color: rgba(255, 230, 0, 0.34);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(19, 3, 32, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo img, .header-logo svg {
  height: 34px;
  width: auto;
}

.header-nav {
  display: none;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--color-light);
}

.header-actions {
  display: none;
  gap: 8px;
}

.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--color-light);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  width: 100%;
  min-height: calc(100svh - 64px);
  background: #12001e;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 140;
  overflow-y: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  .header-actions {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* === HERO === */
.hero {
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding: 112px 0 42px;
}

.hero-content {
  max-width: 620px;
  min-width: 0;
}

.hero h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.hero-bonus {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 230, 0, 0.13), transparent 34%),
    linear-gradient(135deg, #1b0c29, #10051a);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  max-width: 100%;
}

.hero-bonus-percent {
  font-size: clamp(34px, 10vw, 48px);
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1;
  overflow-wrap: anywhere;
}

.hero-bonus-label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--color-light);
}

.hero-bonus-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
}

.hero .btn-primary {
  padding: 16px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-actions .btn {
  flex: 1 1 220px;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy p {
  margin-bottom: 14px;
}

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 66% 38%, rgba(255, 230, 0, 0.10), transparent 32%),
    linear-gradient(135deg, #1a0827, #08010f);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  min-width: 0;
  max-width: 100%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 1, 15, 0.03) 0%, rgba(8, 1, 15, 0.20) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-panel {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 207, 59, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(43, 32, 25, 0.98), rgba(16, 16, 14, 0.98));
}

.hero-panel-inner {
  width: 100%;
  padding: 28px;
  display: grid;
  gap: 20px;
  align-content: center;
}

.hero-panel-logo {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-panel-card {
  border: 1px solid rgba(247, 213, 29, 0.28);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-card strong {
  display: block;
  color: var(--color-light);
  font-size: 14px;
  line-height: 1.5;
}

.hero-art {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  padding: 14px;
}

.hero-art img {
  aspect-ratio: 1200 / 630;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-benefit {
  border: 1px solid rgba(255, 230, 0, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-benefit-label {
  display: block;
  margin-bottom: 4px;
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === LIVE BETTING PREVIEW === */
.betting-strip {
  padding: 0 0 22px;
}

.ticker-row {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(23, 10, 36, 0.72);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
}

.ticker-row:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-live);
  box-shadow: 0 0 0 7px rgba(255, 52, 52, 0.12);
  animation: livePulse 1.4s ease-in-out infinite;
}

.odds-value {
  color: var(--color-win);
  font-weight: 900;
}

.live-betting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 18px;
}

.live-betting-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.live-betting-head h2 span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-live);
  box-shadow: 0 0 0 12px rgba(255, 52, 52, 0.10);
  animation: livePulse 1.4s ease-in-out infinite;
}

.live-betting-head a {
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sports-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.sports-tabs a {
  flex: 0 0 auto;
  min-width: 96px;
  text-align: center;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  background: var(--color-card);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.sports-tabs a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 230, 0, 0.36);
  color: var(--color-light);
}

.sports-tabs .active {
  background: var(--color-light);
  color: var(--color-dark);
  border-color: var(--color-light);
}

.match-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}

.match-card {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(23, 10, 36, 0.92);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.match-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 230, 0, 0.34);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.match-meta,
.match-teams,
.odds-row {
  display: grid;
  gap: 8px;
}

.match-meta {
  grid-template-columns: 1fr auto;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.match-clock {
  color: var(--color-live);
}

.match-teams {
  grid-template-columns: 1fr auto;
  margin: 18px 0;
  color: var(--color-light);
  font-weight: 900;
}

.match-teams span:nth-child(even) {
  color: var(--color-brand);
  font-size: 20px;
}

.odds-row {
  grid-template-columns: 1fr;
}

.odds-row span {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}

.odds-row span:hover {
  background: rgba(255, 230, 0, 0.12);
  transform: translateY(-1px);
}

@keyframes tickerScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(255, 52, 52, 0.12);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(255, 52, 52, 0.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .live-dot,
  .live-betting-head h2 span {
    animation: none;
  }
}

@media (min-width: 768px) {
  .match-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .odds-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-benefit strong {
  display: block;
  color: var(--color-light);
  font-size: 13px;
  line-height: 1.45;
}

.hero-disclaimer {
  font-size: 11px;
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .header {
    background: var(--color-dark);
    backdrop-filter: none;
  }

  .hero {
    padding: 96px 0 28px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    margin-bottom: 20px;
    overflow-wrap: anywhere;
  }

  .hero-bonus {
    text-align: center;
    padding: 22px 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .hero-art {
    min-height: auto;
    width: 100%;
  }

  .page-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-disclaimer {
    text-align: center;
  }

  .header-logo img, .header-logo svg {
    height: 34px;
  }
}

.page-hero {
  min-height: auto;
  padding: 128px 16px 48px;
  text-align: left;
}

.page-hero .hero-content {
  max-width: 760px;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(247, 213, 29, 0.14);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-copy {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}

.step-card .step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p,
.step-card li {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-card ul {
  padding-left: 18px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(30, 32, 41, 0.95), rgba(24, 26, 34, 0.95));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-bonus-percent {
    font-size: 64px;
  }
  .hero-panel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === SECTION === */
.section {
  padding: 18px 0;
}

.section-alt {
  background: rgba(23, 10, 36, 0.54);
}

.author-section {
  padding: 18px 0 10px;
}

.author-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 230, 0, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(34, 14, 53, 0.96), rgba(14, 4, 24, 0.96));
}

.author-avatar {
  width: 108px;
  height: 108px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 230, 0, 0.34);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.author-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.author-card h2 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.author-role {
  color: var(--color-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.author-content p,
.author-checks li {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

.author-checks {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding-left: 18px;
}

@media (min-width: 768px) {
  .author-card {
    grid-template-columns: 132px 1fr;
    padding: 24px;
  }
  .author-avatar {
    width: 132px;
    height: 132px;
  }
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section {
    padding: 10px 0;
  }
  .section-title {
    font-size: 36px;
  }
}

.subsection-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--color-light);
}

@media (min-width: 768px) {
  .subsection-title {
    font-size: 26px;
  }
}

/* === GAMES === */
.games-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-brand);
  color: #090010;
  border-color: var(--color-brand);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-card {
  display: block;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  color: inherit;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.game-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-card));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-thumb svg {
  width: 40px;
  height: 40px;
  color: var(--color-brand);
  opacity: 0.5;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  filter: brightness(0.72) contrast(1.08) saturate(1.1);
}

.game-thumb.has-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 1, 15, 0.18) 0%, rgba(8, 1, 15, 0.42) 60%, rgba(8, 1, 15, 0.68) 100%),
    radial-gradient(circle at top right, rgba(255, 230, 0, 0.12), transparent 34%);
  pointer-events: none;
}

.game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-hot {
  background: var(--color-live);
  color: white;
}
.badge-new {
  background: var(--color-win);
  color: #08010f;
}

.game-info {
  padding: 12px;
}
.game-name {
  font-size: 14px;
  font-weight: 600;
}
.game-category {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: capitalize;
}

@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === BRAND INFO === */
.brand-intro {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(15, 5, 25, 0.74);
}

.info-table tr:nth-child(even) {
  background: rgba(36, 16, 54, 0.58);
}

.info-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}

.info-table td:first-child {
  border-left: 3px solid var(--color-brand);
  font-weight: 600;
  color: var(--color-light);
  white-space: nowrap;
  width: 200px;
}

.info-table td:last-child {
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .info-table td:first-child {
    width: auto;
    white-space: normal;
  }
  .info-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* === PROS CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pros-list, .cons-list {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}

.pros-cons-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-cons-title .icon-check {
  color: var(--color-win);
}
.pros-cons-title .icon-x {
  color: var(--color-live);
}

.pros-list ul, .cons-list ul {
  list-style: none;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.li-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

@media (min-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

/* === PROMOTIONS === */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.promo-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s;
}
.promo-card:hover {
  transform: translateY(-2px);
}

.promo-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 230, 0, 0.16);
  color: var(--color-brand);
  margin-bottom: 12px;
}

.promo-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === CONTENT === */
.content-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.content-feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
}

.content-feature-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.content-feature-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.content-paragraphs p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.utility-media {
  margin: 8px 0 18px;
  display: flow-root;
}

.utility-visual {
  width: min(100%, 360px);
  margin: 0 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-card);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.utility-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.step-table {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(23, 10, 36, 0.72);
}

.step-copy {
  min-width: 0;
}

.step-copy .step-number {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-copy h3 {
  margin-bottom: 6px;
  color: var(--color-light);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.step-copy p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.step-copy .step-note {
  margin-top: 8px;
  color: var(--color-light);
  opacity: 0.84;
}

.step-art {
  width: min(100%, 320px);
  border: 1px solid rgba(255, 230, 0, 0.18);
  border-radius: 10px;
  overflow: hidden;
  justify-self: start;
  background: var(--color-card);
}

.step-art img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 820px) {
  .utility-media-left .utility-visual {
    float: left;
    margin: 0 24px 14px 0;
  }

  .utility-media-right .utility-visual {
    float: right;
    margin: 0 0 14px 24px;
  }

  .step-row {
    grid-template-columns: minmax(0, 1fr) 260px;
    padding: 16px 18px;
  }

  .step-art {
    width: 260px;
    justify-self: end;
  }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.section-cta .btn {
  min-width: min(100%, 260px);
}

@media (min-width: 768px) {
  .content-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(23, 10, 36, 0.72);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-title {
  display: block;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq-question:hover {
  color: var(--color-brand);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
  color: var(--color-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 16px 16px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.review-quote {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-brand);
  opacity: 0.2;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-brand);
  color: var(--color-brand);
}

.review-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
}

.review-name {
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === CTA === */
.cta-section {
  text-align: center;
  padding: 48px 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 230, 0, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(23, 10, 36, 0.42), rgba(7, 0, 14, 0));
}

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 230, 0, 0.16);
  color: var(--color-brand);
  margin-bottom: 16px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #10051a;
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer-links-group h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links-group a {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--color-light);
}

.footer-payment {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.footer-payment h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-icon {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.payment-icon svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}