:root {
  --navy: #0f1629;
  --navy-mid: #1a2342;
  --navy-light: #243058;
  --gold: #f5c518;
  --gold-dark: #d4a90e;
  --gold-light: #ffd93d;
  --white: #ffffff;
  --grey-light: #e8eaf0;
  --grey-mid: #8a8fa8;
  --grey-dark: #4a5068;
  --text-body: #c9cdd8;
  --text-head: #ffffff;
  --card-bg: #1a2342;
  --card-border: #2a3560;
  --green-live: #22c55e;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --font-main: 'Segoe UI', 'Arial', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-body);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { display: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BONUS STRIP ─────────────────────────────────────────── */
.bonus-strip {
  background: linear-gradient(90deg, #d4a90e 0%, #f5c518 50%, #d4a90e 100%);
  text-align: center;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.bonus-strip span {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.bonus-strip .strip-emoji { font-size: 18px; }

.btn-strip {
  background: var(--navy);
  color: var(--gold) !important;
  border: 2px solid var(--navy);
  padding: 7px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}

.btn-strip:hover {
  background: var(--navy-light);
  border-color: var(--gold);
}

/* ── HEADER / NAV ─────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
  position: sticky;
  top: 44px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.logo-text .brand-sub {
  font-size: 10px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--grey-light);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover, .main-nav a.active {
  background: var(--navy-light);
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 800 !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0a0f22 0%, #1a2342 50%, #0d1629 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--grey-dark);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 200px;
}

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

.stat-card .stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-card .stat-label {
  font-size: 12px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.star-rating {
  color: var(--gold);
  font-size: 18px;
  margin-top: 8px;
}

/* ── SECTION HELPERS ──────────────────────────────────────────── */
section { padding: 60px 0; }

.section-head {
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-head h2 span { color: var(--gold); }

.section-head p {
  font-size: 16px;
  color: var(--grey-mid);
  max-width: 620px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 0;
}

/* ── GAMES GRID ────────────────────────────────────────────────── */
.games-section { background: var(--navy-mid); }

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

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 16px 18px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

.game-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,197,24,0.15); }
.game-card:hover::before { transform: scaleX(1); }

.game-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.game-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.game-tag {
  font-size: 11px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-play-btn {
  margin-top: 12px;
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.game-play-btn:hover { background: var(--gold-light); }

/* ── ARTICLE / REVIEW ─────────────────────────────────────────── */
.review-section { background: var(--navy); }

.review-section h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.25;
}

.review-section h2 span { color: var(--gold); }

.review-section h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--white);
  margin: 34px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.review-section p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}

.review-section ul, .review-section ol {
  margin: 0 0 18px 20px;
  color: var(--text-body);
}

.review-section li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.review-section li::marker { color: var(--gold); }

/* ── BONUS TABLE ──────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 24px 0;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--card-bg);
  font-size: 15px;
}

thead { background: var(--navy-light); }

th {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}

td {
  padding: 13px 16px;
  color: var(--text-body);
  border-bottom: 1px solid var(--card-border);
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(245,197,24,0.04); }

td:first-child { font-weight: 600; color: var(--white); }

/* ── FEATURES 3-COL ─────────────────────────────────────────── */
.features-section { background: var(--navy-mid); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.feat-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.feat-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ── MID BONUS BANNER ─────────────────────────────────────────── */
.mid-bonus {
  background: linear-gradient(90deg, #1a2342 0%, #243058 50%, #1a2342 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 30px 0;
}

.mid-bonus-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-bonus-text .eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 6px;
}

.mid-bonus-text strong {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--white);
  display: block;
}

.mid-bonus-text span {
  font-size: 14px;
  color: var(--grey-mid);
}

/* ── PAYMENTS ─────────────────────────────────────────────────── */
.payments-section { background: var(--navy); }

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.pay-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}

.pay-card:hover { border-color: var(--gold); }

.pay-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.pay-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pay-info p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews-section { background: var(--navy-mid); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

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

.review-card .rev-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: var(--navy);
  flex-shrink: 0;
}

.rev-author-info .rev-name {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
}

.rev-author-info .rev-loc {
  font-size: 12px;
  color: var(--grey-mid);
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-section { background: var(--navy); }

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-main);
}

.faq-question:hover { background: rgba(245,197,24,0.06); color: var(--gold); }

.faq-question.open { color: var(--gold); background: rgba(245,197,24,0.06); }

.faq-chevron {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── TRUST BADGES ──────────────────────────────────────────────── */
.trust-section {
  background: var(--navy-mid);
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.trust-badge-label {
  font-size: 12px;
  color: var(--grey-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: #090d1a;
  border-top: 1px solid var(--navy-light);
  padding: 50px 0 30px;
}

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

.footer-brand .logo-text .brand-name { font-size: 20px; }

.footer-desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: var(--grey-mid);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--navy-light);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 12px;
  color: var(--grey-dark);
  line-height: 1.7;
  max-width: 700px;
}

.footer-age {
  font-size: 13px;
  color: var(--grey-mid);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.age-badge {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 140px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--card-border);
    padding: 14px 20px;
    gap: 6px;
    z-index: 998;
  }
  .hamburger { display: flex; }
  .header-inner { position: relative; }
}

@media (max-width: 620px) {
  .bonus-strip { gap: 10px; font-size: 13px; }
  .hero { padding: 48px 0 40px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .mid-bonus-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; }
  .footer-age { align-items: flex-start; }
  section { padding: 44px 0; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
}

/* ── HIGHLIGHT BOX ────────────────────────────────────────────── */
.highlight-box {
  background: rgba(245,197,24,0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text-body);
  font-size: 15px;
}

/* ── RATING ROW ───────────────────────────────────────────────── */
.rating-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-label {
  min-width: 160px;
  font-size: 14px;
  color: var(--grey-mid);
  font-weight: 600;
}

.rating-bar {
  flex: 1;
  height: 7px;
  background: var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 300px;
}

.rating-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

.rating-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
  text-align: right;
}

/* ── VIP TIERS ────────────────────────────────────────────────── */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.vip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s;
}

.vip-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1e2c50 0%, #1a2342 100%);
}

.vip-card:hover { border-color: var(--gold); }

.vip-tier-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.vip-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vip-card p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.55;
}

/* ── LIVE BADGE ─────────────────────────────────────────────── */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green-live);
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
