/* ================================================
   CASINO ROYALE – STYLES
   Brand palette:
   --cr-navy:    #0d0d1a  (deep midnight navy)
   --cr-dark:    #14142b  (section backgrounds)
   --cr-surface: #1e1e3a  (cards, panels)
   --cr-gold:    #d4af37  (primary accent)
   --cr-gold-lt: #f0d060  (hover gold)
   --cr-white:   #f5f5f0  (text)
   --cr-muted:   #9999bb  (secondary text)
   --cr-green:   #2ecc71  (positive/CTA alternate)
   --cr-red:     #e74c3c  (cons/warning)
   ================================================ */

:root {
  --cr-navy:    #0d0d1a;
  --cr-dark:    #14142b;
  --cr-surface: #1e1e3a;
  --cr-surface2:#252550;
  --cr-gold:    #d4af37;
  --cr-gold-lt: #f0d060;
  --cr-white:   #f5f5f0;
  --cr-muted:   #9999bb;
  --cr-green:   #2ecc71;
  --cr-red:     #e74c3c;
  --cr-border:  #2e2e5a;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --trans:      0.2s ease;
  --font-sans:  'Segoe UI', Arial, Helvetica, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cr-dark);
  color: var(--cr-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--cr-gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--cr-gold-lt); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
summary { cursor: pointer; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* CONTAINER */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================
   TOP BONUS STRIP
======================== */
.top-strip {
  background: linear-gradient(90deg, #1a0a00 0%, #7a4a00 40%, #c8860a 70%, #d4af37 100%);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
  border-bottom: 2px solid var(--cr-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.strip-text {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.strip-text strong { color: #fff7cc; }

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-sans);
}
.btn-strip {
  background: #fff;
  color: #7a4a00;
  padding: 7px 18px;
  font-size: 13px;
  border-radius: 20px;
  white-space: nowrap;
}
.btn-strip:hover { background: #fff7cc; color: #5a3000; }
.btn-primary {
  background: linear-gradient(135deg, #1a3a6e, #2255aa);
  color: #fff;
  box-shadow: 0 3px 12px rgba(34,85,170,0.4);
}
.btn-primary:hover { background: linear-gradient(135deg, #2255aa, #3366cc); transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, #b8902a, var(--cr-gold));
  color: #0d0d1a;
  box-shadow: 0 3px 16px rgba(212,175,55,0.45);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--cr-gold), var(--cr-gold-lt));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.6);
}
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-xl { padding: 18px 40px; font-size: 18px; border-radius: 12px; }
.w-full { width: 100%; text-align: center; }
.mt-1 { margin-top: 14px; }

/* ========================
   SITE HEADER
======================== */
.site-header {
  background: var(--cr-navy);
  border-bottom: 2px solid var(--cr-border);
  padding: 12px 0;
  position: sticky;
  top: 41px;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logo { flex-shrink: 0; }
.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.site-nav a {
  color: var(--cr-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--trans);
}
.site-nav a:hover { color: var(--cr-gold); }
.nav-cta { padding: 9px 20px; font-size: 13px; }

/* ========================
   HERO BANNER
======================== */
.hero-banner {
  background: radial-gradient(ellipse at 60% 40%, #1a1a40 0%, #0d0d1a 70%);
  border-bottom: 1px solid var(--cr-border);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '♠ ♦ ♣ ♥';
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 60px;
  color: rgba(212,175,55,0.07);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 760px;
}
.hero-badge {
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--cr-gold);
  color: var(--cr-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700;
  color: var(--cr-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--cr-muted);
  max-width: 620px;
  line-height: 1.65;
}
.hero-bonus-card {
  background: linear-gradient(135deg, #1a1a3a, #252560);
  border: 1px solid var(--cr-gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 300px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 6px 30px rgba(212,175,55,0.15);
}
.bonus-headline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cr-gold);
  font-weight: 700;
}
.bonus-amount {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--cr-white);
  line-height: 1.2;
}
.bonus-amount span { display: block; font-size: 18px; color: var(--cr-gold); margin-top: 4px; }
.bonus-meta { font-size: 13px; color: var(--cr-muted); }
.bonus-terms { font-size: 11px; color: var(--cr-muted); line-height: 1.4; margin-top: 4px; }

/* ========================
   MAIN CONTENT SECTIONS
======================== */
.main-content { padding: 0; }
.content-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--cr-border);
}
.content-section:last-child { border-bottom: none; }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--cr-white);
  margin-bottom: 24px;
  line-height: 1.25;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--cr-gold);
  margin-top: 10px;
  border-radius: 2px;
}
h3 {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: var(--cr-gold);
  margin-bottom: 14px;
  margin-top: 32px;
  line-height: 1.3;
}
p { margin-bottom: 16px; color: #cccce0; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ========================
   REVIEW INTRO GRID
======================== */
.review-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}
.review-text p { color: #cccce0; }
.quick-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.stat-item {
  background: var(--cr-surface);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  min-width: 80px;
  flex: 1;
}
.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--cr-gold);
  font-family: var(--font-serif);
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--cr-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SIDEBAR CARD */
.sidebar-card {
  background: var(--cr-surface);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 110px;
}
.sidebar-card h3 {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--cr-gold);
  border-bottom: 1px solid var(--cr-border);
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.glance-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--cr-border);
  font-size: 13px;
}
.glance-list li:last-child { border-bottom: none; }
.glance-list .label { color: var(--cr-muted); }
.glance-list .val { color: var(--cr-white); font-weight: 600; text-align: right; }

/* ========================
   BONUS CARDS
======================== */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.bonus-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--cr-border);
}
.bonus-card--1 {
  background: linear-gradient(145deg, #1a1a3a, #2a1a50);
  border-color: var(--cr-gold);
}
.bonus-card--2 {
  background: linear-gradient(145deg, #1a2a3a, #1a3050);
  border-color: #5599cc;
}
.bonus-card--3 {
  background: linear-gradient(145deg, #1a2a1a, #1a3a2a);
  border-color: #44cc88;
}
.bonus-card-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cr-muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-card-amount {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--cr-white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.bonus-card-detail {
  font-size: 13px;
  color: var(--cr-muted);
  line-height: 1.6;
}

/* ========================
   TABLES
======================== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
}
.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--cr-surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table thead { background: linear-gradient(135deg, #252550, #1e1e45); }
.data-table th {
  padding: 13px 15px;
  text-align: left;
  color: var(--cr-gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--cr-gold);
  white-space: nowrap;
}
.data-table td {
  padding: 11px 15px;
  color: #cccce0;
  border-bottom: 1px solid var(--cr-border);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(212,175,55,0.04); }

/* ========================
   PROVIDERS GRID
======================== */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.provider-badge {
  background: var(--cr-surface);
  border: 1px solid var(--cr-border);
  color: var(--cr-muted);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--trans);
}
.provider-badge:hover { border-color: var(--cr-gold); color: var(--cr-gold); }

/* ========================
   STEPS
======================== */
.steps-list {
  display: flex;
  flex-direction: column;
  margin: 28px 0;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--cr-border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--cr-gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 54px;
  text-align: center;
  flex-shrink: 0;
}
.step-content h3 { margin-top: 0; margin-bottom: 8px; font-size: 17px; }
.step-content p { font-size: 15px; margin-bottom: 0; }

/* ========================
   SUPPORT GRID
======================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}
.support-card {
  background: var(--cr-surface);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: border-color var(--trans);
}
.support-card:hover { border-color: var(--cr-gold); }
.support-icon { font-size: 34px; margin-bottom: 12px; display: block; }
.support-card h3 { margin-top: 0; margin-bottom: 10px; font-size: 16px; }
.support-card p { font-size: 13px; line-height: 1.65; }

/* ========================
   PROS / CONS
======================== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}
.pros-box, .cons-box {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.pros-box {
  background: linear-gradient(145deg, #0f2a1a, #1a3a28);
  border: 1px solid rgba(46,204,113,0.2);
}
.cons-box {
  background: linear-gradient(145deg, #2a0f0f, #3a1a1a);
  border: 1px solid rgba(231,76,60,0.2);
}
.pros-box h3 { color: var(--cr-green); margin-top: 0; }
.cons-box h3 { color: var(--cr-red); margin-top: 0; }
.pros-box ul li,
.cons-box ul li {
  font-size: 14px;
  color: #cccce0;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.55;
}
.pros-box ul li:last-child,
.cons-box ul li:last-child { border-bottom: none; }
.pros-box ul li::before { content: '✓  '; color: var(--cr-green); font-weight: bold; }
.cons-box ul li::before { content: '✗  '; color: var(--cr-red); font-weight: bold; }

/* ========================
   FAQ
======================== */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.faq-item {
  border-bottom: 1px solid var(--cr-border);
  transition: background var(--trans);
}
.faq-item[open] {
  background: var(--cr-surface);
  border-radius: var(--radius);
  margin-bottom: 4px;
  padding: 0 16px;
}
.faq-question {
  padding: 18px 4px 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--cr-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-question:hover { color: var(--cr-gold); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--cr-gold);
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 4px 20px; }
.faq-answer p { font-size: 14px; color: #bbbbd4; margin-bottom: 0; }

/* ========================
   CTA SECTION
======================== */
.cta-section {
  background: radial-gradient(ellipse at center, #1a1a40 0%, #0d0d1a 100%);
  border-top: 2px solid var(--cr-gold);
  border-bottom: 2px solid var(--cr-gold);
  padding: 64px 0;
  text-align: center;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-inner h2 { text-align: center; font-size: clamp(22px, 4vw, 34px); margin-bottom: 16px; }
.cta-inner h2::after { margin: 10px auto 0; }
.cta-inner p { color: var(--cr-muted); font-size: 16px; margin-bottom: 24px; }
.cta-bonus-display {
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--cr-gold);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 17px;
  color: var(--cr-gold);
  margin-bottom: 28px;
  display: inline-block;
}
.cta-disclaimer {
  font-size: 12px;
  color: var(--cr-muted);
  margin-top: 16px;
  line-height: 1.5;
}

/* ========================
   FOOTER
======================== */
.site-footer {
  background: var(--cr-navy);
  border-top: 1px solid var(--cr-border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 28px;
  align-items: start;
}
.footer-logo { grid-column: 1; grid-row: 1; }
.footer-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.footer-links a {
  font-size: 12px;
  color: var(--cr-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.footer-links a:hover { color: var(--cr-gold); }
.footer-info {
  grid-column: 1 / -1;
  grid-row: 2;
  border-top: 1px solid var(--cr-border);
  padding-top: 24px;
}
.footer-info p {
  font-size: 12px;
  color: var(--cr-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-info a { color: var(--cr-gold); }
.footer-copy { color: #55556a !important; font-size: 11px !important; }
.footer-badges {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  background: var(--cr-surface);
  border: 1px solid var(--cr-border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--cr-muted);
  font-weight: 600;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 900px) {
  .review-intro-grid { grid-template-columns: 1fr; }
  .review-sidebar { order: -1; }
  .sidebar-card { position: static; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo { grid-column: 1; grid-row: 1; }
  .footer-links { grid-column: 1; grid-row: 2; }
  .footer-info { grid-row: 3; }
  .footer-badges { grid-row: 4; }
}

@media (max-width: 700px) {
  .top-strip { gap: 8px; padding: 8px 14px; }
  .strip-text { font-size: 12px; }
  .site-header { top: 48px; }
  .header-inner { gap: 12px; }
  .site-nav { display: none; }
  .hero-banner { padding: 36px 0 36px; }
  .hero-bonus-card { padding: 20px 18px; min-width: unset; }
  .bonus-amount { font-size: 20px; }
  .support-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 8px; }
  .step-num { font-size: 26px; min-width: unset; }
  .faq-question { font-size: 14px; }
  .cta-bonus-display { font-size: 14px; padding: 12px 14px; }
  h1 { font-size: clamp(30px, 9vw, 48px); }
  h2 { font-size: clamp(19px, 5.5vw, 26px); }
  .footer-inner { gap: 18px; }
  .data-table { font-size: 12px; }
  .data-table th, .data-table td { padding: 9px 10px; }
  .quick-stats { gap: 8px; }
  .stat-item { padding: 10px 10px; }
  .stat-num { font-size: 17px; }
}

@media (max-width: 420px) {
  .container { padding: 0 12px; }
  .hero-inner { gap: 12px; }
  .btn-xl { padding: 14px 22px; font-size: 15px; }
  .btn-lg { padding: 12px 22px; font-size: 14px; }
  .top-strip { flex-direction: column; gap: 6px; }
}