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

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

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --green: #1DB954;
  --green-dark: #158f3f;
  --bg-dark: #0D0F14;
  --bg-card: #161A22;
  --bg-card2: #1C2130;
  --border: rgba(245,166,35,0.18);
  --text: #E8ECF0;
  --text-muted: #8A96A8;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

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

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

img { display: none; }

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

/* ── FAVICON / LOGO ─────────────────────────────────────── */
.logo-svg {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo-text span { color: var(--gold); }

/* ── TOP BONUS BANNER ───────────────────────────────────── */
.top-banner {
  background: linear-gradient(90deg, #1a1000 0%, #2a1800 40%, #1a1000 100%);
  border-bottom: 2px solid var(--gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.top-banner .banner-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.top-banner .banner-text strong {
  color: var(--gold);
  font-size: 1.1rem;
}
.btn-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(29,185,84,0.35);
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29,185,84,0.5);
}
.btn-cta.gold {
  background: linear-gradient(135deg, var(--gold) 0%, #c47f0a 100%);
  box-shadow: 0 4px 18px rgba(245,166,35,0.35);
}
.btn-cta.gold:hover { box-shadow: 0 6px 24px rgba(245,166,35,0.55); }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  background: rgba(13,15,20,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
nav a {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
nav a:hover, nav a.active {
  color: var(--gold);
  border-color: var(--border);
  background: rgba(245,166,35,0.06);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0d0f14 0%, #141820 50%, #0d1208 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 .highlight { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
section { padding: 64px 0; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 10px;
}
.section-title span { color: var(--gold); }
.section-sub {
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 620px;
  font-size: 0.97rem;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px 0 32px;
}

/* ── WELCOME / INTRO ─────────────────────────────────────── */
.intro-section { background: var(--bg-dark); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.intro-text p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-aside {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.intro-aside h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quick-facts li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  gap: 12px;
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts li .label { color: var(--text-muted); flex-shrink: 0; }
.quick-facts li .val { color: #fff; font-weight: 600; text-align: right; }
.val.green { color: var(--green); }

/* ── BONUS STRIP ─────────────────────────────────────────── */
.bonus-strip {
  background: linear-gradient(90deg, #0e1a08 0%, #12220d 50%, #0e1a08 100%);
  border-top: 1px solid rgba(29,185,84,0.25);
  border-bottom: 1px solid rgba(29,185,84,0.25);
  padding: 28px 20px;
}
.bonus-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-strip-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}
.bonus-strip-text p { color: var(--text-muted); font-size: 0.9rem; }
.bonus-strip-text strong { color: var(--green); }

/* ── BONUSES ─────────────────────────────────────────────── */
.bonuses-section { background: var(--bg-card2); }
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.4);
}
.bonus-card .bonus-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.bonus-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}
.bonus-card .amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.bonus-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── GAMES ───────────────────────────────────────────────── */
.games-section { background: var(--bg-dark); }
.game-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.game-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.15s;
  cursor: default;
}
.game-cat.active, .game-cat:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.game-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 16px;
  text-align: center;
}
.game-tile:hover {
  border-color: var(--gold);
  background: rgba(245,166,35,0.06);
  transform: translateY(-2px);
}
.game-tile .game-emoji { font-size: 2rem; line-height: 1; }
.game-tile .game-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.2;
}
.game-tile .game-provider { font-size: 0.7rem; color: var(--text-muted); }

/* ── CONTENT ARTICLE ─────────────────────────────────────── */
.article-section { background: var(--bg-card2); }
.article-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin: 36px 0 14px;
  line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 24px 0 10px;
}
.article-body p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.article-body ul, .article-body ol {
  margin: 0 0 18px 20px;
  color: var(--text);
  line-height: 1.8;
}
.article-body li { margin-bottom: 6px; }

/* ── TABLE ───────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 20px 0 28px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--bg-card);
}
thead th {
  background: rgba(245,166,35,0.1);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
  color: var(--text);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(245,166,35,0.03); }
.td-green { color: var(--green); font-weight: 600; }
.td-gold { color: var(--gold); font-weight: 600; }

/* ── FEATURES ────────────────────────────────────────────── */
.features-section { background: var(--bg-dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.feature-card .f-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── PAYMENTS ────────────────────────────────────────────── */
.payments-section { background: var(--bg-card2); }
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.pay-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.15s;
}
.pay-tile:hover { border-color: var(--gold); }
.pay-tile .pay-icon { font-size: 1.6rem; margin-bottom: 6px; }
.pay-tile .pay-name { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* ── PROS CONS ───────────────────────────────────────────── */
.pros-cons-section { background: var(--bg-dark); }
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-block, .cons-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.pros-block { border-top: 3px solid var(--green); }
.cons-block { border-top: 3px solid #e05555; }
.pros-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cons-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #e05555;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pros-block ul, .cons-block ul { list-style: none; }
.pros-block li, .cons-block li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--text);
  align-items: flex-start;
}
.pros-block li:last-child, .cons-block li:last-child { border-bottom: none; }
.pros-block li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-block li::before { content: '✗'; color: #e05555; font-weight: 700; flex-shrink: 0; }

/* ── RATING BLOCK ────────────────────────────────────────── */
.rating-section { background: var(--bg-card2); }
.rating-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.rating-big {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.rating-big .score {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.rating-big .max { color: var(--text-muted); font-size: 1.2rem; }
.rating-big .stars { font-size: 1.5rem; margin: 8px 0 4px; }
.rating-big .label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.rating-bars { display: flex; flex-direction: column; gap: 14px; }
.rating-row { display: flex; align-items: center; gap: 14px; }
.rating-row .r-label { width: 140px; font-size: 0.88rem; color: var(--text-muted); flex-shrink: 0; }
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px;
}
.rating-row .r-score { width: 32px; text-align: right; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--gold); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--bg-dark); }
.faq-list { max-width: 820px; }
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s;
}
details.faq-item[open] {
  border-color: rgba(245,166,35,0.4);
}
details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  gap: 12px;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-body p { margin-bottom: 8px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #080a0e;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; max-width: 680px; }
.age-badge {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .rating-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  nav { display: none; }
  .hero { padding: 50px 16px 44px; }
  .hero-stats { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .bonus-strip-inner { flex-direction: column; text-align: center; }
  .rating-big { padding: 24px; }
  .rating-row .r-label { width: 110px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .bonus-cards { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
}
