/* ═══════════════════════════════════════════════════════════════
   STYLE-07: RETRO PREMIUM — Memphis Design Revival
   ramixo.click | Best Casinos UK | #FFE600
   ═══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700;800&family=Syne:wght@700;800&family=Work+Sans:wght@400;500;600;700&family=Abril+Fatface&family=Space+Mono:wght@400;700&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --yellow:    #FFE600;
  --black:     #000000;
  --white:     #FFFFFF;
  --off-white: #FAFAF7;
  --red:       #FF2D55;
  --blue:      #0057FF;
  --green:     #00C878;
  --pink:      #FF6EC7;
  --purple:    #7B2FBE;

  --text-primary:   #000000;
  --text-secondary: #333333;
  --text-muted:     #666666;

  --border-thick: 4px solid var(--black);
  --border-mid:   3px solid var(--black);
  --border-thin:  2px solid var(--black);

  --shadow-hard:  6px 6px 0 var(--black);
  --shadow-large: 10px 10px 0 var(--black);
  --shadow-yellow:6px 6px 0 var(--yellow);

  --radius-zero:  0;
  --transition:   0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --font-display: 'Abril Fatface', serif;
  --font-heading: 'Syne', sans-serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-ui:      'Space Grotesk', sans-serif;

  --max-w: 1200px;
  --section-pad: 80px 24px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--off-white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── MEMPHIS PATTERN BACKGROUNDS ── */
.pat-dots {
  background-image: radial-gradient(circle, var(--black) 2px, transparent 2px);
  background-size: 20px 20px;
}
.pat-stripes {
  background-image: repeating-linear-gradient(
    45deg,
    var(--yellow),
    var(--yellow) 10px,
    var(--black) 10px,
    var(--black) 20px
  );
}
.pat-checkers {
  background-image:
    linear-gradient(45deg, var(--black) 25%, transparent 25%),
    linear-gradient(-45deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--black) 75%),
    linear-gradient(-45deg, transparent 75%, var(--black) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-color: var(--white);
}
.pat-zigzag {
  background-color: var(--yellow);
  background-image:
    linear-gradient(135deg, var(--black) 25%, transparent 25%) -20px 0,
    linear-gradient(225deg, var(--black) 25%, transparent 25%) -20px 0,
    linear-gradient(315deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg, var(--black) 25%, transparent 25%);
  background-size: 40px 40px;
}

/* ── CANVAS ── */
.canvas {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* ── GEO SHAPES ── */
.geo-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.3s ease;
}
.geo-shape--circle {
  border-radius: 50%;
  border: var(--border-thick);
}
.geo-shape--triangle {
  width: 0; height: 0;
  background: transparent;
  border-style: solid;
}
.geo-shape--rect {
  border: var(--border-thick);
}
.geo-shape--squiggle {
  font-size: 2rem;
  color: var(--black);
  font-family: var(--font-mono);
}
.geo-shape--dot-grid {
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--black) 3px, transparent 3px);
  background-size: 12px 12px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-family: var(--font-display); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.label-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--black);
  color: var(--yellow);
  padding: 4px 10px;
  display: inline-block;
}
.label-tag--yellow {
  background: var(--yellow);
  color: var(--black);
}
.label-tag--red {
  background: var(--red);
  color: var(--white);
}

/* ── LAYOUT HELPERS ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.grid-asym {
  display: grid;
  grid-template-columns: 1.618fr 1fr;
  gap: 48px;
  align-items: start;
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ── SWATH (full-width color blocks) ── */
.swath {
  width: 100%;
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.swath--yellow { background: var(--yellow); }
.swath--black  { background: var(--black); color: var(--white); }
.swath--white  { background: var(--white); }
.swath--off    { background: var(--off-white); }
.swath--pattern-dots {
  background-color: var(--off-white);
  background-image: radial-gradient(circle, rgba(0,0,0,0.12) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

/* ── SQUIGGLE DIVIDER ── */
.squiggle-divider {
  display: block;
  width: 100%;
  height: 40px;
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.squiggle-divider svg { width: 100%; height: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: var(--border-thick);
  border-radius: var(--radius-zero);
  transition: all var(--transition);
  cursor: pointer;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover {
  background: var(--black);
  color: var(--yellow);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.btn-secondary {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-hard);
}
.btn-secondary:hover {
  background: var(--yellow);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.btn-invert {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 6px 6px 0 var(--yellow);
}
.btn-invert:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* ── MEMPHIS CARD ── */
.memphis-card {
  border: var(--border-thick);
  border-radius: var(--radius-zero);
  background: var(--white);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.memphis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 100%;
  background: var(--yellow);
  transition: width var(--transition);
}
.memphis-card:hover {
  background: var(--yellow);
  box-shadow: none;
  transform: translate(3px, 3px);
}
.memphis-card:hover::before { width: 100%; opacity: 0.3; }

.memphis-card--dark {
  background: var(--black);
  color: var(--white);
}
.memphis-card--dark:hover { background: var(--yellow); color: var(--black); }

/* ── CASINO CARD (top10 comparison) ── */
.casino-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  border: var(--border-thick);
  border-radius: var(--radius-zero);
  background: var(--white);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-hard);
  transition: all var(--transition);
}
.casino-card:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.casino-card:hover .casino-card__cta { background: var(--black); color: var(--yellow); }

.casino-card__rank {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  min-width: 60px;
  text-align: center;
  -webkit-text-stroke: 2px var(--black);
}
.casino-card__logo {
  width: 100px;
  height: 60px;
  border: var(--border-thin);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-align: center;
  padding: 8px;
  flex-shrink: 0;
}
.casino-card__info { flex: 1; }
.casino-card__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.casino-card__bonus {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--yellow);
  border: var(--border-thin);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 8px;
}
.casino-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.casino-card__tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--black);
  padding: 2px 8px;
  background: var(--off-white);
}
.casino-card__tag--green { background: var(--green); border-color: var(--black); }
.casino-card__tag--blue  { background: var(--blue); color: var(--white); }
.casino-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.casino-card__score {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.casino-card__stars { font-size: 0.85rem; letter-spacing: 1px; }
.casino-card__cta {
  display: block;
  background: var(--yellow);
  color: var(--black);
  border: var(--border-thick);
  padding: 12px 20px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-hard);
  transition: all var(--transition);
}
.casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* ── STICKER BADGE ── */
.sticker {
  display: inline-block;
  transform: rotate(-2deg);
  background: var(--yellow);
  border: var(--border-thick);
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-hard);
  transition: transform var(--transition);
  line-height: 1.2;
  text-align: center;
}
.sticker:hover { transform: rotate(2deg) scale(1.05); }
.sticker--red { background: var(--red); color: var(--white); }
.sticker--blue { background: var(--blue); color: var(--white); }
.sticker--rotate-pos { transform: rotate(3deg); }
.sticker--rotate-neg { transform: rotate(-3deg); }

/* ── RATING STARS ── */
.stars { color: var(--yellow); }
.stars::before { content: '★★★★★'; font-size: 1rem; }

/* ── PROS/CONS ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border-thick);
}
.pros-list, .cons-list {
  padding: 24px;
}
.pros-list { background: var(--white); border-right: var(--border-thick); }
.cons-list { background: var(--off-white); }
.pros-list h4 { color: var(--green); margin-bottom: 14px; }
.cons-list h4 { color: var(--red); margin-bottom: 14px; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.pros-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── HERO (GEO-HERO) ── */
.geo-hero {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.geo-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.geo-hero__text { max-width: 720px; }
.geo-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: var(--border-thin);
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 28px;
  background: var(--yellow);
}
.geo-hero h1 { margin-bottom: 24px; }
.geo-hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 36px;
}
.geo-hero__cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.geo-hero__trust {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
}
.geo-hero__shapes { position: relative; flex-shrink: 0; display: none; }
@media (min-width: 900px) { .geo-hero__shapes { display: block; } }

/* ── DECORATIVE SHAPES IN HERO ── */
.shape-block {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
#shape-circle-1 {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 6px solid var(--black);
  background: var(--yellow);
  top: -40px; right: -30px;
}
#shape-rect-1 {
  width: 100px; height: 100px;
  background: var(--black);
  bottom: 60px; right: -10px;
}
#shape-tri-1 {
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--red);
  top: 60px; right: 140px;
}
#shape-dot-grid-1 {
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, var(--black) 3px, transparent 3px);
  background-size: 14px 14px;
  top: -20px; left: -50px;
}
#shape-zigzag-1 {
  bottom: -10px; left: -20px;
  width: 120px; height: 80px;
  background: var(--pink);
  border: 4px solid var(--black);
  clip-path: polygon(0% 0%, 25% 100%, 50% 0%, 75% 100%, 100% 0%);
}
.floating-shapes-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.float-shape {
  position: absolute;
  opacity: 0.18;
}

/* ── NAVIGATION ── */
.site-header {
  background: var(--yellow);
  border-bottom: var(--border-thick);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-header__nav {
  display: flex;
  gap: 4px;
}
.site-header__nav a {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border: var(--border-thin);
  border-color: transparent;
  transition: all var(--transition);
}
.site-header__nav a:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: var(--border-thin);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--black);
  transition: all 0.2s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── NAV OVERLAY (E-005) ── */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--yellow);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--black);
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: border-color var(--transition);
}
.nav-overlay a:hover { border-bottom-color: var(--black); }
.nav-overlay__close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  cursor: pointer;
  font-weight: 700;
  background: none;
  border: none;
}

/* ── TICKER ── */
.payout-ticker-wrap {
  background: var(--black);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.payout-ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--yellow);
  flex-shrink: 0;
}

/* ── INTERACTIVE: SPIN WHEEL ── */
.spin-wheel-section {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.spin-wheel-section h2 { color: var(--yellow); }

.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.wheel-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}
#wheelCanvas {
  width: 320px;
  height: 320px;
  border: var(--border-thick);
  border-color: var(--yellow);
  box-shadow: 0 0 0 6px var(--black), 0 0 0 10px var(--yellow);
  border-radius: 50%;
  display: block;
}
.wheel-pointer {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 30px solid var(--yellow);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.wheel-result {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  min-height: 2.4rem;
  text-align: center;
  transition: all 0.3s;
}
.spin-btn {
  background: var(--yellow);
  color: var(--black);
  border: var(--border-thick);
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-large);
  cursor: pointer;
  transition: all var(--transition);
}
.spin-btn:hover {
  background: var(--white);
  transform: translate(4px, 4px);
  box-shadow: none;
}
.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── INTERACTIVE: QUIZ ── */
.quiz-section {
  background: var(--off-white);
  padding: var(--section-pad);
}
.quiz-container {
  max-width: 660px;
  margin: 0 auto;
  border: var(--border-thick);
  background: var(--white);
  box-shadow: var(--shadow-large);
  overflow: hidden;
}
.quiz-header {
  background: var(--yellow);
  border-bottom: var(--border-thick);
  padding: 20px 28px;
}
.quiz-header h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
}
.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--off-white);
  border-top: var(--border-thin);
  position: relative;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--black);
  transition: width 0.3s ease;
}
.quiz-body { padding: 28px; }
.quiz-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quiz-option {
  border: var(--border-thick);
  background: var(--white);
  padding: 14px 18px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.quiz-option .quiz-emoji { font-size: 1.4rem; flex-shrink: 0; }
.quiz-option:hover, .quiz-option.selected {
  background: var(--yellow);
  box-shadow: var(--shadow-hard);
  transform: translate(-2px, -2px);
}
.quiz-result {
  display: none;
  padding: 28px;
  text-align: center;
  border-top: var(--border-thick);
}
.quiz-result.active { display: block; }
.quiz-result h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* ── COMPARISON TABLE ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border-thick);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  table-layout: fixed;
}
.comparison-table th {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-right: 2px solid rgba(255,230,0,0.3);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: var(--border-thin);
  border-right: var(--border-thin);
  vertical-align: middle;
}
.comparison-table tr:nth-child(even) td { background: rgba(255,230,0,0.07); }
.comparison-table tr:hover td { background: rgba(255,230,0,0.2); }
.comparison-table .rank-cell {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black);
  -webkit-text-stroke: 1px var(--yellow);
  text-align: center;
  width: 48px;
}
.comparison-table .name-cell { font-weight: 700; }
.comparison-table .score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 3px 10px;
  background: var(--yellow);
  border: 2px solid var(--black);
  font-weight: 700;
  font-size: 0.85rem;
}
.score-pill--green { background: var(--green); }
.score-pill--red { background: #FFD0D0; }

/* ── AUTHOR / EEAT ── */
.eeat-section {
  background: var(--white);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 60px 24px;
}
.author-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  border: var(--border-thick);
  padding: 32px;
  background: var(--off-white);
  box-shadow: var(--shadow-large);
  position: relative;
}
.author-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 8px;
  background: var(--yellow);
}
.author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: var(--border-thick);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-meta { flex: 1; }
.author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.author-title-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: var(--black);
  color: var(--yellow);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}
.author-bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.credential-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  border: 2px solid var(--black);
  padding: 4px 10px;
  text-transform: uppercase;
  background: var(--white);
}

/* ── FAQ ── */
.faq-section {
  background: var(--off-white);
  padding: var(--section-pad);
}
.faq-section h2 { margin-bottom: 48px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: var(--border-thick);
  margin-bottom: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  transition: box-shadow var(--transition);
}
.faq-item.active { box-shadow: none; transform: translate(2px, 2px); }
.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-top: var(--border-thin);
}
.faq-item.active .faq-answer { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 24px 32px;
  border-top: var(--border-thick);
  border-top-color: var(--yellow);
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid rgba(255,230,0,0.2);
}
.site-footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}
.site-footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}
.site-footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer__col ul li {
  margin-bottom: 8px;
}
.site-footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  font-family: var(--font-body);
}
.site-footer__col ul li a:hover { color: var(--yellow); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__legal {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 660px;
}
.site-footer__disclaimer-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.disclaimer-icon {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ── POPUP ── */
#popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.popup-inner {
  background: var(--white);
  border: var(--border-thick);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-large);
  overflow: hidden;
}
.popup-header {
  background: var(--yellow);
  border-bottom: var(--border-thick);
  padding: 20px 24px;
}
.popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
}
.popup-body { padding: 28px 24px; text-align: center; }
.popup-bonus {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1;
}
.popup-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--black);
  color: var(--yellow);
  border: none;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  line-height: 1;
}
.popup-tnc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-family: var(--font-mono);
}

/* ── STICKY CTA ── */
#stickyCta {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--yellow);
  border-top: var(--border-thick);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 9997;
  box-shadow: 0 -4px 0 var(--black);
}
#stickyCta p {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ── SCROLL REVEAL ── */
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TRUST BADGES ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.trust-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: var(--border-thin);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-badge--yellow { background: var(--yellow); }

/* ── RATING BAR ── */
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rating-bar-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  min-width: 110px;
  font-weight: 700;
}
.rating-bar-track {
  flex: 1;
  height: 14px;
  border: 2px solid var(--black);
  background: var(--off-white);
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-right: 2px solid var(--black);
  transition: width 0.6s ease;
}
.rating-bar-score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  min-width: 36px;
  text-align: right;
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}
.section-label--on-dark { color: rgba(255,230,0,0.6); }

/* ── UTILITIES ── */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.text-mono { font-family: var(--font-mono); }
.bg-yellow { background: var(--yellow); }
.bg-black  { background: var(--black); color: var(--white); }
.gap-top { padding-top: 16px; }
.inline-block { display: inline-block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-asym  { grid-template-columns: 1fr; }
  .grid-3col  { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 16px; }

  h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  h2 { font-size: clamp(1.5rem, 4.5vw, 2rem); }

  .site-header__nav { display: none; }
  .hamburger { display: flex; }

  .geo-hero { padding: 80px 16px 60px; min-height: auto; }
  .geo-hero__inner { grid-template-columns: 1fr; }

  .casino-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .casino-card__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
  }

  .grid-2col { grid-template-columns: 1fr; }
  .grid-3col { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .pros-list { border-right: none; border-bottom: var(--border-thick); }

  .author-card { flex-direction: column; }

  .quiz-options { grid-template-columns: 1fr; }

  .site-footer__top  { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; }

  .comparison-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .geo-hero h1 { font-size: 2.2rem; }
  .casino-card { grid-template-columns: 1fr; }
  .casino-card__rank { display: none; }
  .wheel-canvas-wrap, #wheelCanvas { width: 260px; height: 260px; }
}

/* ── SCHEMA / LD+JSON BLOCKS (5+) — SEO (injected in head) ── */
/* Nothing visual here — kept for reference */

/* ── PRINT ── */
@media print {
  .site-header, #stickyCta, #popup, .nav-overlay { display: none; }
  body { background: white; }
  .swath--black { background: white; color: black; }
}
