/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #e63950;
  --red-dark:   #c02840;
  --gold:       #f5c843;
  --gold-dark:  #d4a800;
  --navy:       #1a1a2e;
  --navy-mid:   #16213e;
  --navy-light: #0f3460;
  --bg:         #0d0d1a;
  --bg-alt:     #111127;
  --bg-card:    #181830;
  --border:     #2a2a4a;
  --text:       #d8d8f0;
  --text-muted: #8888aa;
  --text-light: #ffffff;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    'Segoe UI', Arial, Helvetica, sans-serif;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

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

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

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

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,80,0.4);
}
.btn--red:hover { background: var(--red-dark); color: #fff; }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245,200,67,0.4);
}
.btn--gold:hover { background: var(--gold-dark); color: var(--navy); }

.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline:hover { background: var(--red); color: #fff; }

.btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* === TOP BANNER === */
.top-banner {
  background: linear-gradient(90deg, #e63950 0%, #c02840 50%, #9b1f30 100%);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-banner__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #fff;
  font-size: 0.95rem;
}
.top-banner__badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.top-banner__sub {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* === SITE HEADER === */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.site-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover { background: var(--border); color: var(--gold); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,57,80,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 24px;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.stars { display: flex; gap: 3px; }
.star {
  width: 22px; height: 22px;
  display: inline-block;
  position: relative;
}
.star::before {
  content: '★';
  font-size: 22px;
  color: #444;
}
.star--full::before { color: var(--gold); }
.star--half::before {
  content: '';
}
.star--half {
  position: relative;
}
.star--half::before {
  content: '★';
  color: #444;
}
.star--half::after {
  content: '★';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  clip-path: inset(0 50% 0 0);
  font-size: 22px;
}
.hero__rating-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.hero__rating-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === SCORECARD === */
.scorecard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.scorecard__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.score-row {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.score-row__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.score-row__bar {
  background: var(--border);
  border-radius: 4px;
  height: 7px;
  overflow: hidden;
}
.score-row__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 4px;
}
.score-row__val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-align: right;
}
.scorecard__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}
.scorecard__total span { font-size: 0.9rem; color: var(--text-muted); }
.scorecard__total strong { font-size: 1.5rem; color: var(--gold); font-weight: 900; }

/* === PROS/CONS === */
.pros-cons { background: var(--bg-alt); padding: 48px 0; }
.pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-cons__col {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.pros-cons__col--pros { border-top: 3px solid #2ecc71; }
.pros-cons__col--cons { border-top: 3px solid var(--red); }
.pros-cons__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.pros-cons__head h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-light);
}
.pros-cons__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.pros-cons__icon--pro { background: rgba(46,204,113,0.15); color: #2ecc71; }
.pros-cons__icon--con { background: rgba(230,57,80,0.15); color: var(--red); }
.pros-cons__col ul { list-style: none; }
.pros-cons__col li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.pros-cons__col li:last-child { border-bottom: none; }
.pros-cons__col--pros li::before { content: '✓'; color: #2ecc71; position: absolute; left: 0; font-weight: 700; }
.pros-cons__col--cons li::before { content: '✗'; color: var(--red); position: absolute; left: 0; font-weight: 700; }

/* === SECTION STYLES === */
.section-text { padding: 72px 0; }
.section-alt {
  background: var(--bg-alt);
  padding: 72px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 720px;
}

.section-text__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-light);
  margin-bottom: 20px;
}
.section-text__inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 36px;
  margin-bottom: 14px;
}
.section-text__inner p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-light);
  line-height: 1.3;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* === BONUS CARDS === */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s;
}
.bonus-card:hover { border-color: var(--red); }
.bonus-card--featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--bg-card), rgba(245,200,67,0.06));
}
.bonus-card__badge {
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
}
.bonus-card__value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.bonus-card__detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bonus-card__detail span {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.bonus-card__detail span::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--red);
}
.bonus-card__wager {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 6px 10px;
  border-radius: 6px;
}
.bonus-card .btn { margin-top: auto; width: 100%; text-align: center; }

/* === INFO BOX === */
.info-box {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.6;
}
.info-box--warning {
  background: rgba(245,200,67,0.08);
  border-left: 3px solid var(--gold);
  color: var(--text);
}

/* === MID BANNER === */
.mid-banner {
  background: linear-gradient(90deg, var(--navy-light) 0%, #1a3060 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
}
.mid-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mid-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.mid-banner__text strong { font-size: 1.1rem; }
.mid-banner__text span { font-size: 0.82rem; opacity: 0.75; }

/* === GAME CATEGORIES === */
.game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}
.game-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.game-cat:hover { border-color: var(--red); transform: translateY(-3px); }
.game-cat__icon { font-size: 2rem; margin-bottom: 12px; }
.game-cat h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.game-cat p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.game-cat__stat {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  padding: 5px 12px;
  background: rgba(245,200,67,0.1);
  border-radius: 20px;
  display: inline-block;
}

/* === TABLES === */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.payment-table, .compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.payment-table th, .compare-table th {
  background: var(--navy-light);
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--red);
  white-space: nowrap;
}
.payment-table td, .compare-table td {
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.payment-table tr:last-child td, .compare-table tr:last-child td { border-bottom: none; }
.payment-table tr:hover td, .compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table td.highlight {
  color: var(--gold);
  font-weight: 700;
}

/* === SAFETY GRID === */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}
.safety-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border-top: 3px solid var(--red);
}
.safety-item__icon { font-size: 2.2rem; margin-bottom: 14px; }
.safety-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.safety-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === SUPPORT GRID === */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.support-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.support-item__icon { font-size: 2.2rem; margin-bottom: 14px; }
.support-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.support-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === STEPS === */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--navy-light));
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 32px 0;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}
.step__content { padding-top: 8px; }
.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.step__content p { font-size: 0.93rem; color: var(--text); }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold); }
.faq__arrow {
  font-size: 1.2rem;
  color: var(--red);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__item--open .faq__arrow { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq__item--open .faq__answer {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq__answer p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer__brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.65;
}
.site-footer__links h4, .site-footer__rg h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.site-footer__links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__links nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.site-footer__links nav a:hover { color: var(--gold); }
.site-footer__rg p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.rg-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.rg-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.site-footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.site-footer__bottom p:last-child { margin-bottom: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { max-width: 100%; }
  .scorecard { max-width: 480px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .pros-cons__grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hero { padding: 48px 0 40px; }
  .section-text, .section-alt { padding: 48px 0; }
  .top-banner__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .top-banner__text { flex-direction: column; align-items: flex-start; gap: 6px; }
  .mid-banner__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .bonus-cards { grid-template-columns: 1fr; }
  .game-categories { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .btn--lg { padding: 14px 28px; font-size: 1rem; }
  .game-categories { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .steps::before { left: 23px; }
  .step__num { width: 48px; height: 48px; font-size: 1.1rem; }
  .scorecard { padding: 20px 16px; }
}

@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .section-title { font-size: 1.35rem; }
}
