/* ============================================
   VÆDDEMÅLSSIDER.COM — sweepstakesites.com style
   Clean white/blue editorial sports-publisher
   ============================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm:   clamp(0.8125rem, 0.78rem + 0.2vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-2xl:  clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-3xl:  clamp(2.5rem, 1.5rem + 3vw, 4rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;

  /* Radius */
  --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-full: 9999px;

  /* Widths */
  --w-narrow: 720px;
  --w-default: 960px;
  --w-wide: 1160px;

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* === LIGHT MODE (default) === */
:root, [data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-hero: #0b1d4f;
  --bg-hero-grad: linear-gradient(135deg, #0b1d4f 0%, #1a3a8f 100%);

  --surface: #ffffff;
  --surface-alt: #f3f4f6;
  --surface-blue: #eef2ff;
  --surface-green: #ecfdf5;
  --surface-amber: #fffbeb;

  --border: #e5e7eb;
  --border-blue: #1d4ed8;
  --divider: #f0f0f0;

  --text: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-inverse: #ffffff;

  --blue: #1d4ed8;
  --blue-hover: #1e40af;
  --blue-light: #dbeafe;
  --green: #059669;
  --green-light: #d1fae5;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --red: #dc2626;
  --red-light: #fee2e2;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
}

/* === DARK MODE === */
[data-theme="dark"] {
  --bg: #0f1117;
  --bg-alt: #161922;
  --bg-hero: #0a1535;
  --bg-hero-grad: linear-gradient(135deg, #0a1535 0%, #142858 100%);

  --surface: #1a1d28;
  --surface-alt: #22262f;
  --surface-blue: #1a2448;
  --surface-green: #0d2818;
  --surface-amber: #2a2010;

  --border: #2a2d38;
  --border-blue: #3b6cf5;
  --divider: #22252e;

  --text: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --text-inverse: #0f1117;

  --blue: #608cf5;
  --blue-hover: #7da4ff;
  --blue-light: #1e2d55;
  --green: #34d399;
  --green-light: #0d2818;
  --amber: #fbbf24;
  --amber-light: #2a2010;
  --red: #f87171;
  --red-light: #2a1515;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1117; --bg-alt: #161922; --bg-hero: #0a1535;
    --bg-hero-grad: linear-gradient(135deg, #0a1535 0%, #142858 100%);
    --surface: #1a1d28; --surface-alt: #22262f;
    --surface-blue: #1a2448; --surface-green: #0d2818; --surface-amber: #2a2010;
    --border: #2a2d38; --border-blue: #3b6cf5; --divider: #22252e;
    --text: #e5e7eb; --text-secondary: #9ca3af; --text-muted: #6b7280; --text-inverse: #0f1117;
    --blue: #608cf5; --blue-hover: #7da4ff; --blue-light: #1e2d55;
    --green: #34d399; --green-light: #0d2818;
    --amber: #fbbf24; --amber-light: #2a2010;
    --red: #f87171; --red-light: #2a1515;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3); --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  }
}

/* === BASE === */
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.2; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }
button { cursor: pointer; background: none; border: none; font: inherit; }
table { border-collapse: collapse; width: 100%; }
::selection { background: rgba(29,78,216,0.2); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--r-sm); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   COMPLIANCE TOP BAR
   ============================================ */
.top-bar {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}
.top-bar a { color: var(--blue); text-decoration: underline; }

.aff-banner {
  background: linear-gradient(90deg, #eff6ff 0%, #e8f0fe 100%);
  border-bottom: 1px solid #bfdbfe;
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  color: #1e3a5f;
  line-height: 1.5;
}
[data-theme="dark"] .aff-banner {
  background: linear-gradient(90deg, #1a2332 0%, #1c2a3f 100%);
  border-bottom-color: #2a3f5f;
  color: #94a3b8;
}
.aff-banner a { color: #1d4ed8; text-decoration: underline; }
[data-theme="dark"] .aff-banner a { color: #60a5fa; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-6);
  gap: var(--sp-6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.header__logo svg { flex-shrink: 0; }

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.header__nav a {
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.header__nav a:hover, .header__nav a.active {
  color: var(--blue);
  background: var(--surface-blue);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--surface-alt); color: var(--text); }

.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  color: var(--text);
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--sp-4);
    box-shadow: var(--shadow-lg);
  }
  .header__nav.open { display: flex; }
  .header__nav a { width: 100%; padding: var(--sp-3) var(--sp-4); border-radius: var(--r-md); }
  .mobile-menu-btn { display: flex; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-5);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover { background: #f0f0f0; }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-sm { padding: var(--sp-2) var(--sp-3); font-size: var(--text-xs); }
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn-disabled { opacity: 0.4; cursor: default; pointer-events: none; }

/* ============================================
   CONTAINER
   ============================================ */
.container { max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--sp-6); }
.container-narrow { max-width: var(--w-narrow); margin: 0 auto; padding: 0 var(--sp-6); }

/* ============================================
   HERO — dark blue gradient
   ============================================ */
.hero {
  background: var(--bg-hero-grad);
  color: #fff;
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) var(--sp-6);
}
.hero__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
}
.hero__updated {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-bottom: var(--sp-6);
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  max-width: 700px;
}
.hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); font-weight: 500;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}
.badge-green { background: rgba(5,150,105,0.15); color: #6ee7b7; border: 1px solid rgba(5,150,105,0.3); }
.badge-amber { background: rgba(217,119,6,0.15); color: #fcd34d; border: 1px solid rgba(217,119,6,0.3); }
.badge-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  font-size: var(--text-xs);
  color: var(--text-muted);
  padding: var(--sp-4) 0 0;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 var(--sp-1); }

/* ============================================
   SECTION
   ============================================ */
.section { padding: clamp(var(--sp-10), 5vw, var(--sp-20)) 0; }
.section-alt { background: var(--bg-alt); }

.section-header { margin-bottom: var(--sp-8); }
.section-header h2 {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.section-header p { font-size: var(--text-base); color: var(--text-secondary); }

/* ============================================
   TRUST DISCLAIMER BOX
   ============================================ */
.trust-box {
  background: var(--surface-blue);
  border: 1px solid var(--blue);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.trust-box svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }

/* ============================================
   #1 PICK CARD — sweepstakesites featured card
   ============================================ */
.pick-card {
  background: var(--surface);
  border: 2px solid var(--border-blue);
  border-radius: var(--r-xl);
  position: relative;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--sp-6);
  overflow: hidden;
}
.pick-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 var(--r-xl) 0 var(--r-lg);
}
.pick-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8);
}
@media (max-width: 768px) {
  .pick-card__inner { grid-template-columns: 1fr; padding: var(--sp-6); }
}
.pick-card__left h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--sp-3);
}
.pick-card__tagline {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}

/* Feature checklist */
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
}
.check-list li strong { font-weight: 600; }

/* Data table in pick card */
.data-table {
  width: 100%;
}
.data-table tr {
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child { border-bottom: none; }
.data-table th {
  text-align: left;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: var(--sp-3) var(--sp-3) var(--sp-3) 0;
  white-space: nowrap;
}
.data-table td {
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--sp-3) 0;
}

.pick-card__cta {
  padding: 0 var(--sp-8) var(--sp-8);
}

/* promo code box (dashed border) */
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border: 2px dashed var(--blue);
  border-radius: var(--r-md);
  padding: var(--sp-1) var(--sp-3);
  font-family: monospace;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--blue);
  letter-spacing: 0.05em;
}

/* ---- PROMO CODE CUTOUT (coupon/ticket style) ---- */
.promo-cutout {
  position: relative;
  max-width: 480px;
  margin: var(--sp-6) auto;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(29,78,216,.25);
}
.promo-cutout::before,
.promo-cutout::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--bg);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.promo-cutout::before { left: -12px; }
.promo-cutout::after  { right: -12px; }
.promo-cutout__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-6) var(--sp-8);
  border: 2px dashed rgba(255,255,255,.3);
  border-radius: 14px;
  margin: 4px;
}
.promo-cutout__scissors {
  position: absolute;
  top: -14px;
  right: 24px;
  font-size: 22px;
  transform: rotate(-45deg);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.2));
  z-index: 3;
}
.promo-cutout__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-1);
}
.promo-cutout__code {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 2px dashed rgba(255,255,255,.4);
  border-radius: 10px;
  padding: var(--sp-2) var(--sp-6);
  margin: var(--sp-2) 0 var(--sp-3);
  user-select: all;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.promo-cutout__code:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.03);
}
.promo-cutout__hint {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.promo-cutout__hint svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,.6);
}
.promo-cutout__operator {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-top: var(--sp-1);
}
/* Copy success state */
.promo-cutout__code.copied {
  background: rgba(34,197,94,.25);
  border-color: rgba(34,197,94,.5);
}

/* Promo highlight boxes */
.promo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.promo-highlight {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
}
.promo-highlight__icon {
  font-size: 32px;
  margin-bottom: var(--sp-2);
}
.promo-highlight__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.promo-highlight__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* How-to numbered steps (enhanced) */
.how-to-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0;
}
.how-to-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.how-to-steps li:last-child { border-bottom: none; }
.how-to-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 50%;
}

/* Bonus terms table style */
.bonus-terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: var(--sp-4) 0;
}
.bonus-terms-grid dt,
.bonus-terms-grid dd {
  padding: var(--sp-3) var(--sp-4);
  margin: 0;
  background: var(--surface);
}
.bonus-terms-grid dt {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.bonus-terms-grid dd {
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

/* Hub promo code badge */
.promo-card__code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(29,78,216,.08);
  border: 1.5px dashed var(--blue);
  border-radius: var(--r-md);
  padding: var(--sp-1) var(--sp-2);
  margin-bottom: var(--sp-3);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comp-table {
  width: 100%;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.comp-table thead { background: var(--surface-alt); }
.comp-table th {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: left;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.comp-table td {
  padding: var(--sp-4);
  font-size: var(--text-sm);
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.comp-table tbody tr:hover { background: var(--surface-alt); }

.op-cell {
  display: flex; align-items: center; gap: var(--sp-3);
}
.op-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-xs);
  color: var(--blue); flex-shrink: 0;
  border: 1px solid var(--border);
}
.op-name { font-weight: 600; }
.op-licence {
  font-size: 0.7rem; display: flex; align-items: center; gap: 3px;
  color: var(--green); margin-top: 2px;
}
.op-pending {
  font-size: 0.7rem; display: flex; align-items: center; gap: 3px;
  color: var(--amber); margin-top: 2px;
}

.rating-pill {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  background: var(--surface-blue); color: var(--blue);
  font-weight: 700; font-size: var(--text-sm);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full);
}

.best-for-tag {
  display: inline-block;
  background: var(--surface-green);
  color: var(--green);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--r-full);
}
.best-for-tag.pending {
  background: var(--surface-amber);
  color: var(--amber);
}

.pros-mini { font-size: var(--text-xs); line-height: 1.6; }
.pros-mini .pro { color: var(--green); }
.pros-mini .con { color: var(--text-muted); }

.last-checked {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--sp-5);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-2px);
  color: var(--text);
}
.card__icon {
  width: 44px; height: 44px;
  background: var(--surface-blue);
  color: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card__header {
  background: var(--bg-hero);
  color: #fff;
  padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
}
.review-card__brand { font-weight: 700; font-size: var(--text-lg); }
.review-card__rating {
  display: flex; align-items: center; gap: var(--sp-2);
  font-weight: 700; font-size: var(--text-lg);
}
.review-card__body { padding: var(--sp-5); }
.review-card__tag {
  display: inline-block;
  background: var(--surface-green);
  color: var(--green);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.review-card__summary { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--sp-4); line-height: 1.6; }
.review-card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.review-card__meta span {
  font-size: var(--text-xs); color: var(--text-secondary);
  background: var(--surface-alt); padding: 2px 8px; border-radius: var(--r-sm);
}
.review-card__actions { display: flex; gap: var(--sp-2); }
.review-card__actions .btn { flex: 1; text-align: center; }

/* ============================================
   METHODOLOGY STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: var(--sp-5);
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-3);
}
.step-card h3 { font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--sp-2); }
.step-card p { font-size: var(--text-xs); color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text); text-align: left;
  cursor: pointer; background: none; border: none;
}
.faq-q svg { transition: transform 0.2s; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 var(--sp-5) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-a a { color: var(--blue); }
.faq-item.open .faq-a { display: block; }

/* ============================================
   RG STRIP
   ============================================ */
.rg-strip {
  background: var(--surface-amber);
  border: 1px solid var(--amber);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: flex-start; gap: var(--sp-4);
  font-size: var(--text-sm); color: var(--text);
}
.rg-strip__icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--amber); color: #fff;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-xs);
}
.rg-strip p { margin-bottom: var(--sp-2); max-width: none; }
.rg-strip p:last-child { margin-bottom: 0; }
.rg-strip a { color: var(--amber); font-weight: 600; }

/* Minimal RG section (like sweepstakesites) */
.rg-minimal {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  color: var(--text-secondary);
}
.rg-minimal p { max-width: 500px; margin: 0 auto var(--sp-4); font-style: italic; font-size: var(--text-base); }

/* ============================================
   AFFILIATE DISCLOSURE
   ============================================ */
.aff-disc {
  background: var(--surface-alt);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

/* ============================================
   REVIEW PAGE — Individual
   ============================================ */
.review-hero {
  background: var(--bg-hero-grad);
  color: #fff;
  padding: var(--sp-8) var(--sp-6) var(--sp-10);
}
.review-hero__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 768px) { .review-hero__inner { grid-template-columns: 1fr; } }

.review-hero h1 { font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--sp-2); }
.review-hero__sub { color: rgba(255,255,255,0.7); font-size: var(--text-sm); margin-bottom: var(--sp-4); }

.quick-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.quick-panel__score {
  font-size: var(--text-2xl);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--sp-4);
}
.rating-bar {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-xs); margin-bottom: var(--sp-2);
}
.rating-bar__label { min-width: 80px; color: rgba(255,255,255,0.7); }
.rating-bar__track {
  flex: 1; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full); overflow: hidden;
}
.rating-bar__fill { height: 100%; background: #fbbf24; border-radius: var(--r-full); }
.rating-bar__val { font-weight: 600; min-width: 24px; text-align: right; }

/* Review layout */
.review-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-8);
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-6);
}
@media (max-width: 768px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-toc { display: none; }
}
.review-toc { position: sticky; top: 5rem; align-self: start; }
.review-toc a {
  display: block; font-size: var(--text-xs); color: var(--text-muted);
  padding: var(--sp-1) var(--sp-3);
  border-left: 2px solid var(--border);
  text-decoration: none; transition: all var(--transition);
}
.review-toc a:hover, .review-toc a.active { color: var(--blue); border-color: var(--blue); }

.review-content section { margin-bottom: var(--sp-10); scroll-margin-top: 5rem; }
.review-content h2 {
  font-size: var(--text-lg); font-weight: 700;
  margin-bottom: var(--sp-4); padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--border);
}
.review-content p { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--sp-4); line-height: 1.7; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 480px) { .pros-cons { grid-template-columns: 1fr; } }
.pro-list, .con-list { list-style: none; padding: 0; }
.pro-list li, .con-list li {
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  display: flex; align-items: flex-start; gap: var(--sp-2);
}
.pro-list li::before { content: "✓"; color: var(--green); font-weight: 700; }
.con-list li::before { content: "✗"; color: var(--red); font-weight: 700; }

.licence-box {
  background: var(--surface-green);
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-4);
}
.licence-box__icon {
  width: 40px; height: 40px;
  background: var(--green);
  color: #fff;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.licence-box__text { font-size: var(--text-sm); }
.licence-box__text strong { color: var(--text); }

.terms-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.terms-box h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--sp-3); }
.terms-box dl {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--sp-1) var(--sp-4); font-size: var(--text-xs);
}
.terms-box dt { color: var(--text-muted); font-weight: 500; }
.terms-box dd { color: var(--text); font-weight: 600; }

.verdict-box {
  background: var(--surface);
  border: 2px solid var(--blue);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.verdict-box h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-3); }
.verdict-box p { color: var(--text-secondary); font-size: var(--text-sm); }

/* ============================================
   PROMO / BONUS CARDS
   ============================================ */
.promo-card {
  background: var(--surface);
  border: 2px solid var(--border-blue);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-6);
  position: relative;
}
.promo-card__header {
  background: var(--bg-hero);
  color: #fff;
  padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
}
.promo-card__brand { font-weight: 700; font-size: var(--text-lg); }
.promo-card__body { padding: var(--sp-5); }
.promo-card__offer { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-3); }

.claim-steps {
  counter-reset: step;
  list-style: none; padding: 0;
}
.claim-steps li {
  counter-increment: step;
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) 0; font-size: var(--text-sm);
  border-bottom: 1px solid var(--border);
}
.claim-steps li:last-child { border-bottom: none; }
.claim-steps li::before {
  content: counter(step);
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--blue); color: #fff;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.filter-btn {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 500;
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue); color: #fff; border-color: var(--blue);
}

/* ============================================
   PAGE TITLE BAR
   ============================================ */
.page-title {
  background: var(--bg-hero-grad);
  color: #fff;
  padding: var(--sp-8) var(--sp-6);
}
.page-title__inner { max-width: var(--w-wide); margin: 0 auto; }
.page-title h1 { font-size: var(--text-xl); font-weight: 800; }
.page-title p { color: rgba(255,255,255,0.7); margin-top: var(--sp-2); font-size: var(--text-base); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  max-width: var(--w-narrow);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-6);
}
.legal-page h1 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-6); }
.legal-page h2 { font-size: var(--text-lg); font-weight: 600; margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.legal-page p, .legal-page li {
  font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--sp-3);
}
.legal-page ul { list-style: disc; padding-left: var(--sp-6); }

/* ============================================
   RG HERO
   ============================================ */
.rg-hero {
  background: var(--surface-amber);
  padding: clamp(var(--sp-8), 5vw, var(--sp-16)) var(--sp-6);
  text-align: center;
}
.rg-hero h1 { font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--sp-4); }
.rg-hero p { font-size: var(--text-base); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.rg-resource {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-4);
}
.rg-resource h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--sp-3); }
.rg-resource p { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--sp-3); line-height: 1.7; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); max-width: 500px; }
.form-group label { display: block; font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--sp-1); }
.form-group input, .form-group textarea {
  width: 100%; padding: var(--sp-3); border: 1px solid var(--border);
  border-radius: var(--r-md); background: var(--surface); font-size: var(--text-sm);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.15); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--sp-16) var(--sp-6) var(--sp-8);
}
.footer__inner { max-width: var(--w-wide); margin: 0 auto; }
.footer__top {
  display: flex; align-items: flex-start; gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
.footer__brand { max-width: 300px; }
.footer__brand-name { font-weight: 800; font-size: var(--text-lg); margin-bottom: var(--sp-2); display: flex; align-items: center; gap: var(--sp-2); }
.footer__brand p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--sp-2); }
.footer__brand-contact { font-size: var(--text-xs); color: var(--text-muted); }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-8);
  flex: 1;
}
@media (max-width: 900px) {
  .footer__top { flex-direction: column; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.footer__col a {
  display: block;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  padding: var(--sp-1) 0;
  text-decoration: none;
}
.footer__col a:hover { color: var(--blue); }

.footer__disclaimer {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.7;
}
.footer__disclaimer p { margin-bottom: var(--sp-3); max-width: none; }
.footer__disclaimer a { color: var(--blue); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-4);
  margin-top: var(--sp-4);
  font-size: var(--text-xs); color: var(--text-muted);
}
.footer__bottom a { color: var(--text-muted); text-decoration: none; }
.footer__bottom a:hover { color: var(--blue); }

/* ============================================
   PENDING / STAKE OVERLAY
   ============================================ */
.pending-overlay {
  background: var(--surface-amber);
  border: 2px solid var(--amber);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text);
}
.pending-overlay strong { color: var(--amber); }

/* ============================================
   UTILITY
   ============================================ */
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.text-center { text-align: center; }
