/* ==========================================================================
   BritLunex — Deep Charcoal + Electric Violet + White
   Luxury-Tech aesthetic  |  Mobile-first
   ========================================================================== */

:root {
  --bg:           #0a0a0f;
  --bg-surface:   #101018;
  --bg-card:      #14141e;
  --bg-card-hover:#18182a;
  --border:       #1e1e30;
  --border-focus: #7c3aed;

  --violet:       #7c3aed;
  --violet-light: #9d6bf5;
  --violet-pale:  rgba(124,58,237,0.12);
  --violet-glow:  0 0 28px rgba(124,58,237,0.3);

  --white:        #ffffff;
  --text-main:    #f0eeff;
  --text-body:    #9ca3af;
  --text-muted:   #4b5563;

  --red:          #f87171;
  --green:        #34d399;

  --radius-lg:    16px;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 32px rgba(0,0,0,0.7);
  --transition:   0.2s ease;
}

*, *::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:"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(--violet-light); text-decoration:none; transition:color var(--transition); }
a:hover { color:#b794f6; }
img { max-width:100%; display:block; }
button { font-family:inherit; }

/* ============================================================
   Age Gate
   ============================================================ */
.age-gate {
  position:fixed; inset:0;
  background:rgba(5,5,10,0.98);
  z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:1rem;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.age-gate--hidden { display:none; }

.age-gate__box {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-top:3px solid var(--violet);
  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(--violet-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; }
.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; min-height:44px;
}
.age-gate__btn:active { transform:scale(0.97); }
.age-gate__btn--yes { background:var(--violet); color:#fff; box-shadow:var(--violet-glow); }
.age-gate__btn--yes:hover { background:var(--violet-light); box-shadow:0 0 36px rgba(124,58,237,0.5); }
.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(--violet);
  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.6);
}
.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(--violet-light); }
.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; min-height:44px;
  -webkit-tap-highlight-color:transparent; touch-action:manipulation;
}
.cookie-btn--accept { background:var(--violet); color:#fff; }
.cookie-btn--accept:hover { background:var(--violet-light); }
.cookie-btn--essential { background:transparent; color:var(--text-muted); border:1px solid var(--border); }
.cookie-btn--essential:hover { border-color:var(--violet); color:var(--text-body); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background:rgba(10,10,15,0.97);
  border-bottom:1px solid var(--border);
  position:sticky; top:0; z-index:1000;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.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; gap:0.75rem;
  flex-shrink:0; text-decoration:none;
}
.site-header__logo-link img,
.site-header__logo-icon {
  height:44px; width:44px; flex-shrink:0; display:block;
}
.site-header__logo-text {
  display:flex; flex-direction:column; line-height:1; gap:2px;
}
.site-header__logo-top {
  font-family:"Segoe UI", Arial, Helvetica, sans-serif;
  font-size:1.05rem; font-weight:800; color:#ffffff; letter-spacing:0.5px;
}
.site-header__logo-bottom {
  font-family:"Segoe UI", Arial, Helvetica, sans-serif;
  font-size:1.05rem; font-weight:800; color:#9d6bf5; letter-spacing:0.5px;
}
.site-header__logo-divider {
  height:1.5px; background:#7c3aed; border-radius:1px;
}
.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(--violet-light); background:var(--violet-pale); }
.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; }
.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(3rem,7vw,5.5rem) 1.25rem clamp(2.5rem,5vw,4rem);
  text-align:center;
  background:linear-gradient(170deg, #0f0820 0%, var(--bg) 60%);
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 75% 60% at 50% 0%, rgba(124,58,237,0.12), transparent 70%);
  pointer-events:none;
}
/* Subtle diagonal lines texture */
.page-hero::after {
  content:'';
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(
    -45deg,
    rgba(124,58,237,0.025) 0px,
    rgba(124,58,237,0.025) 1px,
    transparent 1px,
    transparent 28px
  );
  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(--violet-pale); border:1px solid rgba(124,58,237,0.3);
  color:var(--violet-light); font-size:0.72rem; 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.8rem,5vw,3.2rem); font-weight:900; color:var(--white);
  letter-spacing:-0.75px; margin-bottom:1rem; line-height:1.1;
}
.page-hero__title span { color:var(--violet-light); }
.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,3.5rem); flex-wrap:wrap; }
.page-hero__stat { text-align:center; }
.page-hero__stat-number { font-size:clamp(1.4rem,3vw,1.9rem); font-weight:900; color:var(--violet-light); line-height:1; }
.page-hero__stat-label { font-size:0.7rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-top:0.2rem; }

/* ============================================================
   Container + Utilities
   ============================================================ */
.container { max-width:1200px; margin:0 auto; padding:2rem 1.25rem; }

.warning-bar {
  background:var(--bg-card); border:1px solid var(--border);
  border-left:4px solid var(--violet); 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(--violet-light); }

.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(--violet-light); }
.breadcrumb__sep { color:var(--border); }

.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(--violet-light); 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; }

.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(124,58,237,0.5); transform:translateY(-2px); box-shadow:var(--shadow), var(--violet-glow); }
.casino-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--violet), var(--violet-light), transparent);
  opacity:0; transition:opacity var(--transition);
}
.casino-card:hover::before { opacity:1; }

.casino-card__body { padding:1.25rem; display:flex; flex-direction:column; gap:1rem; }
.casino-card__top { display:flex; align-items:flex-start; gap:1rem; }
.casino-card__rank {
  width:36px; height:36px; border-radius:50%;
  background:var(--violet-pale); border:1px solid rgba(124,58,237,0.35);
  color:var(--violet-light); 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(124,58,237,0.45); }
.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(--violet); color:#fff; }
.casino-card__badge--hot    { background:linear-gradient(135deg,#e91e8c,#9c27b0); color:#fff; }
.casino-card__badge--top    { background:transparent; border:1px solid var(--violet); color:var(--violet-light); }
.casino-card__name { font-size:1.05rem; font-weight:800; color:var(--text-main); margin-bottom:0.3rem; }
.casino-card__rating { display:flex; align-items:center; gap:0.4rem; margin-bottom:0.5rem; }
.casino-card__stars { color:var(--violet-light); font-size:0.9rem; letter-spacing:1px; }
.casino-card__score { font-size:0.95rem; font-weight:800; color:var(--violet-light); }
.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(--violet-light); 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(--violet-light); }

.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:var(--violet-pale); border:1px solid rgba(124,58,237,0.2);
  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(124,58,237,0.18); border-color:rgba(124,58,237,0.4); }
.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; padding:0.8rem 1rem; background:var(--violet); color:#fff;
  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; min-height:44px; display:flex; align-items:center; justify-content:center;
}
.casino-card__cta-btn:hover { background:var(--violet-light); color:#fff; box-shadow:var(--violet-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(--violet-light); }

/* ============================================================
   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(--violet), 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(124,58,237,0.45); 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(--violet-light); 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(--violet-light); }
.helpline-cta { display:inline-block; margin-top:1.25rem; padding:0.7rem 1.75rem; background:var(--violet); color:#fff; 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:var(--violet-light); color:#fff; }

/* ============================================================
   Info + 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; }
.info-section p { color:var(--text-muted); font-size:0.9rem; }
.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(--violet-light); font-weight:700; flex-shrink:0; margin-top:1px; }

.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(--violet); color:#fff; border-color:var(--violet); }
.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(--violet-light); }

/* ============================================================
   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(--violet), var(--violet-light), 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(--violet-light); font-size:1rem; }
.review-hero__score { font-size:1.1rem; font-weight:800; color:var(--violet-light); }
.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(--violet-light); 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(--violet-light); }
.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(--violet); color:#fff;
  font-weight:800; font-size:1rem; border-radius:var(--radius-sm);
  text-decoration:none; transition:all var(--transition);
  box-shadow:var(--violet-glow); min-height:48px; text-align:center;
}
.review-cta-btn:hover { background:var(--violet-light); color:#fff; box-shadow:0 0 40px rgba(124,58,237,0.5); }
.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(--violet-light); }
.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(--violet-light); 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(--violet); 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(--violet-light); }
.policy-section code { background:var(--bg-surface); border:1px solid var(--border); padding:0.1rem 0.4rem; border-radius:4px; font-size:0.82rem; color:var(--violet-light); }

/* ============================================================
   Underage
   ============================================================ */
.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(--violet-light); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background:#070710; 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(--violet-light); }
.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(--violet-light); }

/* ============================================================
   Responsive — Tablet 640px+
   ============================================================ */
@media (min-width:640px) {
  .casino-card__body { flex-direction:row; align-items:flex-start; }
  .casino-card__top { flex:1; min-width:0; }
  .casino-card__offer { width:205px; 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__cta { flex-direction:row; align-items:center; }
  .review-cta-btn { flex:1; }
}

@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 639px
   ============================================================ */
@media (max-width:639px) {
  .site-header__nav { display:none; position:absolute; top:64px; left:0; right:0; background:rgba(10,10,15,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.6); }
  .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%; }
  .casino-card__offer { border-top:1px solid var(--border); }
  .org-grid { grid-template-columns:repeat(2,1fr); }
  .pros-cons { grid-template-columns:1fr; }
  .cookie-banner { padding:1rem; flex-direction:column; align-items:stretch; }
  .cookie-banner__buttons { flex-direction:row; }
  .cookie-btn { flex:1; }
  .age-gate__buttons { flex-direction:column; align-items:stretch; }
  .age-gate__btn { max-width:100%; }
}

@media (max-width:400px) {
  .casino-card__logo { width:60px; height:60px; }
  .container { padding:1.25rem 1rem; }
}

@media (prefers-reduced-motion:reduce) { *, *::before, *::after { transition:none !important; animation:none !important; } }
