*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1c2633;
  --bg-card-hover: #243040;
  --accent-green: #39d353;
  --accent-green-dark: #2ea043;
  --accent-yellow: #f7c948;
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --border-color: #30363d;
  --nav-bg: #161b22;
  --badge-new: #da3633;
  --badge-hot: #f78166;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 60px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-wrap img {
  height: 38px;
  width: auto;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-yellow);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent-green); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
nav.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav.main-nav a:hover { color: var(--text-primary); background: var(--bg-card); }

.nav-badge {
  display: inline-block;
  background: var(--badge-new);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn-search {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.btn-search:hover { color: var(--text-primary); }
.btn-search svg { width: 18px; height: 18px; }

.btn-signup {
  background: var(--accent-green);
  color: #0d1117;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-signup:hover { background: var(--accent-green-dark); transform: translateY(-1px); }

.btn-signin {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s, background 0.2s;
}
.btn-signin:hover { border-color: var(--text-secondary); background: var(--bg-card); }

/* ── CATEGORY TABS ── */
.category-tabs {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 52px;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tab-item:hover { color: var(--text-primary); background: var(--bg-card); }
.tab-item.active { color: var(--accent-green); background: rgba(57,211,83,0.1); }
.tab-icon { font-size: 1rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 40%, #1a2332 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(57,211,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(57,211,83,0.12);
  border: 1px solid rgba(57,211,83,0.3);
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bonus {
  background: linear-gradient(135deg, rgba(247,201,72,0.15), rgba(57,211,83,0.1));
  border: 1px solid rgba(247,201,72,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}
.hero-bonus-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.hero-bonus-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #0d1117;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(57,211,83,0.35);
  border: none;
  cursor: pointer;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(57,211,83,0.5); }
.btn-cta svg { width: 18px; height: 18px; }

/* ── MAIN LAYOUT ── */
.main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ── SECTION TITLE ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.see-all-link {
  color: var(--accent-green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.see-all-link:hover { opacity: 0.8; }

/* ── GAMES GRID ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 100%;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57,211,83,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.game-thumb {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1c2633 0%, #243040 50%, #1c2633 100%);
}

.game-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-thumb-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.game-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  background: var(--badge-new);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-badge.hot { background: var(--badge-hot); }

.game-info {
  padding: 0.6rem 0.8rem;
  min-width: 0;
}
.game-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.game-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .game-info { padding: 0.45rem 0.55rem; }
}

/* ── CONTENT AREA ── */
.content-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.content-section p:last-child { margin-bottom: 0; }

.content-section a {
  color: var(--accent-green);
  text-decoration: underline;
  text-decoration-color: rgba(57,211,83,0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.content-section a:hover { text-decoration-color: var(--accent-green); }

/* ── TOC ── */
.toc-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

/* ── TABLE ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--bg-card);
}

thead { background: var(--bg-primary); }
th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid var(--border-color);
}
td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-card-hover); }

@media (max-width: 600px) {
  thead { display: none; }
  table { min-width: unset; }
  tr {
    display: block;
    margin-bottom: 1em;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
  }
  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 0.9em;
    border-bottom: 1px solid var(--border-color);
  }
  td:last-child { border-bottom: none; }
  td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex-shrink: 0;
    margin-right: 1rem;
  }
}

/* ── FAQ ── */
.faq-section {
  margin-bottom: 2rem;
}

.faq-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

details {
  margin-bottom: 0.75rem;
  padding: 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.2s;
}
details:hover { border-color: rgba(57,211,83,0.3); }
details[open] { border-color: rgba(57,211,83,0.4); }

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent-green);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}
details[open] summary {
  color: var(--accent-green);
  background: rgba(57,211,83,0.06);
}
details[open] summary::after { content: '−'; }

details p {
  padding: 0 1.25rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

/* ── REVIEWS ── */
.reviews-section {
  margin-bottom: 2rem;
}

.reviews-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comment {
  background: var(--bg-card);
  padding: 1em 1.2em;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}
.comment:hover { border-color: rgba(57,211,83,0.25); }

.comment-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; flex-wrap: wrap; }

.comment-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-green);
}

.comment-date {
  font-size: 0.85em;
  color: var(--text-secondary);
  opacity: 0.6;
}

.comment-stars { color: var(--accent-yellow); font-size: 0.85rem; margin-left: auto; }

.comment-text {
  margin-top: 0.5em;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Review form */
.review-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.review-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-form textarea,
.review-form input[type="text"] {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 7px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}
.review-form textarea { min-height: 110px; }
.review-form textarea:focus,
.review-form input[type="text"]:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(57,211,83,0.15);
}
.review-form textarea::placeholder,
.review-form input[type="text"]::placeholder { color: var(--text-muted); }

.review-form button {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
  color: #0d1117;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.review-form button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(57,211,83,0.4); }

/* ── AUTHOR ── */
.author-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), #1a7a35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(57,211,83,0.3);
}

.author-body { flex: 1; }

.author-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(57,211,83,0.3); transform: translateY(-2px); }

.feature-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.feature-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.feature-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: var(--nav-bg);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-green); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-payments {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.5rem;
  overflow: hidden;
}

.footer-payments img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 110px;
  max-height: 45px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.footer-certificate {
  margin-top: 1.25rem;
}

.footer-certificate img {
  display: block;
  width: auto;
  height: auto;
  max-width: 135px;
  max-height: 85px;
  object-fit: contain;
  background: transparent;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-payments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .main-wrap { padding: 1.5rem 1rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-payments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.5rem;
  }
  .footer-payments img {
    height: 48px;
    max-width: 140px;
    max-height: 52px;
  }
  .footer-certificate {
    display: flex;
    justify-content: center;
  }
  .author-section { flex-direction: column; align-items: center; text-align: center; }
  .author-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
  .content-section { padding: 1.25rem; }
}

@media (max-width: 420px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
.stat-item {
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  flex: 1;
  min-width: 130px;
}
.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

/* ── BONUS BANNER ── */
.bonus-banner {
  background: linear-gradient(135deg, rgba(247,201,72,0.1) 0%, rgba(57,211,83,0.08) 100%);
  border: 1px solid rgba(247,201,72,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bonus-banner-left { flex: 1; min-width: 200px; }
.bonus-banner-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-yellow);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.bonus-banner-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.bonus-banner-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.btn-cta-compact {
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
}

.link-accent {
  color: var(--accent-green);
}

/* ── PROVIDERS SLIDER ── */
.providers-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.providers-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.providers-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.providers-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.providers-btn svg {
  width: 18px;
  height: 18px;
}

.providers-btn:hover:not(:disabled) {
  background: var(--bg-card-hover);
  color: var(--accent-green);
}

.providers-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.providers-viewport {
  container-type: inline-size;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
}

.providers-viewport::-webkit-scrollbar {
  display: none;
}

.providers-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  width: max-content;
}

.providers-card {
  flex: 0 0 140px;
  width: 140px;
  flex-basis: calc((100cqw - 112px) / 8);
  width: calc((100cqw - 112px) / 8);
  height: 64px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  min-width: 0;
}

.providers-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1100px) {
  .providers-card {
    flex-basis: calc((100cqw - 80px) / 6);
    width: calc((100cqw - 80px) / 6);
  }
}

@media (max-width: 900px) {
  .providers-card {
    flex-basis: calc((100cqw - 64px) / 5);
    width: calc((100cqw - 64px) / 5);
  }
}

@media (max-width: 640px) {
  .providers-title {
    font-size: 0.95rem;
  }

  .providers-btn {
    width: 44px;
    height: 44px;
  }

  .providers-btn svg {
    width: 20px;
    height: 20px;
  }

  .providers-track {
    gap: 12px;
  }

  .providers-card {
    flex-basis: 140px;
    width: 140px;
    height: 62px;
  }

  .providers-card img {
    max-height: 38px;
  }
}
