@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --gold: #F5C842;
  --gold-dark: #D4A800;
  --gold-light: #FFE080;
  --red: #C8102E;
  --red-dark: #9B0020;
  --bg-dark: #0A0A0F;
  --bg-card: #13131C;
  --bg-card2: #1A1A28;
  --bg-header: #0D0D18;
  --text-main: #F0EDE8;
  --text-muted: #A09CB0;
  --text-gold: #F5C842;
  --border: #2A2A3E;
  --border-gold: #F5C84240;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--gold); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--text-main); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; color: var(--gold); margin-bottom: 0.6rem; }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-main); }

p { margin-bottom: 1rem; color: var(--text-main); }

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

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0A0A0F;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,200,66,0.4);
  color: #0A0A0F;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0A0A0F;
}
.btn-red {
  background: linear-gradient(135deg, #E8203A 0%, var(--red-dark) 100%);
  color: #fff;
}
.btn-red:hover {
  box-shadow: 0 6px 24px rgba(200,16,46,0.5);
  color: #fff;
}

.section { padding: 60px 0; }
.section-alt { background: var(--bg-card); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.8rem 0 1.6rem;
  border-radius: 2px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, #7B0019 100%);
  padding: 10px 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--gold);
}
.top-bar span { color: #fff; margin-right: 12px; }
.top-bar .top-bar-age {
  background: var(--gold);
  color: #0A0A0F;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  margin-right: 12px;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.1;
}
.logo-text span:first-child { color: var(--gold); display: block; font-size: 1.35rem; }
.logo-text span:last-child { color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--gold); background: rgba(245,200,66,0.07); }

.header-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.header-btns .btn { padding: 9px 20px; font-size: 0.8rem; }

/* ===== BONUS BANNER TOP ===== */
.bonus-hero {
  background: linear-gradient(135deg, #1A0508 0%, #2C0812 40%, #1A0A00 100%);
  border-bottom: 2px solid var(--gold);
  padding: 56px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(245,200,66,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 100%, rgba(200,16,46,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.bonus-hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.bonus-hero h1 { margin-bottom: 10px; }
.bonus-hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
}
.bonus-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.bonus-hero-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== GAME TICKER ===== */
.game-ticker {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.ticker-item:hover { background: rgba(245,200,66,0.07); color: var(--gold); }
.ticker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ===== SCORE CARD ===== */
.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.score-row:last-child { border-bottom: none; }
.score-label { flex: 1; font-size: 0.9rem; color: var(--text-muted); }
.score-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.score-val { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--text-main); font-size: 0.9rem; min-width: 38px; text-align: right; }

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== FEATURE LIST ===== */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.88rem;
}
thead { background: var(--bg-card2); }
thead th {
  padding: 13px 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:hover { background: rgba(245,200,66,0.04); }
tbody td {
  padding: 12px 16px;
  color: var(--text-main);
  vertical-align: top;
}
.td-yes { color: #4CD97B; font-weight: 600; }
.td-no { color: #FF5A5A; font-weight: 600; }
.td-muted { color: var(--text-muted); }

/* ===== BONUS STRIPE ===== */
.bonus-stripe {
  background: linear-gradient(90deg, #14020A 0%, #22060E 50%, #14020A 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 32px 20px;
  text-align: center;
}
.bonus-stripe h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 6px; }
.bonus-stripe p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; }

/* ===== PROVIDER PILLS ===== */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.provider-pill {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.provider-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ===== PAYMENT ICONS ===== */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pay-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pay-icon { font-size: 1.1rem; }

/* ===== RATING STARS ===== */
.rating-big {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.rating-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-stars-col { display: flex; flex-direction: column; gap: 4px; }
.stars-line { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }
.rating-label { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 18px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 22px;
  list-style: none;
}
.pros-box { background: rgba(76,217,123,0.06); border: 1px solid rgba(76,217,123,0.2); }
.cons-box { background: rgba(255,90,90,0.06); border: 1px solid rgba(255,90,90,0.2); }
.pros-box h4 { color: #4CD97B; margin-bottom: 12px; }
.cons-box h4 { color: #FF5A5A; margin-bottom: 12px; }
.pros-box li, .cons-box li {
  font-size: 0.88rem;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pros-box li::before { content: '✓'; color: #4CD97B; flex-shrink: 0; font-weight: 700; }
.cons-box li::before { content: '✗'; color: #FF5A5A; flex-shrink: 0; font-weight: 700; }

/* ===== RESPONSIBLE GAMBLE ===== */
.rg-block {
  background: var(--bg-card2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.rg-block p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.rg-block p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
footer {
  background: #07070F;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}
.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.badge-age {
  background: var(--gold);
  color: #0A0A0F;
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
}
@media (max-width: 640px) {
  .header-inner { padding: 12px 16px; }
  .bonus-hero { padding: 36px 16px; }
  .section { padding: 40px 0; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; justify-content: flex-start; }
  .header-btns .btn:first-child { display: none; }
  .score-card { padding: 18px; }
}
@media (max-width: 380px) {
  .card-grid { grid-template-columns: 1fr; }
}
