:root {
  --bg: #070b0d;
  --bg-soft: #0e1418;
  --card: #131a20;
  --card-alt: #10171d;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(144, 255, 0, 0.35);
  --accent: #90ff00;
  --accent-soft: rgba(144, 255, 0, 0.14);
  --text: #f3f7f9;
  --text-dim: #b2bcc7;
  --text-muted: #93a0ad;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(90% 80% at 80% -10%, rgba(54, 120, 255, 0.1) 0%, rgba(54, 120, 255, 0) 64%),
    radial-gradient(90% 90% at 20% 0%, rgba(144, 255, 0, 0.08) 0%, rgba(144, 255, 0, 0) 56%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 96px;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 11, 13, 0.84);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  width: min(1160px, 100% - 32px);
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  flex-shrink: 0;
  width: 176px;
  height: auto;
}

.logo-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topnav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topnav a {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.topnav a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 0 30px rgba(144, 255, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-main:hover {
  background: #a6ff2f;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(144, 255, 0, 0.35);
}

.cta-main:active {
  transform: translateY(0);
}

.cta-main:focus-visible,
.cta-secondary:focus-visible,
.cta-muted:focus-visible,
.topnav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1160px, 100% - 32px);
  margin: 0 auto;
}

.hero {
  margin: 28px auto 18px;
  background: linear-gradient(126deg, #0b1115 0%, #090f12 52%, #0f151a 100%);
  border: 1px solid rgba(144, 255, 0, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
}

.hero-copy {
  padding: 38px 34px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.03;
  letter-spacing: -1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #d5dbe2;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 24px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--border-accent);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.cta-secondary:hover {
  background: rgba(144, 255, 0, 0.1);
  border-color: var(--accent);
}

.hero-media {
  position: relative;
  min-height: 290px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 13, 0.86) 0%, rgba(8, 11, 13, 0.26) 36%, rgba(8, 11, 13, 0) 64%);
  z-index: 2;
  pointer-events: none;
}

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

.countries {
  margin: 6px 0 16px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}

.country-link {
  min-height: 112px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-alt);
  padding: 12px 12px 10px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: stretch;
  justify-items: center;
  text-align: center;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.country-flag {
  font-size: 36px;
  line-height: 1;
  align-self: center;
  justify-self: center;
}

.country-name {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  align-self: end;
}

.country-link:hover {
  transform: translateY(-1px);
  border-color: var(--border-accent);
  background: rgba(255, 255, 255, 0.02);
}

.country-link.is-current {
  border-color: rgba(144, 255, 0, 0.5);
  background: rgba(144, 255, 0, 0.08);
}

.country-link.is-current .country-name {
  color: var(--accent);
}

.stats {
  margin: 16px 0 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  background: var(--card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.stat-value {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.7px;
  color: var(--accent);
  line-height: 1.03;
}

.stat-label {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0 16px;
}

.section-head h2 {
  font-size: clamp(24px, 3.8vw, 34px);
  letter-spacing: -0.7px;
  line-height: 1.1;
}

.section-head p {
  color: var(--text-muted);
  max-width: 58ch;
  font-size: 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.brand-card {
  background: linear-gradient(150deg, #131a20 0%, #0f161c 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.brand-top {
  display: grid;
  grid-template-columns: auto 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  color: #000;
  background: linear-gradient(135deg, #90ff00 0%, #66d400 100%);
}

.rank.rank-2 {
  background: linear-gradient(135deg, #d6d9e0 0%, #a7adba 100%);
}

.rank.rank-3 {
  background: linear-gradient(135deg, #edb178 0%, #be6d2a 100%);
}

.rank.rank-4,
.rank.rank-5,
.rank.rank-6 {
  background: linear-gradient(135deg, #8d97a4 0%, #606976 100%);
  color: #fff;
}

.brand-logo {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(6, 9, 11, 0.55);
  display: grid;
  place-items: center;
  padding: 9px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-info h3 {
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.bonus {
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.promo-desc {
  margin: 10px 0 12px;
  border-left: 2px solid rgba(144, 255, 0, 0.5);
  background: rgba(144, 255, 0, 0.06);
  border-radius: 8px;
  padding: 9px 11px;
  color: #d9e3eb;
  font-size: 13px;
}

.promo-desc strong {
  color: var(--accent);
}

.action-row {
  display: flex;
  justify-content: stretch;
}

.cta-brand {
  min-width: 100%;
}

.cta-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.cta-muted:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.bonus-muted {
  color: #b7c0ca;
  font-size: 15px;
  font-weight: 700;
}

.info-panel,
.faq-panel {
  margin: 16px 0 28px;
  background: var(--card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.info-grid {
  margin-top: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 14px;
  color: var(--text-dim);
}

.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  min-width: 480px;
  /* Ensures columns don't crush text on very narrow screens */
}

.bonus-table th,
.bonus-table td {
  font-size: 13px;
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  white-space: normal;
  word-wrap: break-word;
}

.bonus-table th {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 11px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  padding: 12px 14px;
}

.faq-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.faq-item p {
  color: var(--text-dim);
  font-size: 14px;
}

.site-footer {
  margin: 16px 0 90px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  background: rgba(7, 11, 13, 0.92);
  border-top: 1px solid rgba(144, 255, 0, 0.23);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sticky-cta-inner {
  width: min(1160px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky-cta-text {
  font-size: 13px;
  font-weight: 700;
}

.sticky-cta-text span {
  color: var(--text-muted);
  font-size: 11px;
  display: block;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .topnav {
    display: none;
  }

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

  .hero-media {
    min-height: 250px;
    order: -1;
  }

  .hero-media::before {
    background: linear-gradient(0deg, rgba(8, 11, 13, 0.82) 0%, rgba(8, 11, 13, 0.36) 36%, rgba(8, 11, 13, 0) 70%);
  }

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

  .brand-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .topbar-inner,
  .container {
    width: calc(100% - 20px);
  }

  .topbar-inner {
    height: 68px;
  }

  .logo {
    width: 140px;
  }

  .logo-text {
    display: none;
  }

  .cta-main {
    padding: 10px 14px;
    font-size: 12px;
  }

  #top-cta {
    font-size: 11px;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .hero {
    margin-top: 14px;
  }

  .hero-copy {
    padding: 20px 16px 22px;
  }

  .badge {
    font-size: 10px;
    letter-spacing: 0.7px;
    padding: 5px 10px;
    gap: 5px;
  }

  .hero h1 {
    font-size: clamp(30px, 10.4vw, 40px);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 15px;
    /* was 16px */
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-media {
    min-height: 186px;
  }

  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .country-link {
    min-height: 94px;
    padding: 10px 8px 8px;
  }

  .country-flag {
    font-size: 30px;
  }

  .country-name {
    font-size: 13px;
  }

  .stats {
    gap: 8px;
    margin-top: 10px;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-value {
    font-size: 32px;
  }

  .section-head {
    display: block;
    margin-top: 18px;
  }

  .section-head h2 {
    font-size: 27px;
    margin-bottom: 8px;
  }

  .brand-card {
    padding: 14px;
  }

  .brand-top {
    grid-template-columns: 34px 64px minmax(0, 1fr);
    gap: 8px;
  }

  .rank {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 11px;
    padding: 8px;
  }

  .brand-info h3 {
    font-size: 20px;
  }

  .bonus {
    font-size: 15px;
  }

  .action-row {
    flex-direction: column;
  }

  .cta-brand {
    min-width: 100%;
  }

  .info-panel,
  .faq-panel {
    padding: 16px;
  }

  .bonus-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .site-footer {
    margin-bottom: 96px;
  }

  .sticky-cta-inner {
    min-height: 68px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
  }
}

/* Extra small devices (iPhone SE width 320px) */
@media (max-width: 360px) {
  .logo-wrap .logo {
    width: 130px;
  }

  .topbar-inner {
    gap: 8px;
  }

  .cta-main { padding: 8px 10px; font-size: 11px; }

  .hero-copy {
    padding: 16px 12px 18px;
  }

  .hero h1 {
    font-size: clamp(26px, 9vw, 32px);
  }
}
