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

/* ============================================================
   ROLLETTO CASINO UK — Mobile-First CSS
   ============================================================ */

:root {
  --gold: #E4A812;
  --gold-light: #F5C842;
  --gold-dark: #B8860B;
  --dark-bg: #0D0D14;
  --dark-card: #13131F;
  --dark-border: #1E1E2E;
  --dark-hover: #1A1A2A;
  --text-primary: #F0EDE4;
  --text-secondary: #A09B90;
  --text-muted: #6B6660;
  --accent-red: #C0392B;
  --accent-green: #27AE60;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(228,168,18,0.25);
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Prevent ANY child from exceeding viewport */
body * {
  max-width: 100%;
}

img, svg, video, iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(1.5rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.25rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1rem, 3vw, 1.5rem); }
h4 { font-size: clamp(0.95rem, 2.5vw, 1.1rem); }

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

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 48px 0; }
.section-sm { padding: 32px 0; }

/* ============================================================
   TOP BONUS BANNER
   ============================================================ */
.bonus-top-banner {
  background: linear-gradient(135deg, #1a1000, #2a1a00, #1a1000);
  border-bottom: 2px solid var(--gold);
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
}
.bonus-top-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bonus-top-banner .badge {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bonus-top-banner .text {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 500;
  text-align: center;
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.bonus-top-banner .text strong { color: var(--gold); }
.bonus-top-banner .btn {
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(13,13,20,0.97);
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 10px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
}
.logo-text span { color: var(--gold); }

/* Nav - hidden mobile, shown desktop */
.site-nav { display: none; }

.online-badge {
  display: none; /* hidden on mobile, shown on desktop */
}
.online-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:0.4; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }
.btn-lg { padding: 13px 28px; font-size: 0.95rem; }
.btn-sm { padding: 8px 14px; font-size: 0.78rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #0D0D14 0%, #121020 50%, #0D0D14 100%);
  padding: 36px 0 44px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(228,168,18,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(228,168,18,0.1);
  border: 1px solid rgba(228,168,18,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  width: fit-content;
  overflow-wrap: normal;
}
.hero h1 { margin-bottom: 12px; }
.hero h1 .highlight { color: var(--gold); }
.hero-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hero-stat .num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual - hidden mobile */
.hero-visual { display: none; }
.casino-card-visual {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  width: 100%;
}
.visual-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.visual-amount { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.visual-sub { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 14px; }
.visual-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pill { background: rgba(228,168,18,0.1); border: 1px solid rgba(228,168,18,0.2); color: var(--gold); font-size: 0.7rem; font-weight: 600; padding: 3px 8px; border-radius: 20px; white-space: nowrap; }
.visual-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 4px; }
.visual-trust { font-size: 0.73rem; color: var(--text-muted); }
.visual-providers { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--dark-border); }
.prov-badge { background: var(--dark-bg); border: 1px solid var(--dark-border); border-radius: 5px; padding: 3px 7px; font-size: 0.67rem; font-weight: 600; color: var(--text-secondary); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 28px; }
.section-eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 8px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { color: var(--text-secondary); max-width: 540px; margin: 0 auto; font-size: 0.9rem; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); overflow: hidden; }
.card-body { padding: 18px; }
.card-header { padding: 14px 18px; border-bottom: 1px solid var(--dark-border); display: flex; align-items: center; gap: 10px; }
.card-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(228,168,18,0.1); border: 1px solid rgba(228,168,18,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.bonus-card .tag { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 7px; }
.bonus-card .amount { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.bonus-card .desc { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 12px; }
.bonus-card .timer { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 12px; }
.bonus-card .timer strong { color: var(--accent-red); }

/* ============================================================
   STRIPE BANNER
   ============================================================ */
.stripe-banner {
  background: linear-gradient(135deg, #1a1200, #2a1e00, #1a1200);
  border-top: 1px solid rgba(228,168,18,0.3);
  border-bottom: 1px solid rgba(228,168,18,0.3);
  padding: 20px 16px;
  overflow: hidden;
}
.stripe-banner .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.stripe-banner .banner-text { font-size: 0.9rem; font-weight: 600; overflow-wrap: break-word; word-break: break-word; }
.stripe-banner .banner-text strong { color: var(--gold); font-size: 1.05rem; }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.article-body { min-width: 0; overflow: hidden; }
.article-body h2 { margin: 32px 0 14px; padding-top: 10px; border-top: 1px solid var(--dark-border); }
.article-body h2:first-child { border-top: none; margin-top: 0; }
.article-body h3 { margin: 22px 0 10px; color: var(--gold-light); }
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.article-body li { margin-bottom: 5px; }
.article-body strong { color: var(--gold-light); font-weight: 600; }

/* TOC - hidden mobile */
.toc-sidebar { display: none; }
.toc-box { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 18px; }
.toc-box h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px; padding-bottom: 9px; border-bottom: 1px solid var(--dark-border); }
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: 3px; }
.toc-list a { font-size: 0.8rem; color: var(--text-secondary); display: block; padding: 3px 0; }
.toc-list a:hover { color: var(--gold); }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  width: 100%;
  display: block;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 480px;
}
.data-table th {
  background: rgba(228,168,18,0.1);
  color: var(--gold);
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(228,168,18,0.2);
  white-space: nowrap;
}
.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--dark-border);
  color: var(--text-primary);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .check { color: var(--accent-green); }
.data-table .cross { color: var(--accent-red); }

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0;
}
.pros, .cons {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.pros { border-top: 3px solid var(--accent-green); }
.cons { border-top: 3px solid var(--accent-red); }
.pros h4 { color: var(--accent-green); margin-bottom: 10px; font-size: 0.8rem; text-transform: uppercase; }
.cons h4 { color: var(--accent-red); margin-bottom: 10px; font-size: 0.8rem; text-transform: uppercase; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li { font-size: 0.82rem; padding: 5px 0; border-bottom: 1px solid var(--dark-border); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓ '; color: var(--accent-green); font-weight: 700; }
.cons li::before { content: '✗ '; color: var(--accent-red); font-weight: 700; }

/* ============================================================
   PROVIDER GRID
   ============================================================ */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 9px;
}
.provider-badge { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 11px 9px; text-align: center; }
.provider-badge .pname { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: 2px; }
.provider-badge .pgames { font-size: 0.66rem; color: var(--text-muted); }
.provider-badge .picon { font-size: 1.2rem; margin-bottom: 5px; }

/* ============================================================
   RATING
   ============================================================ */
.rating-box { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 14px; }
.rating-overall { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.rating-number { font-family: 'Rajdhani', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.rating-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.rating-bar-label { font-size: 0.75rem; color: var(--text-secondary); width: 80px; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 5px; background: var(--dark-border); border-radius: 3px; overflow: hidden; min-width: 0; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; }
.rating-bar-score { font-size: 0.73rem; color: var(--gold); font-weight: 700; width: 24px; text-align: right; flex-shrink: 0; }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 16px; }
.review-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 9px; gap: 8px; }
.review-author { font-weight: 700; font-size: 0.87rem; color: var(--white); }
.review-city { font-size: 0.73rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.review-text { font-size: 0.82rem; color: var(--text-secondary); }

/* ============================================================
   AVATAR
   ============================================================ */
.avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; color: #000; flex-shrink: 0; }
.avatar-a { background: #E4A812; }
.avatar-b { background: #9B59B6; }
.avatar-c { background: #2980B9; }
.avatar-d { background: #27AE60; }
.avatar-e { background: #E74C3C; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 18px; width: 100%; }
.feature-card .fc-icon { font-size: 1.7rem; margin-bottom: 9px; }
.feature-card h3 { margin-bottom: 6px; font-size: 1rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }

/* ============================================================
   INFO BADGES
   ============================================================ */
.info-row { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0; }
.info-badge { display: flex; align-items: center; gap: 5px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 6px; padding: 5px 9px; font-size: 0.74rem; color: var(--text-secondary); font-weight: 500; white-space: nowrap; }
.info-badge span { color: var(--gold); font-weight: 700; }

/* ============================================================
   PAYMENT ROW
   ============================================================ */
.payment-row { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.pay-icon { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 7px; padding: 6px 10px; font-size: 0.73rem; font-weight: 700; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.pay-icon svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-item.open { border-color: rgba(228,168,18,0.3); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 15px 16px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--white); font-size: 0.87rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.faq-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 16px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 16px 15px; }
.faq-answer p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

/* ============================================================
   RG BAR
   ============================================================ */
.rg-bar { background: #0a1a0a; border: 1px solid #1a3a1a; border-radius: var(--radius); padding: 13px 15px; display: flex; align-items: flex-start; gap: 10px; }
.rg-bar .rg-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.rg-bar .rg-text { font-size: 0.79rem; color: #7abf7a; flex: 1; min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.rg-bar .rg-text strong { color: #a0df9a; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #080810; border-top: 1px solid var(--dark-border); padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.footer-col h5 { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold); margin-bottom: 11px; font-family: 'Inter', sans-serif; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: 0.79rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-col .about-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin-top: 10px; overflow-wrap: break-word; word-break: break-word; }
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.footer-bottom .copy { font-size: 0.73rem; color: var(--text-muted); overflow-wrap: break-word; word-break: break-word; }
.footer-trust { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.trust-badge { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 5px; padding: 4px 9px; font-size: 0.68rem; font-weight: 700; color: var(--text-secondary); white-space: nowrap; }
.trust-badge.green { border-color: #1a3a1a; color: #7abf7a; background: #0a1a0a; }
.age-badge { width: 28px; height: 28px; background: var(--accent-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; color: #fff; flex-shrink: 0; }

/* ============================================================
   MISC
   ============================================================ */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--dark-border) 20%, var(--dark-border) 80%, transparent); margin: 10px 0; }

.scroll-top { position: fixed; bottom: 18px; right: 18px; background: var(--gold); color: #000; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-gold); z-index: 99; }

/* ============================================================
   TABLET — 600px+
   ============================================================ */
@media (min-width: 600px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .stripe-banner .inner { flex-direction: row; gap: 16px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   TABLET LANDSCAPE — 768px+
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  .bonus-top-banner { padding: 12px 20px; }
  .bonus-top-banner .text { font-size: 0.9rem; }

  .header-inner { padding: 12px 20px; }
  .logo-text { font-size: 1.4rem; }
  .logo-icon { width: 40px; height: 40px; }
  .online-badge { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-secondary); }

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .hero { padding: 52px 0 60px; }
  .hero-eyebrow { font-size: 0.75rem; }
  .hero-sub { font-size: 1rem; }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .stripe-banner { padding: 26px 20px; }
  .stripe-banner .banner-text { font-size: 1rem; }
  .stripe-banner .banner-text strong { font-size: 1.2rem; }
}

/* ============================================================
   DESKTOP — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .site-nav { display: flex; align-items: center; gap: 4px; }
  .site-nav a { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; padding: 6px 10px; border-radius: 6px; transition: all var(--transition); }
  .site-nav a:hover { color: var(--white); background: var(--dark-hover); }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .hero-visual { display: flex; justify-content: center; align-items: center; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  .article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: start;
  }
  .toc-sidebar { display: block; position: sticky; top: 80px; }
  .article-body { min-width: 0; }

  .pros-cons { grid-template-columns: 1fr 1fr; }
}
