/* ==========================================================================
   Britainslake — Anthracite + Orange + White theme
   ========================================================================== */
:root {
  --bg:           #111214;
  --bg-card:      #1c1e22;
  --bg-card-alt:  #222428;
  --border:       #2e3036;
  --border-hover: #f97316;
  --orange:       #f97316;
  --orange-dark:  #ea6a0a;
  --orange-pale:  rgba(249,115,22,0.12);
  --white:        #ffffff;
  --text-main:    #f4f4f5;
  --text-body:    #c4c8d0;
  --text-muted:   #6b7280;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.45);
  --shadow-orange:0 4px 24px rgba(249,115,22,0.25);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; }

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;
}

h1,h2,h3,h4,h5,h6 { font-weight:700; line-height:1.2; margin-bottom:0.5rem; color:var(--text-main); }
p { margin-bottom:1rem; }
a { color:var(--orange); text-decoration:none; transition:color .2s; }
a:hover { color:#fb923c; }
img { max-width:100%; display:block; }

/* ==========================================================================
   Age Gate
   ========================================================================== */
.age-gate {
  position:fixed; inset:0;
  background: rgba(10,10,12,0.97);
  z-index:9999;
  display:flex; align-items:center; justify-content:center; padding:1rem;
}
.age-gate--hidden { display:none; }

.age-gate__box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 480px; width:100%;
  text-align:center;
  box-shadow: var(--shadow), 0 0 60px rgba(249,115,22,0.1);
}
.age-gate__icon { font-size:3rem; margin-bottom:0.75rem; }
.age-gate__title { font-size:1.8rem; font-weight:800; color:var(--white); margin-bottom:0.4rem; letter-spacing:-0.5px; }
.age-gate__subtitle { font-size:0.95rem; color:var(--text-muted); margin-bottom:0.75rem; }
.age-gate__disclaimer { font-size:0.82rem; color:var(--text-muted); margin-bottom:2rem; line-height:1.6; }
.age-gate__buttons { display:flex; gap:1rem; justify-content:center; }
.age-gate__btn {
  flex:1; max-width:160px; padding:0.875rem 1.5rem;
  border:none; border-radius:var(--radius-sm); font-size:1rem; font-weight:700;
  cursor:pointer; transition:transform .2s, box-shadow .2s;
}
.age-gate__btn:hover { transform:translateY(-2px); }
.age-gate__btn--yes {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color:#fff; box-shadow: var(--shadow-orange);
}
.age-gate__btn--yes:hover { box-shadow:0 6px 28px rgba(249,115,22,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(--orange);
  z-index:5000; padding:1.1rem 2rem;
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap;
  box-shadow:0 -4px 24px rgba(0,0,0,0.6);
}
.cookie-banner--hidden { display:none; }
.cookie-banner__text { flex:1; min-width:240px; font-size:0.875rem; color:var(--text-muted); margin:0; }
.cookie-banner__text a { color:var(--orange); }
.cookie-banner__buttons { display:flex; gap:0.75rem; flex-shrink:0; }
.cookie-btn { padding:0.55rem 1.2rem; border-radius:6px; font-size:0.875rem; font-weight:700; cursor:pointer; border:none; transition:all .2s; }
.cookie-btn--accept { background:linear-gradient(135deg,var(--orange),var(--orange-dark)); color:#fff; }
.cookie-btn--accept:hover { filter:brightness(1.1); }
.cookie-btn--essential { background:transparent; color:var(--text-muted); border:1px solid var(--border); }
.cookie-btn--essential:hover { border-color:var(--orange); color:var(--text-body); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: #0d0d0f;
  border-bottom: 2px solid var(--border);
  position:sticky; top:0; z-index:1000;
  box-shadow:0 2px 16px rgba(0,0,0,0.5);
}
.site-header__container {
  max-width:1200px; margin:0 auto; padding:0.75rem 1.5rem;
  display:flex; align-items:center; justify-content:space-between;
}
.site-header__logo-link { display:block; transition:opacity .2s; }
.site-header__logo-link:hover { opacity:.85; }
.site-header__logo-link img { height:52px; width:auto; }

.site-header__nav { display:flex; gap:0.15rem; align-items:center; }
.site-header__nav-link {
  color:var(--text-body); font-size:0.875rem; font-weight:600;
  padding:0.45rem 0.9rem; border-radius:6px; transition:all .2s; text-decoration:none;
}
.site-header__nav-link:hover { background:var(--orange-pale); color:var(--orange); }
.site-header__menu-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px;
}
.site-header__menu-line { display:block; width:24px; height:2px; background:var(--text-body); border-radius:2px; transition:all .3s; }
.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; }
.site-header__menu-toggle--open .site-header__menu-line:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero Banner — orange bar across the top
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #0d0d0f 0%, #1c1a14 100%);
  border-bottom: 3px solid var(--orange);
  padding:3rem 1.5rem 2.5rem;
  position:relative; overflow:hidden; text-align:center;
}
.page-hero::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, transparent, var(--orange), #fb923c, var(--orange), transparent);
}
.page-hero::after {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(249,115,22,0.08), transparent);
}
.page-hero__eyebrow {
  display:inline-block; position:relative; z-index:1;
  background:var(--orange-pale); border:1px solid rgba(249,115,22,0.3);
  color:var(--orange); font-size:0.75rem; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; padding:0.3rem 1rem; border-radius:20px; margin-bottom:1rem;
}
.page-hero__title {
  font-size:clamp(1.7rem,4vw,2.8rem); font-weight:900; color:var(--white);
  letter-spacing:-0.5px; margin-bottom:0.9rem; position:relative; z-index:1;
}
.page-hero__title span { color:var(--orange); }
.page-hero__subtitle { font-size:1.05rem; color:var(--text-muted); max-width:680px; margin:0 auto; position:relative; z-index:1; }

/* ==========================================================================
   Container
   ========================================================================== */
.container { max-width:1200px; margin:0 auto; padding:2rem 1.5rem; }

/* ==========================================================================
   Warning
   ========================================================================== */
.warning-section {
  background:var(--bg-card); border:1px solid var(--border);
  border-left:4px solid var(--orange); border-radius:var(--radius-sm);
  padding:1.25rem 1.5rem; margin:1.75rem 0;
}
.warning-section__inner { display:flex; align-items:flex-start; gap:1rem; }
.warning-section__icon { font-size:1.4rem; flex-shrink:0; margin-top:2px; }
.warning-section__title { font-size:0.92rem; font-weight:700; color:var(--orange); margin-bottom:0.3rem; }
.warning-section__text { font-size:0.845rem; color:var(--text-muted); margin:0; line-height:1.65; }
.warning-section__text a { color:var(--orange); }
.warning-section__text strong { color:var(--text-body); }

/* ==========================================================================
   Casino Cards — horizontal pill-style with orange highlight on hover
   ========================================================================== */
.casinos-list { display:flex; flex-direction:column; gap:1rem; margin-bottom:3rem; }

.casino-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius); padding:1.5rem;
  display:flex; align-items:center; gap:1.5rem;
  position:relative; overflow:hidden;
  transition:transform .2s, border-color .2s, box-shadow .2s;
}
.casino-card:hover {
  transform:translateY(-2px);
  border-color:var(--orange);
  box-shadow:0 6px 32px rgba(249,115,22,0.1);
}
/* Thin orange top bar on hover */
.casino-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--orange), #fb923c, transparent);
  opacity:0; transition:opacity .2s;
}
.casino-card:hover::before { opacity:1; }

.casino-card__badge {
  position:absolute; top:12px; right:14px;
  font-size:0.7rem; font-weight:700; padding:0.2rem 0.65rem;
  border-radius:20px; letter-spacing:0.5px; text-transform:uppercase;
}
.casino-card__badge--editors-pick { background:linear-gradient(135deg,var(--orange),var(--orange-dark)); color:#fff; }
.casino-card__badge--popular { background:linear-gradient(135deg,#e91e8c,#9c27b0); color:#fff; }
.casino-card__badge--top-choice { background:var(--bg-card-alt); color:var(--orange); border:1px solid var(--orange); }

.casino-card__rank {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff; font-size:1rem; font-weight:900;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.casino-card__logo {
  width:88px; height:88px; border-radius:var(--radius-sm); overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  background:#fff; flex-shrink:0; border:2px solid var(--border);
  transition:border-color .2s;
}
.casino-card:hover .casino-card__logo { border-color:var(--orange); }
.casino-card__logo img { width:100%; height:100%; object-fit:contain; padding:6px; }

.casino-card__info { flex:1; min-width:0; }
.casino-card__name { font-size:1.15rem; font-weight:800; color:var(--white); margin-bottom:0.3rem; letter-spacing:-0.2px; }
.casino-card__rating { display:flex; align-items:center; gap:0.5rem; margin-bottom:0.6rem; }
.casino-card__stars { color:var(--orange); font-size:1rem; letter-spacing:1px; }
.casino-card__score { font-size:1rem; font-weight:700; color:var(--orange); }
.casino-card__features { display:flex; flex-direction:column; gap:0.28rem; }
.casino-card__feature { font-size:0.82rem; color:var(--text-muted); display:flex; align-items:center; gap:0.4rem; }
.casino-card__feature-check { color:var(--orange); font-weight:700; flex-shrink:0; }
.casino-card__feature a { color:var(--text-muted); font-size:0.82rem; }
.casino-card__feature a:hover { color:var(--orange); }

.casino-card__offer { display:flex; flex-direction:column; align-items:center; gap:0.75rem; min-width:195px; flex-shrink:0; }

.casino-card__bonus {
  background:var(--bg-card-alt); border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:0.9rem 1rem; text-align:center; width:100%;
  text-decoration:none; display:block; transition:all .2s;
}
.casino-card__bonus:hover { border-color:var(--orange); background:var(--orange-pale); }
.casino-card__bonus-amount { font-size:0.88rem; font-weight:800; color:var(--white); line-height:1.3; }
.casino-card__bonus-sub { font-size:0.75rem; color:var(--text-muted); margin-top:0.2rem; }

.casino-card__play-btn {
  display:block; width:100%; padding:0.8rem 1rem;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff; font-weight:800; font-size:0.95rem;
  border-radius:var(--radius-sm); text-align:center; text-decoration:none;
  transition:all .2s; box-shadow:var(--shadow-orange); letter-spacing:0.3px;
}
.casino-card__play-btn:hover { filter:brightness(1.1); box-shadow:0 6px 28px rgba(249,115,22,0.45); transform:translateY(-1px); color:#fff; text-decoration:none; }
.casino-card__terms { font-size:0.7rem; color:var(--text-muted); text-align:center; line-height:1.4; }
.casino-card__terms a { color:var(--text-muted); }
.casino-card__terms a:hover { color:var(--orange); }

/* ==========================================================================
   Responsible Gaming
   ========================================================================== */
.responsible-section {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:16px; padding:2.5rem; margin-bottom:3rem;
  position:relative; overflow:hidden;
}
.responsible-section::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--orange), #fb923c, transparent);
}
.responsible-section__title { font-size:1.5rem; color:var(--white); margin-bottom:1rem; text-align:center; font-weight:800; }
.responsible-section__text { color:var(--text-muted); font-size:0.9rem; max-width:800px; margin:0 auto 1.25rem; text-align:center; }

.org-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin:2rem 0; }
.org-card {
  background:var(--bg-card-alt); border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:1.25rem 1rem;
  text-align:center; text-decoration:none;
  display:flex; flex-direction:column; align-items:center; gap:0.6rem;
  transition:all .2s;
}
.org-card:hover { border-color:var(--orange); transform:translateY(-2px); }
.org-card img { width:80px; height:48px; object-fit:contain; border-radius:6px; }
.org-card__name { font-size:0.85rem; font-weight:700; color:var(--text-main); }
.org-card__sub { font-size:0.72rem; color:var(--text-muted); }

.helpline-box { background:var(--bg-card-alt); border:1px solid var(--border); border-radius:var(--radius-sm); padding:1.75rem; margin-top:1.5rem; }
.helpline-box__title { font-size:1rem; font-weight:700; color:var(--orange); margin-bottom:1rem; display:flex; align-items:center; gap:0.5rem; }
.helpline-list { display:flex; flex-direction:column; gap:0.75rem; }
.helpline-item { display:flex; align-items:flex-start; gap:0.75rem; font-size:0.875rem; color:var(--text-muted); }
.helpline-item strong { color:var(--text-body); }
.helpline-item a { color:var(--orange); }
.helpline-cta { display:inline-block; margin-top:1.25rem; padding:0.7rem 1.75rem; background:linear-gradient(135deg,var(--orange),var(--orange-dark)); color:#fff; font-weight:700; border-radius:var(--radius-sm); text-decoration:none; font-size:0.9rem; transition:all .2s; }
.helpline-cta:hover { filter:brightness(1.1); color:#fff; }

/* ==========================================================================
   Info / Guide
   ========================================================================== */
.info-section { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:2.5rem; margin-bottom:3rem; position:relative; overflow:hidden; }
.info-section::before { content:''; position:absolute; top:0; right:0; width:200px; height:200px; background:radial-gradient(ellipse, rgba(249,115,22,0.05), transparent 70%); }
.info-section__title { font-size:1.4rem; color:var(--white); font-weight:800; margin-bottom:1.25rem; }
.info-section p { color:var(--text-muted); font-size:0.925rem; }
.feature-list { display:flex; flex-direction:column; gap:0.45rem; margin:1rem 0; }
.feature-item { display:flex; align-items:center; gap:0.6rem; font-size:0.875rem; color:var(--text-muted); }
.feature-item__check { color:var(--orange); font-weight:700; flex-shrink:0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:2.5rem; margin-bottom:3rem; }
.faq-section__title { font-size:1.4rem; color:var(--white); font-weight:800; margin-bottom:1.5rem; text-align:center; }
.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:1.1rem 0; display:flex; justify-content:space-between; align-items:center; cursor:pointer; text-align:left; gap:1rem; }
.faq-item__question-text { font-size:0.95rem; font-weight:700; color:var(--text-main); }
.faq-item__toggle { width:28px; height:28px; border-radius:50%; background:var(--bg-card-alt); border:1px solid var(--border); color:var(--text-muted); font-size:1.1rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .2s; }
.faq-item--expanded .faq-item__toggle { background:linear-gradient(135deg,var(--orange),var(--orange-dark)); color:#fff; border-color:var(--orange); }
.faq-item__answer { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item__answer-content { padding:0 0 1rem; color:var(--text-muted); font-size:0.9rem; line-height:1.75; }
.faq-item__answer-content a { color:var(--orange); }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { display:flex; list-style:none; font-size:0.82rem; color:var(--text-muted); margin-bottom:1.5rem; flex-wrap:wrap; gap:0.25rem; }
.breadcrumb li { display:flex; align-items:center; gap:0.25rem; }
.breadcrumb a { color:var(--orange); }
.breadcrumb__sep { color:var(--border); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background:#0d0d0f; border-top:2px solid var(--border); padding:3rem 1.5rem 2rem; margin-top:2rem; }
.footer__inner { max-width:1200px; margin:0 auto; }
.footer__orgs { display:flex; justify-content:center; align-items:center; gap:1.5rem; flex-wrap:wrap; margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid var(--border); }
.footer__org-link { opacity:.65; transition:opacity .2s; display:block; }
.footer__org-link:hover { opacity:1; }
.footer__org-link img { width:72px; height:44px; object-fit:contain; border-radius:5px; }
.footer__badges { display:flex; justify-content:center; align-items:center; gap:1rem; margin-bottom:1.5rem; flex-wrap:wrap; }
.footer__badge-18 { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,#c62828,#8b0000); color:white; font-size:0.85rem; font-weight:800; display:flex; align-items:center; justify-content:center; border:2px solid #ef5350; }
.footer__uk-badge { background:#003087; color:white; font-size:0.72rem; font-weight:700; padding:0.3rem 0.75rem; border-radius:20px; letter-spacing:0.5px; text-transform:uppercase; }
.footer__links { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.footer__link { color:var(--text-muted); font-size:0.875rem; }
.footer__link:hover { color:var(--orange); }
.footer__text { font-size:0.8rem; color:var(--text-muted); text-align:center; line-height:1.7; max-width:820px; margin:0 auto 0.75rem; }
.footer__text a { color:var(--text-muted); }
.footer__text a:hover { color:var(--orange); }

/* ==========================================================================
   Review Pages
   ========================================================================== */
.review-hero {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:16px; padding:2.5rem; margin-bottom:2rem;
  display:flex; align-items:center; gap:2rem; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.review-hero::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--orange),#fb923c,transparent); }
.review-hero__logo { width:120px; height:80px; background:#fff; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; border:2px solid var(--border); overflow:hidden; transition:border-color .2s; }
.review-hero__logo:hover { border-color:var(--orange); }
.review-hero__logo img { width:100%; height:100%; object-fit:contain; padding:8px; }
.review-hero__info { flex:1; min-width:200px; }
.review-hero__name { font-size:1.8rem; font-weight:900; color:var(--white); letter-spacing:-0.5px; margin-bottom:0.35rem; }
.review-hero__rating { display:flex; align-items:center; gap:0.5rem; margin-bottom:0.75rem; }
.review-hero__stars { color:var(--orange); font-size:1.2rem; }
.review-hero__score { font-size:1.3rem; font-weight:800; color:var(--orange); }
.review-hero__features { display:flex; flex-direction:column; gap:0.3rem; }
.review-hero__feature { font-size:0.875rem; color:var(--text-muted); display:flex; align-items:center; gap:0.4rem; }
.review-hero__feature-check { color:var(--orange); font-weight:700; }
.review-hero__feature a { color:var(--text-muted); font-size:0.875rem; }
.review-hero__feature a:hover { color:var(--orange); }
.review-hero__cta { display:flex; flex-direction:column; align-items:center; gap:0.75rem; min-width:185px; }
.review-cta-btn { display:block; padding:0.95rem 2rem; background:linear-gradient(135deg,var(--orange),var(--orange-dark)); color:#fff; font-weight:800; font-size:1rem; border-radius:var(--radius-sm); text-align:center; text-decoration:none; white-space:nowrap; transition:all .2s; box-shadow:var(--shadow-orange); }
.review-cta-btn:hover { filter:brightness(1.1); box-shadow:0 6px 28px rgba(249,115,22,0.5); color:#fff; transform:translateY(-2px); }
.review-cta-terms { font-size:0.72rem; 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:2rem; margin-bottom:1.25rem; }
.review-section__title { font-size:1.1rem; font-weight:800; color:var(--white); margin-bottom:1rem; padding-bottom:0.6rem; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:0.4rem; }
.review-section p { color:var(--text-muted); font-size:0.9rem; }
.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.pros-cons__col h4 { font-size:0.95rem; font-weight:700; margin-bottom:0.75rem; }
.pros-cons__col--pros h4 { color:var(--orange); }
.pros-cons__col--cons h4 { color:#f87171; }
.pros-cons__list { display:flex; flex-direction:column; gap:0.4rem; list-style:none; }
.pros-cons__item { font-size:0.875rem; color:var(--text-muted); display:flex; align-items:flex-start; gap:0.5rem; }
.pros-cons__item--pro::before { content:'✓'; color:var(--orange); font-weight:700; flex-shrink:0; }
.pros-cons__item--con::before { content:'✗'; color:#f87171; font-weight:700; flex-shrink:0; }
.payment-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); gap:0.75rem; }
.payment-item { background:var(--bg-card-alt); border:1px solid var(--border); border-radius:var(--radius-sm); padding:0.6rem 0.75rem; font-size:0.8rem; color:var(--text-muted); text-align:center; }

/* ==========================================================================
   Policy Pages
   ========================================================================== */
.policy-header { background:var(--bg-card); border-bottom:2px solid var(--orange); padding:2.5rem 1.5rem; text-align:center; margin-bottom:2.5rem; }
.policy-header__title { font-size:1.8rem; 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:2.5rem; }
.policy-section__title { font-size:1.05rem; color:var(--white); font-weight:700; margin-bottom:1rem; padding-bottom:0.4rem; border-bottom:1px solid var(--border); }
.policy-section p, .policy-section li { color:var(--text-muted); font-size:0.9rem; line-height:1.75; }
.policy-section ul, .policy-section ol { padding-left:1.5rem; margin-bottom:1rem; }
.policy-section li { margin-bottom:0.4rem; }
.policy-section a { color:var(--orange); }

/* ==========================================================================
   Underage Page
   ========================================================================== */
.underage-page { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:2rem; background:var(--bg); }
.underage-box { background:var(--bg-card); border:2px solid var(--border); border-top:3px solid #f87171; border-radius:20px; padding:3rem; max-width:560px; width:100%; text-align:center; }
.underage-box__icon { font-size:4rem; margin-bottom:1.25rem; }
.underage-box__title { font-size:1.8rem; font-weight:900; color:#f87171; margin-bottom:0.75rem; }
.underage-box__text { color:var(--text-muted); font-size:0.95rem; margin-bottom:1.5rem; 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 .2s; }
.underage-link--primary { background:linear-gradient(135deg,#00843d,#005c2b); color:white; }
.underage-link--primary:hover { filter:brightness(1.1); color:white; text-decoration:none; }
.underage-link--secondary { color:var(--text-muted); font-size:0.85rem; }
.underage-link--secondary:hover { color:var(--orange); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:900px) {
  .org-grid { grid-template-columns:repeat(2,1fr); }
  .pros-cons { grid-template-columns:1fr; gap:1rem; }
  .review-hero { flex-direction:column; align-items:flex-start; }
}
@media (max-width:768px) {
  .site-header__nav { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:#0d0d0f; box-shadow:0 8px 24px rgba(0,0,0,.4); padding:1rem; gap:0.25rem; border-top:2px solid var(--orange); }
  .site-header__nav--open { display:flex; }
  .site-header__menu-toggle { display:flex; }
  .site-header__container { position:relative; }
  .casino-card { flex-wrap:wrap; gap:1rem; }
  .casino-card__offer { width:100%; min-width:unset; flex-direction:row; flex-wrap:wrap; }
  .casino-card__bonus { flex:1; }
  .casino-card__play-btn { flex:1; min-width:120px; }
  .casino-card__terms { width:100%; }
  .cookie-banner { flex-direction:column; align-items:flex-start; }
  .age-gate__buttons { flex-direction:column; align-items:stretch; }
  .age-gate__btn { max-width:100%; }
}
@media (max-width:480px) {
  .container { padding:1.25rem 1rem; }
  .page-hero { padding:2rem 1rem 1.75rem; }
  .casino-card { padding:1.25rem 1rem; }
  .casino-card__logo { width:72px; height:72px; }
  .responsible-section, .info-section, .faq-section, .review-section { padding:1.5rem 1.25rem; }
}
@media (prefers-reduced-motion:reduce) { *, *::before, *::after { transition:none !important; animation:none !important; } }
