/* =========================================================
  Casino Review Hub — design system
   ========================================================= */

:root {
  --bg: #09080f;
  --surface: #14121f;
  --surface-raised: #1b1830;
  --border: rgba(231, 185, 92, 0.16);
  --text: #f2eee2;
  --text-muted: #a79fc9;
  --gold: #e7b95c;
  --gold-bright: #f7d385;
  --betano: #ff5a1f;
  --parimatch: #7c3aed;
  --good: #3ddc97;
  --bad: #ff6b6b;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-glow: 0 0 40px rgba(231, 185, 92, 0.15);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); text-decoration: underline; }
ul { padding-left: 1.2em; color: var(--text-muted); }
img, svg { max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: #14121f;
  padding: 0.75em 1.2em; z-index: 999; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Ambient background ---------- */
.ambient-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
#particleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.glow {
  position: absolute; width: 45vw; height: 45vw; border-radius: 50%;
  filter: blur(90px); opacity: 0.35; will-change: transform;
}
.glow--one { top: -10%; left: -10%; background: radial-gradient(circle, var(--gold) 0%, transparent 70%); }
.glow--two { bottom: -15%; right: -10%; background: radial-gradient(circle, var(--parimatch) 0%, transparent 70%); }
.floor-haze {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40vh;
  background: linear-gradient(to top, rgba(9, 8, 15, 0.9), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.75em 1.5em; border-radius: 999px; font-weight: 700; font-family: var(--font-body);
  border: 1.5px solid transparent; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none; font-size: 0.95rem;
}
.btn--lg { padding: 1em 2em; font-size: 1.05rem; }
.btn--solid { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1409; }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(231, 185, 92, 0.35); text-decoration: none; color: #1a1409; }
.btn--ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); text-decoration: none; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9, 8, 15, 0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; padding: 1em 1.5em;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5em;
}
.brand-mark { display: flex; align-items: center; gap: 0.5em; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.brand-mark:hover { text-decoration: none; color: var(--gold-bright); }
.brand-mark__glyph { color: var(--gold); text-shadow: 0 0 12px rgba(231,185,92,0.6); }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 1.75em; margin: 0; padding: 0; }
.main-nav a {
  color: var(--text); font-weight: 600; font-size: 0.95rem; position: relative; padding: 0.3em 0;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--gold); text-decoration: none; }
.main-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gold);
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; list-style: none; margin: 0.5em 0 0; padding: 0.5em;
  background: var(--surface-raised); border: 1px solid var(--border); border-radius: 10px;
  min-width: 160px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a { display: block; padding: 0.5em 0.75em; border-radius: 6px; }
.dropdown li a:hover { background: rgba(231,185,92,0.1); text-decoration: none; }

.site-header__right { display: flex; align-items: center; gap: 1em; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1em; height: 2.1em; border-radius: 50%; font-weight: 800; font-size: 0.85rem;
  background: linear-gradient(135deg, var(--bad), #b91c1c); color: #fff; border: 2px solid rgba(255,255,255,0.25);
}
.age-badge--lg { width: 3em; height: 3em; font-size: 1.1rem; flex-shrink: 0; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.4em; height: 2.4em; background: none; border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 0 auto; width: 60%; transition: 0.2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 6em 1.5em 4em;
  overflow: hidden;
}
.hero__scene { position: absolute; inset: 0; z-index: -1; }
.hero__spotlight {
  position: absolute; top: 20%; left: 50%; width: 900px; height: 900px; margin-left: -450px;
  background: radial-gradient(circle, rgba(231,185,92,0.18) 0%, transparent 60%);
}
.hero__floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: radial-gradient(ellipse at 50% 100%, rgba(124,58,237,0.25), transparent 70%);
}
.hero__content { max-width: 780px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 700;
  color: var(--gold); margin-bottom: 1em;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 0.4em; color: var(--text);
  text-shadow: 0 0 40px rgba(231,185,92,0.25);
}
.hero__title span { color: var(--gold); }
.hero__lede { font-size: 1.15rem; max-width: 620px; margin: 0 auto 1.75em; }
.hero__ctas { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5em; }
.hero__fineprint { font-size: 0.8rem; color: var(--text-muted); opacity: 0.8; }
.hero__scroll-cue { position: absolute; bottom: 2em; left: 50%; transform: translateX(-50%); text-align: center; }
.hero__scroll-cue span {
  display: block; width: 22px; height: 34px; border: 2px solid var(--border); border-radius: 14px; margin: 0 auto 0.5em; position: relative;
}
.hero__scroll-cue span::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--gold); border-radius: 2px; animation: scrollDot 1.6s infinite ease-in-out;
}
.hero__scroll-cue p { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; color: var(--text-muted); }
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(10px); opacity: 0.2; } }

/* ---------- Section heading ---------- */
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 3em; }
.section-heading--left { text-align: left; margin: 0 0 2.5em; }
.section-heading__lede { color: var(--text-muted); }

/* ---------- Portals (home + reviews index) ---------- */
.portals { max-width: 1200px; margin: 0 auto; padding: 5em 1.5em; }
.portals--corridor { padding-top: 1em; }
.portal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2em; }
.portal-card {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface); min-height: 360px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.portal-card:hover { transform: translateY(-6px); text-decoration: none; }
.portal-card__glow {
  position: absolute; inset: 0; opacity: 0.55; transition: opacity 0.35s ease;
  background: radial-gradient(circle at 30% 20%, var(--accent, var(--gold)) 0%, transparent 55%);
}
.portal-card:hover .portal-card__glow { opacity: 0.9; }
.portal-card--betano { --accent: var(--betano); }
.portal-card--parimatch { --accent: var(--parimatch); }
.portal-card__door { position: relative; z-index: 1; padding: 2.5em; height: 100%; display: flex; flex-direction: column; }
.portal-card__kicker { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent, var(--gold)); font-weight: 700; margin-bottom: 0.6em; }
.portal-card__door h3 { font-size: 2rem; color: var(--text); margin-bottom: 0.3em; }
.portal-card__door p { flex-grow: 1; }
.portal-card__rating { display: flex; align-items: baseline; gap: 0.4em; margin: 1em 0; }
.rating-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.rating-number--lg { font-size: 3rem; }
.rating-out-of { font-size: 0.85rem; color: var(--text-muted); }
.portal-card__actions { display: flex; gap: 0.75em; flex-wrap: wrap; margin-top: 0.5em; }
.portal-card__fineprint { font-size: 0.75rem; color: var(--text-muted); opacity: 0.8; margin: 0.9em 0 0; }

/* ---------- Brand logo (wordmark badge) ---------- */
.brand-logo { display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 700; margin-bottom: 0.9em; }
.brand-logo__picture { display: inline-flex; align-items: center; }
.brand-logo__image { display: block; height: 1.6em; width: auto; max-width: 8rem; object-fit: contain; flex-shrink: 0; }
.brand-logo__word { font-size: 1.3rem; letter-spacing: 0.01em; }
.brand-logo--betano { color: var(--betano); text-shadow: 0 0 22px rgba(255, 90, 31, 0.45); }
.brand-logo--parimatch { color: var(--parimatch); text-shadow: 0 0 22px rgba(124, 58, 237, 0.45); }
.brand-hero .brand-logo { justify-content: center; margin-bottom: 0.6em; }
.brand-hero .brand-logo__word { font-size: 1.6rem; }

/* ---------- Logo strip ---------- */
.logo-strip { max-width: 1000px; margin: 0 auto; padding: 0 1.5em 5em; text-align: center; }
.logo-strip__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 1.5em; }
.logo-strip__row { display: flex; gap: 2.5em; justify-content: center; flex-wrap: wrap; align-items: center; }
.logo-strip__item {
  display: flex; align-items: center; padding: 1em 1.75em; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface); transition: transform 0.2s ease, border-color 0.2s ease;
}
.logo-strip__item:hover { transform: translateY(-3px); border-color: var(--gold); text-decoration: none; }
.logo-strip__item .brand-logo { margin-bottom: 0; }

/* ---------- How We Evaluate (criteria) ---------- */
.criteria { max-width: 1200px; margin: 0 auto; padding: 2em 1.5em 5em; }
.criteria-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25em; }
.criteria-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5em 1.25em; }
.criteria-card__step { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); opacity: 0.6; display: block; margin-bottom: 0.4em; }
.criteria-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4em; }
.criteria-card p { font-size: 0.86rem; margin: 0; }

/* ---------- Trust strip ---------- */
.trust-strip { max-width: 1200px; margin: 0 auto; padding: 2em 1.5em 5em; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2em; }
.trust-strip__item { display: flex; gap: 1em; align-items: flex-start; }
.trust-icon {
  flex-shrink: 0; width: 2.6em; height: 2.6em; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: rgba(231,185,92,0.1); color: var(--gold); font-size: 1.1rem; border: 1px solid var(--border);
}
.trust-strip__item h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.25em; }
.trust-strip__item p { font-size: 0.9rem; margin: 0; }

/* ---------- FAQ preview (homepage) ---------- */
.faq-preview { max-width: 760px; margin: 0 auto; padding: 2em 1.5em 5em; }
.faq-list--preview { padding: 0; }
.faq-preview__more { text-align: center; margin-top: 1.5em; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; max-width: 800px; margin: 0 auto; padding: 4em 1.5em 6em;
}
.cta-band h2 { color: var(--text); }
.cta-band__actions { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; margin-top: 1.5em; }
.cta-band--room { border-top: 1px solid var(--border); padding-top: 4em; }

/* ---------- Generic page hero ---------- */
.page-hero { max-width: 800px; margin: 0 auto; padding: 6em 1.5em 2em; text-align: center; }
.page-hero__lede { font-size: 1.05rem; }
.page-hero--legal, .page-hero--404 { padding-top: 5em; }

/* ---------- Content blocks (about/legal) ---------- */
.content-block { max-width: 760px; margin: 0 auto; padding: 2em 1.5em; }
.content-block h2 { color: var(--text); font-size: 1.4rem; margin-top: 1.2em; }
.content-block--legal h2:first-child { margin-top: 0; }
.content-block--narrow { max-width: 560px; }
.content-block--cta { text-align: center; padding: 3em 1.5em 5em; }
.content-block--cta h2 { color: var(--text); }
.policy-table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.policy-table th, .policy-table td { border: 1px solid var(--border); padding: 0.6em 0.8em; text-align: left; font-size: 0.9rem; }
.policy-table th { background: var(--surface); color: var(--gold); }
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 1.6em; margin-bottom: 0.6em; }
.checklist li::before { content: "\2726"; position: absolute; left: 0; color: var(--gold); }

.resource-grid { max-width: 1100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5em; }
.resource-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75em; text-align: left;
}
.resource-card h3 { color: var(--text); }

/* ---------- Brand review page ---------- */
.brand-review--betano { --accent: var(--betano); }
.brand-review--parimatch { --accent: var(--parimatch); }

.brand-hero {
  position: relative; padding: 6em 1.5em 4em; overflow: hidden; text-align: center;
}
.brand-hero__scene { position: absolute; inset: 0; z-index: -1; }
.brand-hero__spotlight {
  position: absolute; top: 10%; left: 50%; width: 800px; height: 800px; margin-left: -400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 60%);
}
.brand-hero__content { max-width: 760px; margin: 0 auto; }
.brand-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--text); }
.brand-hero__tagline { font-size: 1.1rem; }
.brand-hero__meta { display: flex; gap: 0.6em; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5em; }
.brand-hero__score { display: flex; align-items: center; gap: 1em; justify-content: center; text-align: left; }
.brand-hero__ctas { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; margin-top: 1.75em; }
.fineprint { font-size: 0.78rem; color: var(--text-muted); opacity: 0.85; margin: 0; }

/* ---------- Explore room (hotspot environment) ---------- */
.explore-room { max-width: 1100px; margin: 0 auto; padding: 3em 1.5em; }
.room {
  position: relative; aspect-ratio: 16 / 8; width: 100%; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 70%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 45%),
    radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 45%),
    linear-gradient(180deg, #120f1e, #0a0813 80%);
}
.room__floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(0deg, rgba(0,0,0,0.5), transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.room__silhouette { position: absolute; border-radius: 50%; opacity: 0.5; }
.room__silhouette--wheel {
  width: 220px; height: 220px; left: 8%; bottom: 8%;
  background: conic-gradient(var(--accent) 0deg 30deg, transparent 30deg 60deg, var(--accent) 60deg 90deg, transparent 90deg 120deg, var(--accent) 120deg 150deg, transparent 150deg 180deg, var(--accent) 180deg 210deg, transparent 210deg 240deg, var(--accent) 240deg 270deg, transparent 270deg 300deg, var(--accent) 300deg 330deg, transparent 330deg 360deg);
  filter: blur(0.5px) saturate(0.6) brightness(0.6);
  mask: radial-gradient(circle, black 60%, transparent 62%);
  -webkit-mask: radial-gradient(circle, black 60%, transparent 62%);
  animation: wheelSpin 40s linear infinite;
}
.room__silhouette--tables {
  width: 260px; height: 120px; border-radius: 60px; right: 10%; top: 18%;
  background: color-mix(in srgb, var(--gold) 30%, transparent);
  filter: blur(1px) brightness(0.6);
}
@keyframes wheelSpin { to { transform: rotate(360deg); } }

.hotspot { position: absolute; transform: translate(-50%, -50%); }
.hotspot__marker {
  width: 2.2em; height: 2.2em; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(9,8,15,0.6); display: flex; align-items: center; justify-content: center; position: relative;
}
.hotspot__pulse {
  width: 0.7em; height: 0.7em; border-radius: 50%; background: var(--accent, var(--gold));
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent, var(--gold)) 60%, transparent);
  animation: hotspotPulse 2.2s ease-in-out infinite;
}
@keyframes hotspotPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent, var(--gold)) 55%, transparent); }
  70% { box-shadow: 0 0 0 16px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.hotspot__panel {
  position: absolute; top: 120%; left: 50%; transform: translate(-50%, 6px) scale(0.96);
  width: 260px; background: var(--surface-raised); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.25em; text-align: left; box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; z-index: 20;
}
.hotspot__panel.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0) scale(1); }
.hotspot__panel h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4em; }
.hotspot__panel p { font-size: 0.88rem; margin-bottom: 0.75em; }
.hotspot__badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--accent, var(--gold));
  border: 1px solid color-mix(in srgb, var(--accent, var(--gold)) 50%, transparent); border-radius: 999px; padding: 0.3em 0.7em;
}
.hotspot__close {
  position: absolute; top: 0.5em; right: 0.5em; background: none; border: none; color: var(--text-muted);
  font-size: 1.1rem; cursor: pointer; line-height: 1;
}
.hotspot__close:hover { color: var(--text); }
.room__hint { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 1em; }

/* ---------- Rating breakdown ---------- */
.rating-breakdown { max-width: 900px; margin: 0 auto; padding: 3em 1.5em; }
.rating-bars { display: flex; flex-direction: column; gap: 1.1em; }
.rating-bar__label { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.35em; color: var(--text); }
.rating-bar__track { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.rating-bar__fill {
  height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent, var(--gold)), var(--gold-bright));
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Pros / cons ---------- */
.pros-cons { max-width: 900px; margin: 0 auto; padding: 1em 1.5em 3em; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5em; }
.pros-cons__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5em; }
.pros-cons__col h3 { color: var(--text); font-size: 1.05rem; }
.pros-cons__col ul { list-style: none; padding: 0; }
.pros-cons__col li { position: relative; padding-left: 1.6em; margin-bottom: 0.6em; font-size: 0.92rem; color: var(--text-muted); }
.pros-cons__col--pros li::before { content: "\2713"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.pros-cons__col--cons li::before { content: "\2715"; position: absolute; left: 0; color: var(--bad); font-weight: 700; }

/* ---------- Brand summary ---------- */
.brand-summary { max-width: 760px; margin: 0 auto; padding: 1em 1.5em 4em; }
.licence-callout, .safer-reminder {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.2em 1.5em; margin-top: 1em; font-size: 0.9rem;
}
.licence-callout p, .safer-reminder p { margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; padding: 1em 1.5em 5em; display: flex; flex-direction: column; gap: 0.75em; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1em 1.25em; }
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--text); list-style: none; position: relative; padding-right: 1.5em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 0; color: var(--gold); font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item__body { padding-top: 0.75em; }
.faq-item__body p { margin: 0; }

/* ---------- Contact form ---------- */
.contact-form { display: flex; flex-direction: column; gap: 1.1em; }
.form-row { display: flex; flex-direction: column; gap: 0.4em; }
.form-row label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.form-row input, .form-row select, .form-row textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 0.75em 0.9em;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(231,185,92,0.18);
}
.form-fineprint { font-size: 0.78rem; }
.form-success { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2em; text-align: center; }
.contact-alt { margin-top: 3em; padding-top: 2em; border-top: 1px solid var(--border); }

/* ---------- Cookie consent ---------- */
.cookie-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; padding: 1em;
  transform: translateY(120%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent__inner {
  max-width: 900px; margin: 0 auto; background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25em 1.5em; display: flex; align-items: center; gap: 1.5em; flex-wrap: wrap;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.cookie-consent__inner p { margin: 0; flex: 1 1 320px; font-size: 0.88rem; }
.cookie-consent__actions { display: flex; gap: 0.75em; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 3em 1.5em 2em; margin-top: 3em; }
.site-footer__top {
  max-width: 1100px; margin: 0 auto 2em; display: flex; justify-content: space-between; gap: 2em; flex-wrap: wrap;
}
.footer-licence { display: flex; gap: 1em; align-items: flex-start; max-width: 620px; }
.licence-badge {
  flex-shrink: 0; width: 2.6em; height: 2.6em; border-radius: 50%; background: rgba(231,185,92,0.1);
  border: 1px solid var(--border); color: var(--gold); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.footer-licence p { font-size: 0.85rem; margin: 0; }
.footer-age { display: flex; gap: 1em; align-items: flex-start; max-width: 320px; }
.footer-age p { font-size: 0.85rem; margin: 0; }

.footer-safer { max-width: 1100px; margin: 0 auto 2em; }
.footer-safer__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.75em; }
.safer-logos { display: flex; gap: 1em; flex-wrap: wrap; }
.safer-logo { color: var(--text-muted); width: 130px; }
.safer-logo:hover { color: var(--gold); }

.footer-nav {
  max-width: 1100px; margin: 0 auto 2em; display: flex; gap: 0.6em; flex-wrap: wrap; font-size: 0.85rem;
}
.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-nav span { color: var(--border); }

.footer-bottom { max-width: 1100px; margin: 0 auto; font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom p { margin: 0 0 0.5em; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--surface-raised);
    border-left: 1px solid var(--border); transform: translateX(100%); transition: transform 0.3s ease;
    padding: 6em 1.5em 2em; z-index: 90;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.2em; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; margin-top: 0.5em; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .portal-grid, .trust-strip__grid, .pros-cons, .resource-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header__top, .site-footer__top { flex-direction: column; }
}

@media (max-width: 600px) {
  .room { aspect-ratio: 9 / 14; }
  .hotspot__panel { width: 220px; }
  .criteria-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
