/* ==========================================================================
   NorthVelix — Midnight Blue + Electric Cyan + Ice White
   Nordic / Tech aesthetic  |  Mobile-first responsive
   ========================================================================== */

/* ---- Custom properties -------------------------------------------------- */
:root {
  --bg:           #080c18;
  --bg-surface:   #0e1628;
  --bg-card:      #111d35;
  --bg-card-hover:#13213d;
  --border:       #1e2d50;
  --border-focus: #00d4ff;

  --cyan:         #00d4ff;
  --cyan-dim:     #00b8dd;
  --cyan-pale:    rgba(0, 212, 255, 0.10);
  --cyan-glow:    0 0 24px rgba(0, 212, 255, 0.25);

  --white:        #ffffff;
  --text-main:    #e8f0ff;
  --text-body:    #94a3b8;
  --text-muted:   #4a6080;

  --red:          #f87171;
  --green:        #34d399;

  --radius-lg:    16px;
  --radius:       12px;
  --radius-sm:    8px;

  --shadow:       0 4px 32px rgba(0,0,0,0.6);
  --transition:   0.2s ease;
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { color: var(--text-main); font-weight: 700; line-height: 1.2; }
p { margin-bottom: 1rem; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: #4de3ff; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---- Age Gate ------------------------------------------------------------ */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(4, 8, 20, 0.98);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.age-gate--hidden { display: none; }

.age-gate__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow), var(--cyan-glow);
}
.age-gate__icon { font-size: 3rem; margin-bottom: 0.75rem; line-height: 1; }
.age-gate__title {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}
.age-gate__subtitle { font-size: 0.95rem; color: var(--text-body); margin-bottom: 0.6rem; }
.age-gate__disclaimer { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.65; }

.age-gate__buttons { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }
.age-gate__btn {
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.age-gate__btn:active { transform: scale(0.97); }
.age-gate__btn--yes {
  background: var(--cyan);
  color: #050d1e;
  box-shadow: var(--cyan-glow);
}
.age-gate__btn--yes:hover { background: #4de3ff; box-shadow: 0 0 32px rgba(0,212,255,0.4); }
.age-gate__btn--no {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.age-gate__btn--no:hover { border-color: var(--text-muted); color: var(--text-body); }

/* ---- Cookie Banner ------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 2px solid var(--cyan);
  z-index: 5000;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
}
.cookie-banner--hidden { display: none; }
.cookie-banner__text {
  flex: 1;
  min-width: 220px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.cookie-banner__text a { color: var(--cyan); }
.cookie-banner__buttons { display: flex; gap: 0.625rem; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}
.cookie-btn--accept { background: var(--cyan); color: #050d1e; }
.cookie-btn--accept:hover { background: #4de3ff; }
.cookie-btn--essential {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-btn--essential:hover { border-color: var(--cyan); color: var(--text-body); }

/* ---- Header -------------------------------------------------------------- */
.site-header {
  background: rgba(8, 12, 24, 0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo-link img { height: 48px; width: auto; max-width: 220px; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-header__nav-link {
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.site-header__nav-link:hover {
  color: var(--cyan);
  background: var(--cyan-pale);
}

/* Hamburger */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.site-header__menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-body);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header__menu-toggle--open .site-header__menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__menu-toggle--open .site-header__menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header__menu-toggle--open .site-header__menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(180deg, #0b1222 0%, var(--bg) 100%);
}

/* Grid background decoration */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

/* Glow orb */
.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 70vw, 700px);
  height: clamp(300px, 70vw, 700px);
  background: radial-gradient(ellipse, rgba(0,212,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cyan-pale);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.page-hero__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.75px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-hero__title span { color: var(--cyan); }

.page-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.page-hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.page-hero__stat { text-align: center; }
.page-hero__stat-number {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.page-hero__stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

/* ---- Container ----------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.25rem; }

/* ---- Warning ------------------------------------------------------------- */
.warning-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.warning-bar__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.warning-bar__text { font-size: 0.845rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.warning-bar__text strong { color: var(--text-body); }
.warning-bar__text a { color: var(--cyan); }

/* ---- Breadcrumb ---------------------------------------------------------- */
.breadcrumb {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb__sep { color: var(--border); }

/* ---- Section header ------------------------------------------------------ */
.section-header { margin-bottom: 1.5rem; }
.section-header__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.section-header__title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--text-main);
}

/* ====================================================================
   CASINO CARDS  —  Mobile-first
   ==================================================================== */

.casinos-section { margin-bottom: 3rem; }
.casinos-list { display: flex; flex-direction: column; gap: 1rem; }

/* Card base */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.casino-card:hover {
  border-color: rgba(0,212,255,0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0,212,255,0.1);
}

/* Cyan left accent bar */
.casino-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), #0066ff);
  opacity: 0;
  transition: opacity var(--transition);
}
.casino-card:hover::before { opacity: 1; }

/* Card body layout: stack on mobile, row on tablet+ */
.casino-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Top row: rank + logo + info */
.casino-card__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.casino-card__rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan-pale);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-card__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color var(--transition);
  text-decoration: none;
}
.casino-card:hover .casino-card__logo { border-color: rgba(0,212,255,0.4); }
.casino-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.casino-card__info { flex: 1; min-width: 0; }

.casino-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.casino-card__badge--pick   { background: var(--cyan); color: #050d1e; }
.casino-card__badge--hot    { background: linear-gradient(135deg,#e91e8c,#9c27b0); color: #fff; }
.casino-card__badge--top    { background: transparent; border: 1px solid var(--cyan); color: var(--cyan); }

.casino-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.casino-card__stars { color: var(--cyan); font-size: 0.9rem; letter-spacing: 1px; }
.casino-card__score { font-size: 0.95rem; font-weight: 800; color: var(--cyan); }

.casino-card__features { display: flex; flex-direction: column; gap: 0.25rem; }
.casino-card__feature {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}
.casino-card__check { color: var(--cyan); font-weight: 700; flex-shrink: 0; font-size: 0.75rem; margin-top: 1px; }
.casino-card__feature a { color: var(--text-muted); font-size: 0.8rem; }
.casino-card__feature a:hover { color: var(--cyan); }

/* Bottom row: bonus + CTA */
.casino-card__offer {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.casino-card__bonus-block {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all var(--transition);
}
.casino-card__bonus-block:hover {
  background: rgba(0,212,255,0.10);
  border-color: rgba(0,212,255,0.35);
}
.casino-card__bonus-amount {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}
.casino-card__bonus-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }

.casino-card__cta-row { display: flex; gap: 0.625rem; align-items: center; }

.casino-card__cta-btn {
  flex: 1;
  display: block;
  padding: 0.8rem 1rem;
  background: var(--cyan);
  color: #050d1e;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-card__cta-btn:hover {
  background: #4de3ff;
  color: #050d1e;
  box-shadow: var(--cyan-glow);
}

.casino-card__terms {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.casino-card__terms a { color: var(--text-muted); }
.casino-card__terms a:hover { color: var(--cyan); }

/* ====================================================================
   Responsible Gaming
   ==================================================================== */
.responsible-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.responsible-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.section-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 740px;
  margin-bottom: 1.5rem;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
.org-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 0.75rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.org-card:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-2px); }
.org-card img { width: 72px; height: 44px; object-fit: contain; border-radius: 5px; }
.org-card__name { font-size: 0.8rem; font-weight: 700; color: var(--text-main); }
.org-card__sub { font-size: 0.68rem; color: var(--text-muted); }

.helpline-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.helpline-box__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.helpline-list { display: flex; flex-direction: column; gap: 0.625rem; }
.helpline-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.helpline-item strong { color: var(--text-body); }
.helpline-item a { color: var(--cyan); }

.helpline-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.7rem 1.75rem;
  background: var(--cyan);
  color: #050d1e;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
  min-height: 44px;
}
.helpline-cta:hover { background: #4de3ff; color: #050d1e; }

/* ====================================================================
   Guide + FAQ
   ==================================================================== */
.info-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.info-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.04), transparent 70%);
  pointer-events: none;
}
.info-section p { color: var(--text-muted); font-size: 0.9rem; position: relative; z-index: 1; }

.feature-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.feature-item__check { color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* FAQ */
.faq-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.faq-item__question-text { font-size: 0.92rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
.faq-item__toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  line-height: 1;
}
.faq-item--expanded .faq-item__toggle {
  background: var(--cyan);
  color: #050d1e;
  border-color: var(--cyan);
}
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item__answer-content {
  padding: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}
.faq-item__answer-content a { color: var(--cyan); }

/* ====================================================================
   Review Pages
   ==================================================================== */
.review-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.review-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), #0066ff, transparent);
}

.review-hero__top { display: flex; align-items: flex-start; gap: 1.25rem; }
.review-hero__logo {
  width: 96px;
  height: 64px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.review-hero__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.review-hero__info { flex: 1; min-width: 0; }
.review-hero__name { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 900; color: var(--white); margin-bottom: 0.3rem; }
.review-hero__rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.review-hero__stars { color: var(--cyan); font-size: 1rem; }
.review-hero__score { font-size: 1.1rem; font-weight: 800; color: var(--cyan); }
.review-hero__features { display: flex; flex-direction: column; gap: 0.25rem; }
.review-hero__feature { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.4rem; }
.review-hero__feature-check { color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.review-hero__feature a { color: var(--text-muted); font-size: 0.82rem; }
.review-hero__feature a:hover { color: var(--cyan); }

.review-hero__cta { display: flex; flex-direction: column; gap: 0.625rem; }
.review-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: var(--cyan);
  color: #050d1e;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--cyan-glow);
  min-height: 48px;
  text-align: center;
}
.review-cta-btn:hover { background: #4de3ff; color: #050d1e; box-shadow: 0 0 32px rgba(0,212,255,0.45); }
.review-cta-terms { font-size: 0.7rem; color: var(--text-muted); text-align: center; }
.review-cta-terms a { color: var(--text-muted); }

.review-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}
.review-section__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.875rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.review-section p { color: var(--text-muted); font-size: 0.88rem; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pros-cons__col h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.6rem; }
.pros-cons__col--pros h4 { color: var(--cyan); }
.pros-cons__col--cons h4 { color: var(--red); }
.pros-cons__list { display: flex; flex-direction: column; gap: 0.35rem; list-style: none; }
.pros-cons__item { font-size: 0.83rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.4rem; line-height: 1.45; }
.pros-cons__item--pro::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.pros-cons__item--con::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 0.625rem; }
.payment-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.625rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ====================================================================
   Policy Pages
   ==================================================================== */
.policy-header {
  background: var(--bg-card);
  border-bottom: 2px solid var(--cyan);
  padding: clamp(2rem, 5vw, 3rem) 1.25rem;
  text-align: center;
}
.policy-header__title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 900; color: var(--white); }
.policy-header__date { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.5rem; }

.policy-content { max-width: 860px; margin: 0 auto; }
.policy-section { margin-bottom: 2rem; }
.policy-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.875rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.policy-section p,
.policy-section li { color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; }
.policy-section ul,
.policy-section ol { padding-left: 1.5rem; margin-bottom: 0.875rem; }
.policy-section li { margin-bottom: 0.35rem; }
.policy-section a { color: var(--cyan); }

/* ====================================================================
   Underage Page
   ==================================================================== */
.underage-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
}
.underage-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.underage-box__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.underage-box__title { font-size: clamp(1.4rem, 4vw, 1.7rem); font-weight: 900; color: var(--red); margin-bottom: 0.75rem; }
.underage-box__text { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.25rem; line-height: 1.7; }
.underage-box__links { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.underage-link {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 44px;
}
.underage-link--primary { background: linear-gradient(135deg,#00843d,#005c2b); color: white; }
.underage-link--primary:hover { filter: brightness(1.1); color: white; }
.underage-link--secondary { color: var(--text-muted); font-size: 0.85rem; }
.underage-link--secondary:hover { color: var(--cyan); }

/* ====================================================================
   Footer
   ==================================================================== */
.footer {
  background: #06090f;
  border-top: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem) 1.25rem 1.5rem;
}
.footer__inner { max-width: 1200px; margin: 0 auto; }

.footer__orgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.footer__org-link { opacity: 0.6; transition: opacity var(--transition); display: block; }
.footer__org-link:hover { opacity: 1; }
.footer__org-link img { width: 68px; height: 42px; object-fit: contain; border-radius: 5px; }

.footer__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer__badge-18 {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c62828,#8b0000);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ef5350;
  flex-shrink: 0;
}
.footer__uk-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer__link { color: var(--text-muted); font-size: 0.85rem; }
.footer__link:hover { color: var(--cyan); }

.footer__text {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 0.625rem;
}
.footer__text a { color: var(--text-muted); }
.footer__text a:hover { color: var(--cyan); }

/* ====================================================================
   RESPONSIVE — Tablet
   ==================================================================== */
@media (min-width: 640px) {
  /* Casino card: horizontal on tablet+ */
  .casino-card__body {
    flex-direction: row;
    align-items: flex-start;
  }
  .casino-card__top { flex: 1; min-width: 0; }
  .casino-card__offer {
    width: 200px;
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid var(--border);
    padding-top: 0;
    padding-left: 1.25rem;
    align-self: stretch;
    justify-content: center;
  }
  .casino-card__logo { width: 80px; height: 80px; }

  /* Review hero: side-by-side CTA */
  .review-hero { flex-direction: column; }
  .review-hero__cta { flex-direction: row; align-items: center; }
  .review-cta-btn { flex: 1; }

  .pros-cons { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .org-grid { grid-template-columns: repeat(4, 1fr); }

  .review-hero {
    flex-direction: row;
    align-items: flex-start;
  }
  .review-hero__top { flex: 1; min-width: 0; }
  .review-hero__cta { min-width: 185px; flex-direction: column; }
}

/* ====================================================================
   RESPONSIVE — Mobile (max-width: 639px)
   ==================================================================== */
@media (max-width: 639px) {
  /* Header nav */
  .site-header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(8, 12, 24, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.25rem;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .site-header__nav--open { display: flex; }
  .site-header__menu-toggle { display: flex; }
  .site-header__container { position: relative; }

  .site-header__nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: block;
    width: 100%;
  }

  /* Cards stay stacked */
  .casino-card__offer { border-top: 1px solid var(--border); }
  .casino-card__cta-row { flex-direction: row; }

  .org-grid { grid-template-columns: repeat(2, 1fr); }

  .pros-cons { grid-template-columns: 1fr; }

  /* Cookie banner */
  .cookie-banner { padding: 1rem; flex-direction: column; align-items: stretch; }
  .cookie-banner__buttons { flex-direction: row; }
  .cookie-btn { flex: 1; }

  /* Age gate buttons */
  .age-gate__buttons { flex-direction: column; align-items: stretch; }
  .age-gate__btn { max-width: 100%; }

  /* Hero stats */
  .page-hero__stats { gap: 1.25rem; }
}

@media (max-width: 400px) {
  .casino-card__top { flex-wrap: wrap; }
  .casino-card__logo { width: 60px; height: 60px; }
  .container { padding: 1.25rem 1rem; }
}

/* ---- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
