:root {
  --brand-gold: #D4AF37;
  --brand-gold-light: #F0D060;
  --brand-gold-dark: #A8891E;
  --brand-dark: #0A0C10;
  --brand-darker: #060709;
  --brand-navy: #0F1420;
  --brand-card: #141820;
  --brand-card2: #1A1F2E;
  --brand-border: #2A2F42;
  --brand-red: #C0392B;
  --brand-red-light: #E74C3C;
  --text-primary: #F0EEE8;
  --text-secondary: #A8A69E;
  --text-muted: #686660;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--brand-dark);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

img { display: none; }

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

.section { padding: 60px 0; }
.section-alt { background: var(--brand-navy); }
.section-dark { background: var(--brand-darker); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--brand-gold); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--text-primary); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--brand-gold); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-primary); }
p:last-child { margin-bottom: 0; }

.gold { color: var(--brand-gold); }
.muted { color: var(--text-secondary); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--brand-gold-dark) 0%, var(--brand-gold) 50%, var(--brand-gold-light) 100%);
  color: #0A0C10;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity var(--transition), transform var(--transition);
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); color: #0A0C10; }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
  padding: 12px 28px;
}
.btn-outline:hover { background: var(--brand-gold); color: #0A0C10; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-gold { background: var(--brand-gold-dark); color: #0A0C10; }
.badge-green { background: #1A4A2E; color: #4ADE80; }
.badge-red { background: #4A1A1A; color: #FCA5A5; }

.divider {
  border: none;
  height: 1px;
  background: var(--brand-border);
  margin: 40px 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brand-border);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text span { color: var(--brand-gold); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.header-cta { padding: 10px 22px; font-size: 0.88rem; }

/* ===== BONUS BANNER TOP ===== */
.bonus-banner-top {
  background: linear-gradient(90deg, #1A0A02 0%, #2D1800 40%, #3A2200 60%, #1A0A02 100%);
  border-bottom: 2px solid var(--brand-gold-dark);
  padding: 18px 0;
  text-align: center;
}
.bonus-banner-top .offer-text {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--brand-gold-light);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.bonus-banner-top .offer-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.bonus-banner-top .offer-terms {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at 60% 0%, #1C1200 0%, #0A0C10 60%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 18px;
  height: 18px;
  fill: var(--brand-gold);
}
.hero-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero h1 { margin-bottom: 18px; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--brand-border);
  max-width: 680px;
}
.hero-stat {
  background: var(--brand-card);
  padding: 16px 20px;
  text-align: center;
}
.hero-stat .stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTION HEADING ===== */
.section-heading {
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-heading h2 { margin-bottom: 10px; }
.section-heading .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
}

/* ===== INTRO / ABOUT ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.intro-visual {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--brand-border);
  font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-secondary); }
.info-value { color: var(--text-primary); font-weight: 600; }
.info-value.green { color: #4ADE80; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.bonus-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: border-color var(--transition);
}
.bonus-card:hover { border-color: var(--brand-gold-dark); }
.bonus-card .bonus-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.bonus-card h3 { font-size: 1rem; margin-bottom: 8px; }
.bonus-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }
.bonus-card.featured { border-color: var(--brand-gold-dark); background: linear-gradient(135deg, #1A1400 0%, var(--brand-card) 100%); }
.bonus-card .bonus-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 6px;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.game-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.game-card:hover { border-color: var(--brand-gold-dark); transform: translateY(-2px); }
.game-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: var(--brand-card2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card h3 { font-size: 0.95rem; color: var(--text-primary); margin-bottom: 6px; }
.game-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }

/* ===== PAYMENTS TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
  margin-top: 28px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 0.9rem;
}
thead tr { background: var(--brand-card2); }
th {
  padding: 14px 16px;
  text-align: left;
  color: var(--brand-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  white-space: nowrap;
}
td {
  padding: 12px 16px;
  border-top: 1px solid var(--brand-border);
  color: var(--text-primary);
  vertical-align: middle;
}
tr:hover td { background: rgba(212,175,55,0.03); }
.td-method { font-weight: 600; color: var(--brand-gold-light); }
.td-check { color: #4ADE80; font-weight: 700; font-size: 1rem; }
.td-time { color: var(--text-secondary); font-size: 0.85rem; }

/* ===== PROS CONS ===== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.pros-box, .cons-box {
  background: var(--brand-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pros-box { border: 1px solid #1A4A2E; }
.cons-box { border: 1px solid #4A1A1A; }
.list-check, .list-x {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-check li, .list-x li {
  padding-left: 26px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ADE80;
  font-weight: 700;
}
.list-x li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #FCA5A5;
  font-weight: 700;
}
.box-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-box .box-heading { color: #4ADE80; }
.cons-box .box-heading { color: #FCA5A5; }

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(90deg, #1A0800 0%, #2D1600 50%, #1A0800 100%);
  border-top: 1px solid var(--brand-gold-dark);
  border-bottom: 1px solid var(--brand-gold-dark);
  padding: 32px 0;
  text-align: center;
}
.mid-banner .banner-text {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.mid-banner .banner-gold { color: var(--brand-gold-light); }
.mid-banner .banner-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ===== SAFETY ===== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.safety-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}
.safety-card .s-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.safety-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text-primary); }
.safety-card p { font-size: 0.84rem; color: var(--text-secondary); margin: 0; }

/* ===== FAQ ===== */
.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--brand-gold); }
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  fill: none;
  stroke: var(--brand-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.22s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 20px 18px;
}
.faq-a p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* ===== RATING BLOCK ===== */
.rating-block {
  background: var(--brand-card2);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 28px;
}
.rating-overall {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rating-big {
  font-size: 4rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
}
.rating-cats {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rating-cat { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.rating-cat-name { min-width: 140px; color: var(--text-secondary); }
.rating-bar-bg {
  flex: 1;
  height: 6px;
  background: var(--brand-border);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-gold-dark), var(--brand-gold));
  border-radius: 3px;
}
.rating-cat-val { min-width: 28px; color: var(--brand-gold); font-weight: 700; font-size: 0.85rem; text-align: right; }

/* ===== MOBILE / FOOTER ===== */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.mob-feat {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mob-feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mob-feat-text h3 { font-size: 0.92rem; margin-bottom: 4px; color: var(--text-primary); }
.mob-feat-text p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }

.site-footer {
  background: var(--brand-darker);
  border-top: 1px solid var(--brand-border);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo-text { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 320px; }
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links li a:hover { color: var(--text-secondary); }
.footer-bottom {
  border-top: 1px solid var(--brand-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.78rem; color: var(--text-muted); max-width: 700px; line-height: 1.6; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-badge .dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .hero { padding: 48px 0 40px; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; }
  .btn-outline { width: 100%; text-align: center; }
  .rating-overall { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; }
  .header-cta { display: none; }
}
