/* ============================================================
   mejoresplataformas.com — Design System v2
   Fonts  : Syne (display) · Manrope (body)
   Palette: Electric Teal #00DEB8 + Purple #8866FF on Dark Slate
   Prefix : mp- (components)  pg- (policy pages)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-0:     #060A10;
  --bg-1:     #0B1020;
  --bg-2:     #101828;
  --bg-3:     #162033;

  /* Borders */
  --bd-0:     #1A2840;
  --bd-1:     #253858;
  --bd-2:     #304870;

  /* Teal accent */
  --teal:     #00DEB8;
  --teal-a:   rgba(0, 222, 184, .14);
  --teal-b:   rgba(0, 222, 184, .06);
  --teal-h:   #1FFFCE;

  /* Purple accent */
  --purple:   #8866FF;
  --pur-a:    rgba(136, 102, 255, .18);

  /* Text */
  --t-hi:     #E2ECFF;
  --t-mid:    #7A8EAA;
  --t-lo:     #3E5070;

  /* Status */
  --ok:       #22C55E;

  /* Radius */
  --r-s:      6px;
  --r-m:      14px;
  --r-l:      24px;
  --r-xl:     36px;

  /* Animation */
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --dur:      .28s;

  /* Max width */
  --wrap:     1160px;

  /* Fonts */
  --f-d:      'Syne', system-ui, sans-serif;
  --f-b:      'Manrope', system-ui, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--t-hi);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--f-b); }

/* ── Layout ───────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Header (.mp-hd) ──────────────────────────────────────── */
.mp-hd {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(6, 10, 16, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mp-hd.is-scrolled {
  border-color: var(--bd-0);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}
.mp-hd__in {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

/* Logo */
.mp-hd__logo { display: flex; align-items: center; flex-shrink: 0; }
.mp-hd__logo-img {
  display: block;
  width: 200px;
  height: 64px;
  object-fit: contain;
}

/* Nav */
.mp-hd__nav { display: flex; align-items: center; gap: 28px; flex: 1; }
.mp-hd__nav a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--t-mid);
  transition: color var(--dur) var(--ease);
}
.mp-hd__nav a:hover, .mp-hd__nav a.active { color: var(--t-hi); }

/* Right side */
.mp-hd__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.mp-hd__18 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--teal);
  background: var(--teal-a);
  border: 1px solid rgba(0,222,184,.3);
  padding: 3px 9px;
  border-radius: var(--r-s);
}
.mp-hd__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.mp-hd__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--t-hi);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

/* ── Hero (.mp-hero) ──────────────────────────────────────── */
.mp-hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.mp-hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pur-a) 0%, transparent 65%);
  pointer-events: none;
}
.mp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-b);
  border: 1px solid rgba(0,222,184,.2);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.mp-hero__tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.mp-hero__h1 {
  font-family: var(--f-d);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.mp-hero__h1 span {
  background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mp-hero__p {
  font-size: 1.05rem;
  color: var(--t-mid);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.mp-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.mp-hero__nums {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--bd-0);
  flex-wrap: wrap;
}
.mp-hero__num-val {
  font-family: var(--f-d);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.mp-hero__num-label { font-size: .78rem; color: var(--t-mid); margin-top: 4px; }

/* Hero visual panel */
.mp-hero__visual { position: relative; }
.mp-hero__panel {
  background: var(--bg-2);
  border: 1px solid var(--bd-1);
  border-radius: var(--r-l);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.mp-hero__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-l);
  background: linear-gradient(135deg, var(--teal-b) 0%, transparent 55%);
  pointer-events: none;
}
.mp-hero__panel-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.mp-hero__panel-logo {
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.mp-hero__panel-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.mp-hero__panel-stars { color: var(--teal); font-size: .9rem; letter-spacing: 2px; }
.mp-hero__panel-val {
  font-family: var(--f-d);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--t-hi);
}
.mp-hero__panel-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.mp-hero__panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--teal);
  color: var(--bg-0);
  font-family: var(--f-d);
  font-size: .85rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--r-m);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mp-hero__panel-cta:hover {
  background: var(--teal-h);
  box-shadow: 0 0 28px rgba(0,222,184,.35);
}

/* ── Marquee Strip (.mp-strip) ────────────────────────────── */
.mp-strip {
  border-top: 1px solid var(--bd-0);
  border-bottom: 1px solid var(--bd-0);
  background: var(--bg-1);
  padding: 12px 0;
  overflow: hidden;
  user-select: none;
}
.mp-strip__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: strip-scroll 32s linear infinite;
}
.mp-strip__track:hover { animation-play-state: paused; }
.mp-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--t-mid);
  letter-spacing: .3px;
}
.mp-strip__item::after {
  content: '·';
  color: var(--teal);
  font-size: 1.3rem;
  line-height: 1;
}
@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Disclaimer (.mp-disc) ────────────────────────────────── */
.mp-disc {
  background: rgba(136, 102, 255, .05);
  border-top: 1px solid rgba(136,102,255,.12);
  border-bottom: 1px solid rgba(136,102,255,.12);
  padding: 12px 0;
}
.mp-disc p { font-size: .78rem; color: var(--t-mid); text-align: center; line-height: 1.6; }
.mp-disc a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.mp-disc strong { color: var(--purple); }

/* ── Section base (.mp-sec) ───────────────────────────────── */
.mp-sec { padding: 88px 0; }
.mp-sec__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.mp-sec__h2 {
  font-family: var(--f-d);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.mp-sec__h2 mark {
  background: none;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mp-sec__sub { font-size: .95rem; color: var(--t-mid); max-width: 520px; margin-top: 12px; line-height: 1.75; }
.mp-sec__head { margin-bottom: 52px; }

/* ── Buttons (.mp-btn) ────────────────────────────────────── */
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--f-b);
  font-weight: 600;
  border-radius: var(--r-m);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.mp-btn--primary {
  background: var(--teal);
  color: var(--bg-0);
  font-size: .875rem;
  padding: 13px 28px;
}
.mp-btn--primary:hover {
  background: var(--teal-h);
  box-shadow: 0 0 28px rgba(0,222,184,.3);
  transform: translateY(-1px);
}
.mp-btn--ghost {
  background: transparent;
  border: 1px solid var(--bd-1);
  color: var(--t-mid);
  font-size: .85rem;
  padding: 12px 24px;
}
.mp-btn--ghost:hover { border-color: var(--bd-2); color: var(--t-hi); }
.mp-btn--full { width: 100%; }
.mp-btn--lg { font-size: 1rem; padding: 16px 40px; }

/* ── Tags (.mp-tag) ───────────────────────────────────────── */
.mp-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bd-0);
  color: var(--t-mid);
  font-size: .73rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 100px;
}
.mp-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
}

/* ── Casino Card (.mp-card) ───────────────────────────────── */
.mp-cards-list { display: flex; flex-direction: column; gap: 20px; }

.mp-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-l);
  display: grid;
  grid-template-columns: 196px 1fr 196px;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--purple));
  z-index: 1;
}
.mp-card:hover {
  border-color: var(--bd-1);
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(0,0,0,.5), 0 0 0 1px var(--teal-a);
}
.mp-card__badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--teal);
  color: var(--bg-0);
  font-family: var(--f-d);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Logo column */
.mp-card__l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 44px 20px 28px;
  background: var(--bg-1);
  border-right: 1px solid var(--bd-0);
  position: relative;
}
.mp-card__rank-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-d);
  font-size: .72rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-b);
  border: 1px solid rgba(0,222,184,.2);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-card__logo-img {
  width: 110px; height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.mp-card__score-row { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mp-card__stars { color: var(--teal); font-size: .88rem; letter-spacing: 2px; }
.mp-card__score-num { font-family: var(--f-d); font-size: .82rem; font-weight: 700; color: var(--teal); }

/* Info column */
.mp-card__m {
  padding: 24px 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.mp-card__m-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mp-card__name { font-family: var(--f-d); font-size: 1.15rem; font-weight: 700; line-height: 1.2; }
.mp-card__sub { font-size: .85rem; color: var(--t-mid); line-height: 1.65; }
.mp-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mp-card__bonus-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--teal-b);
  border: 1px solid rgba(0,222,184,.15);
  border-radius: var(--r-m);
  padding: 12px 16px;
  align-self: flex-start;
}
.mp-card__bonus-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--t-mid);
}
.mp-card__bonus-val { font-family: var(--f-d); font-size: 1.05rem; font-weight: 700; color: var(--teal); }

/* CTA column */
.mp-card__r {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  border-left: 1px solid var(--bd-0);
  flex-shrink: 0;
}
.mp-card__legal { font-size: .67rem; color: var(--t-lo); text-align: center; line-height: 1.5; }

/* ── Methodology Steps (.mp-method / .mp-step) ────────────── */
.mp-method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd-0);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-l);
  overflow: hidden;
  margin-top: 48px;
}
.mp-step {
  background: var(--bg-2);
  padding: 32px 26px;
  transition: background var(--dur) var(--ease);
}
.mp-step:hover { background: var(--bg-3); }
.mp-step__num {
  display: block;
  font-family: var(--f-d);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.mp-step__icon { display: block; font-size: 1.3rem; margin-bottom: 10px; }
.mp-step__title { font-family: var(--f-d); font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.mp-step__desc { font-size: .82rem; color: var(--t-mid); line-height: 1.65; }

/* ── FAQ Accordion (.mp-faq) ──────────────────────────────── */
.mp-faq__list { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.mp-faq__item {
  background: var(--bg-2);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.mp-faq__item.open { border-color: rgba(0,222,184,.25); }
.mp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--f-d);
  font-size: .95rem;
  font-weight: 600;
  color: var(--t-hi);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.mp-faq__q:hover { color: var(--teal); }
.mp-faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-b);
  border: 1px solid rgba(0,222,184,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.mp-faq__item.open .mp-faq__icon {
  transform: rotate(45deg);
  background: var(--teal-a);
}
.mp-faq__a {
  display: none;
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--t-mid);
  line-height: 1.8;
}
.mp-faq__item.open .mp-faq__a { display: block; }
.mp-faq__a a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ── CTA Band (.mp-band) ──────────────────────────────────── */
.mp-band {
  background: var(--bg-1);
  border-top: 1px solid var(--bd-0);
  border-bottom: 1px solid var(--bd-0);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mp-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(0,222,184,.07) 0%, transparent 65%);
  pointer-events: none;
}
.mp-band__inner { position: relative; z-index: 1; }
.mp-band__h2 {
  font-family: var(--f-d);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.mp-band__p { font-size: .95rem; color: var(--t-mid); max-width: 440px; margin: 0 auto 28px; line-height: 1.75; }
.mp-band__legal { margin-top: 20px; font-size: .72rem; color: var(--t-lo); }

/* ── Footer (.mp-ft) ──────────────────────────────────────── */
.mp-ft {
  background: var(--bg-1);
  border-top: 1px solid var(--bd-0);
  padding-top: 72px;
}
.mp-ft__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--bd-0);
}
.mp-ft__col-head {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t-lo);
  margin-bottom: 20px;
}
.mp-ft__brand-logo { display: flex; align-items: center; margin-bottom: 16px; }
.mp-ft__brand-logo-img { display: block; width: 112px; height: 28px; object-fit: contain; }
.mp-ft__desc { font-size: .82rem; color: var(--t-mid); line-height: 1.75; max-width: 280px; }
.mp-ft__links { display: flex; flex-direction: column; gap: 10px; }
.mp-ft__links a { font-size: .85rem; color: var(--t-mid); transition: color var(--dur) var(--ease); }
.mp-ft__links a:hover { color: var(--t-hi); }
.mp-ft__resp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mp-ft__resp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-s);
  padding: 8px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.mp-ft__resp-logo:hover { background: rgba(255,255,255,.06); border-color: var(--bd-1); }
.mp-ft__resp-logo img { max-height: 32px; width: auto; object-fit: contain; opacity: .7; transition: opacity var(--dur) var(--ease); }
.mp-ft__resp-logo:hover img { opacity: 1; }
.mp-ft__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.mp-ft__copy { font-size: .78rem; color: var(--t-lo); }
.mp-ft__bottom-links { display: flex; gap: 20px; }
.mp-ft__bottom-links a { font-size: .78rem; color: var(--t-lo); transition: color var(--dur) var(--ease); }
.mp-ft__bottom-links a:hover { color: var(--t-mid); }

/* ── Cookie Bar (.mp-cookie) ──────────────────────────────── */
.mp-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--bg-2);
  border-top: 1px solid var(--bd-1);
  padding: 16px 0;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .5);
}
.mp-cookie.show { transform: translateY(0); }
.mp-cookie__in { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.mp-cookie__text { flex: 1; font-size: .83rem; color: var(--t-mid); line-height: 1.55; min-width: 200px; }
.mp-cookie__text a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.mp-cookie__btns { display: flex; gap: 10px; flex-shrink: 0; }
.mp-cookie__accept {
  background: var(--teal);
  color: var(--bg-0);
  font-size: .82rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--r-s);
  border: none;
  transition: background var(--dur) var(--ease);
}
.mp-cookie__accept:hover { background: var(--teal-h); }
.mp-cookie__decline {
  background: transparent;
  border: 1px solid var(--bd-1);
  color: var(--t-mid);
  font-size: .82rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--r-s);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mp-cookie__decline:hover { border-color: var(--bd-2); color: var(--t-hi); }

/* ── Floating 18+ Badge (.mp-float18) ────────────────────── */
.mp-float18 {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(6,10,16,.9);
  border: 1px solid rgba(0,222,184,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .63rem;
  font-weight: 800;
  color: var(--teal);
  backdrop-filter: blur(8px);
  transition: bottom var(--dur) var(--ease);
}
.mp-float18.up { bottom: 88px; }

/* ── Policy Pages (.pg-*) ─────────────────────────────────── */
.pg-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--bd-0);
  margin-bottom: 56px;
}
.pg-hero__eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.pg-hero h1 {
  font-family: var(--f-d);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.pg-hero__meta { font-size: .85rem; color: var(--t-mid); }
.pg-body { max-width: 760px; padding-bottom: 80px; }
.pg-body h2 {
  font-family: var(--f-d);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}
.pg-body h2:first-child { margin-top: 0; }
.pg-body p, .pg-body li { font-size: .9rem; color: var(--t-mid); line-height: 1.8; }
.pg-body ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.pg-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.pg-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.pg-table th, .pg-table td { padding: 10px 14px; font-size: .85rem; border: 1px solid var(--bd-0); text-align: left; }
.pg-table th { background: var(--bg-3); font-weight: 600; font-family: var(--f-d); }
.pg-table td { color: var(--t-mid); }

/* ── Guide Page (.guide-*) ────────────────────────────────── */
.guide-hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, rgba(0,222,184,.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--bd-0);
}
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding: 72px 0 80px;
  align-items: start;
}
.guide-content h2 {
  font-family: var(--f-d);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 14px;
}
.guide-content h2:first-child { margin-top: 0; }
.guide-content p, .guide-content li { font-size: .9rem; color: var(--t-mid); line-height: 1.8; }
.guide-content ul { padding-left: 20px; list-style: disc; margin: 12px 0; display: flex; flex-direction: column; gap: 6px; }
.guide-content a { color: var(--teal); }
.guide-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }
.guide-sidebar__box {
  background: var(--bg-2);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-l);
  padding: 22px;
}
.guide-sidebar__box h3 { font-family: var(--f-d); font-size: .9rem; font-weight: 700; margin-bottom: 14px; }
.guide-sidebar__box ul { display: flex; flex-direction: column; gap: 8px; }
.guide-sidebar__box a {
  font-size: .83rem;
  color: var(--t-mid);
  transition: color var(--dur) var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
}
.guide-sidebar__box a::before { content: '→'; color: var(--teal); font-size: .8rem; }
.guide-sidebar__box a:hover { color: var(--t-hi); }

/* ── Responsible Gambling Extras ──────────────────────────── */
.rg-alert {
  background: rgba(0,222,184,.06);
  border: 1px solid rgba(0,222,184,.2);
  border-radius: var(--r-m);
  padding: 20px 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rg-alert__icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.5; }
.rg-alert__text { font-size: .875rem; color: var(--t-mid); line-height: 1.75; }
.rg-alert__text strong { color: var(--teal); }
.rg-hotline {
  background: var(--bg-2);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-l);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}
.rg-hotline__label { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.rg-hotline__number { font-family: var(--f-d); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 8px; }
.rg-hotline__desc { font-size: .85rem; color: var(--t-mid); }
.rg-resources { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 32px 0; }
.rg-resource {
  background: var(--bg-2);
  border: 1px solid var(--bd-0);
  border-radius: var(--r-m);
  padding: 20px;
  transition: border-color var(--dur) var(--ease);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rg-resource:hover { border-color: var(--bd-1); }
.rg-resource__logo { width: 60px; height: 36px; object-fit: contain; flex-shrink: 0; }
.rg-resource__name { font-family: var(--f-d); font-size: .88rem; font-weight: 600; margin-bottom: 4px; }
.rg-resource__desc { font-size: .78rem; color: var(--t-mid); line-height: 1.5; }
.rg-resource__link { font-size: .73rem; color: var(--teal); margin-top: 5px; display: block; }
.quiz-section { background: var(--bg-2); border: 1px solid var(--bd-0); border-radius: var(--r-l); padding: 36px; margin: 48px 0; }
.quiz-section h2 { font-family: var(--f-d); margin-bottom: 10px; font-size: 1.15rem; font-weight: 700; }
.quiz-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bd-0); }
.quiz-item:last-child { border-bottom: none; }
.quiz-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-b); color: var(--teal);
  font-size: .73rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.quiz-text { font-size: .875rem; color: var(--t-mid); line-height: 1.55; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 24px 0; }
.tip-card { background: rgba(255,255,255,.02); border: 1px solid var(--bd-0); border-radius: var(--r-m); padding: 20px; }
.tip-card__icon { font-size: 1.2rem; margin-bottom: 10px; }
.tip-card h4 { font-family: var(--f-d); font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.tip-card p { font-size: .8rem; color: var(--t-mid); line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mp-hero__grid { grid-template-columns: 1fr; }
  .mp-hero__visual { display: none; }
  .mp-ft__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .mp-ft__grid > div:last-child { grid-column: 1 / -1; }
  .mp-method__grid { grid-template-columns: repeat(2, 1fr); }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
}

@media (max-width: 900px) {
  /* Collapse CTA column below info */
  .mp-card { grid-template-columns: 196px 1fr; }
  .mp-card__r {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--bd-0);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 12px;
  }
  .mp-card__legal { text-align: right; }
}

@media (max-width: 768px) {
  /* Full single-column stack */
  .mp-card { grid-template-columns: 1fr; }
  .mp-card__l {
    flex-direction: row;
    padding: 16px 20px 16px 46px;
    border-right: none;
    border-bottom: 1px solid var(--bd-0);
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }
  .mp-card__l .mp-card__rank-num { left: 12px; top: 50%; transform: translateY(-50%); }
  .mp-card__m { padding: 20px; gap: 12px; }
  .mp-card__r {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 16px 20px 20px;
  }
  .mp-card__legal { text-align: center; }
  .mp-ft__grid { grid-template-columns: 1fr; gap: 32px; }
  .mp-method__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .mp-hd__nav { display: none; }
  .mp-hd__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--bd-0);
    padding: 20px 24px;
    gap: 18px;
    z-index: 99;
  }
  .mp-hd__toggle { display: flex; }
  .mp-hero { padding: 64px 0 52px; }
  .mp-sec { padding: 60px 0; }
  .mp-cookie__in { flex-direction: column; align-items: stretch; }
  .mp-cookie__btns { width: 100%; }
  .mp-cookie__accept, .mp-cookie__decline { flex: 1; text-align: center; }
  .mp-ft__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mp-ft__resp-grid { grid-template-columns: repeat(3, 1fr); }
  .rg-resources { grid-template-columns: 1fr; }
}
