/* SpinEmpire Ireland 9 — Emerald Editorial */
/* prefix: sie9- */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --sie9-bg:           #07100a;
  --sie9-bg-alt:       #0b1810;
  --sie9-surface:      #101e14;
  --sie9-surface-2:    #162618;
  --sie9-border:       #1f3525;
  --sie9-border-lt:    #2b4a35;
  --sie9-emerald:      #10b981;
  --sie9-emerald-lt:   #34d399;
  --sie9-emerald-glow: rgba(16,185,129,.18);
  --sie9-gold:         #f0c040;
  --sie9-gold-dk:      #c89a10;
  --sie9-gold-glow:    rgba(240,192,64,.14);
  --sie9-text:         #deeae3;
  --sie9-text-muted:   #5c7d68;
  --sie9-text-dim:     #2e4836;
  --sie9-radius:       10px;
  --sie9-radius-lg:    18px;
  --sie9-shadow:       0 8px 36px rgba(0,0,0,.65);
  --sie9-wrap:         1160px;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--sie9-bg);
  color: var(--sie9-text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Wrap ── */
.sie9-wrap { max-width: var(--sie9-wrap); margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
.sie9-header {
  background: rgba(7,16,10,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sie9-border);
  position: sticky; top: 0; z-index: 1000;
}
.sie9-header__bar {
  max-width: var(--sie9-wrap); margin: 0 auto; padding: 0 20px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.sie9-logo {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
  border-left: 3px solid var(--sie9-emerald);
  padding-left: 12px;
}

.sie9-nav { flex: 1; }
.sie9-nav ul { display: flex; list-style: none; gap: 2px; justify-content: center; }
.sie9-nav a {
  display: block; padding: 8px 16px;
  color: var(--sie9-text-muted); text-decoration: none;
  font-size: 14px; font-weight: 700; border-radius: 8px;
  transition: color .2s, background .2s;
  letter-spacing: .3px;
}
.sie9-nav a:hover { color: var(--sie9-text); background: rgba(255,255,255,.04); }
.sie9-nav a.active { color: var(--sie9-emerald-lt); }

.sie9-head__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Burger ── */
.sie9-burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 1px solid var(--sie9-border);
  padding: 8px 9px; cursor: pointer; border-radius: 8px; flex-shrink: 0;
}
.sie9-burger span { display: block; width: 20px; height: 2px; background: var(--sie9-text); transition: all .3s; }
.sie9-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sie9-burger.is-open span:nth-child(2) { opacity: 0; }
.sie9-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Overlay ── */
.sie9-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 900; opacity: 0; transition: opacity .3s;
}

/* ── Mobile panel ── */
.sie9-panel {
  position: fixed; top: 0; left: 0; bottom: 0; width: 280px;
  background: var(--sie9-surface); border-right: 1px solid var(--sie9-border);
  z-index: 950; transform: translateX(-100%); transition: transform .32s;
  display: flex; flex-direction: column; overflow-y: auto;
}
.sie9-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--sie9-border);
}
.sie9-panel__close {
  background: transparent; border: 1px solid var(--sie9-border);
  color: var(--sie9-text); font-size: 18px; padding: 6px 10px;
  border-radius: 8px; cursor: pointer;
}
.sie9-panel__nav { list-style: none; padding: 12px 0; flex: 1; }
.sie9-panel__nav li a {
  display: block; padding: 12px 20px;
  color: var(--sie9-text-muted); text-decoration: none; font-size: 14px; font-weight: 600;
  transition: color .2s, background .2s;
}
.sie9-panel__nav li a:hover { color: var(--sie9-text); background: rgba(255,255,255,.04); }
.sie9-panel__actions { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--sie9-border); }
.sie9-body-lock { overflow: hidden; }

/* ── Buttons ── */
.sie9-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 22px; font-size: 13px; font-weight: 800; font-family: inherit;
  border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
  transition: all .22s; line-height: 1; letter-spacing: .3px; white-space: nowrap;
}
.sie9-btn--gold {
  background: linear-gradient(135deg, var(--sie9-gold), var(--sie9-gold-dk));
  color: #000; box-shadow: 0 2px 14px var(--sie9-gold-glow);
}
.sie9-btn--gold:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 20px var(--sie9-gold-glow); }
.sie9-btn--emerald {
  background: var(--sie9-emerald); color: #000;
  box-shadow: 0 2px 14px var(--sie9-emerald-glow);
}
.sie9-btn--emerald:hover { filter: brightness(1.08); transform: translateY(-1px); }
.sie9-btn--ghost {
  background: transparent; color: var(--sie9-text-muted);
  border: 1px solid var(--sie9-border);
}
.sie9-btn--ghost:hover { border-color: var(--sie9-emerald); color: var(--sie9-emerald); }
.sie9-btn--outline {
  background: transparent; color: var(--sie9-emerald);
  border: 1.5px solid var(--sie9-emerald);
}
.sie9-btn--outline:hover { background: var(--sie9-emerald-glow); }
.sie9-btn--lg { padding: 13px 30px; font-size: 15px; border-radius: 10px; }
.sie9-btn--full { width: 100%; }

/* ── Hero ── */
.sie9-hero {
  position: relative; overflow: hidden; background: #040a06;
  min-height: 420px;
}
.sie9-hero picture { display: block; }
.sie9-hero picture img {
  width: 100%; display: block;
  max-height: 520px; object-fit: cover; object-position: center;
}
.sie9-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(4,10,5,.88) 0%, rgba(4,10,5,.65) 55%, rgba(4,10,5,.2) 100%);
  display: flex; flex-direction: column; justify-content: center;
  align-items: stretch; padding: 48px 0;
}
.sie9-hero__overlay > * { pointer-events: auto; }
.sie9-hero__overlay .sie9-wrap {
  width: 100%; display: flex; flex-direction: column; align-items: flex-start;
}
.sie9-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3);
  color: var(--sie9-emerald-lt); font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; letter-spacing: .5px;
}
.sie9-hero__title {
  font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; line-height: 1.2;
  color: #fff; max-width: 620px; margin-bottom: 14px;
}
.sie9-hero__title em { color: var(--sie9-emerald-lt); font-style: normal; }
.sie9-hero__sub {
  font-size: clamp(13px, 1.5vw, 16px); color: rgba(222,234,227,.8);
  max-width: 540px; margin-bottom: 24px; line-height: 1.6;
}
.sie9-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sie9-hero__note {
  margin-top: 14px; font-size: 11px; color: rgba(222,234,227,.5);
}

/* ── Stats strip ── */
.sie9-stats {
  background: var(--sie9-surface);
  border-bottom: 1px solid var(--sie9-border);
}
.sie9-stats__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sie9-stats__item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--sie9-border);
}
.sie9-stats__item:last-child { border-right: none; }
.sie9-stats__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sie9-emerald-glow); border-radius: 10px;
}
.sie9-stats__num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.1; }
.sie9-stats__label { font-size: 12px; color: var(--sie9-text-muted); margin-top: 2px; }

/* ── Section layout ── */
.sie9-section { padding: 60px 0; }
.sie9-section--alt { background: var(--sie9-bg-alt); }
.sie9-section--surface { background: var(--sie9-surface); }

.sie9-section__head { margin-bottom: 36px; }
.sie9-section__head--center { text-align: center; }
.sie9-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--sie9-emerald); margin-bottom: 10px;
}
.sie9-h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 12px;
}
.sie9-h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sie9-lead { font-size: 15px; color: var(--sie9-text-muted); line-height: 1.7; max-width: 680px; }
.sie9-lead--center { margin: 0 auto; text-align: center; }

.sie9-prose { font-size: 15px; color: var(--sie9-text-muted); line-height: 1.75; }
.sie9-prose p { margin-bottom: 14px; }
.sie9-prose p:last-child { margin-bottom: 0; }
.sie9-prose strong { color: var(--sie9-text); }

/* ── 2-column editorial layout ── */
.sie9-editorial {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start;
}

/* ── Verdict / review card ── */
.sie9-verdict {
  background: var(--sie9-surface);
  border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius-lg);
  padding: 28px 32px;
}
.sie9-verdict__score {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid var(--sie9-border);
}
.sie9-verdict__num {
  font-size: 52px; font-weight: 800; color: var(--sie9-emerald); line-height: 1;
  letter-spacing: -2px;
}
.sie9-verdict__max { font-size: 20px; color: var(--sie9-text-muted); margin-top: auto; }
.sie9-verdict__label { font-size: 13px; color: var(--sie9-text-muted); }
.sie9-verdict__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sie9-verdict__rows { display: flex; flex-direction: column; gap: 10px; }
.sie9-verdict__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.sie9-verdict__row span:first-child { color: var(--sie9-text-muted); }
.sie9-verdict__bar { display: flex; gap: 3px; }
.sie9-verdict__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sie9-border-lt);
}
.sie9-verdict__dot.filled { background: var(--sie9-emerald); }

/* ── Specs table ── */
.sie9-specs {
  background: var(--sie9-surface-2);
  border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius);
  overflow: hidden;
}
.sie9-specs__head {
  padding: 14px 18px; background: rgba(16,185,129,.08);
  border-bottom: 1px solid var(--sie9-border);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--sie9-emerald);
}
.sie9-spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid var(--sie9-border);
  font-size: 13px;
}
.sie9-spec-row:last-child { border-bottom: none; }
.sie9-spec-row__key { color: var(--sie9-text-muted); }
.sie9-spec-row__val { color: var(--sie9-text); font-weight: 600; text-align: right; max-width: 55%; }
.sie9-spec-badge {
  background: var(--sie9-emerald-glow); color: var(--sie9-emerald-lt);
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 5px;
}

/* ── RTP cards (game library) ── */
.sie9-rtp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.sie9-rtp-card {
  background: var(--sie9-surface);
  border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius);
  padding: 18px 20px;
  transition: border-color .2s, transform .2s;
}
.sie9-rtp-card:hover { border-color: var(--sie9-emerald); transform: translateY(-3px); }
.sie9-rtp-card__game { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.sie9-rtp-card__provider { font-size: 12px; color: var(--sie9-text-muted); margin-bottom: 14px; }
.sie9-rtp-card__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--sie9-text-muted); margin-bottom: 8px;
}
.sie9-rtp-card__rtp {
  font-size: 20px; font-weight: 800; color: var(--sie9-emerald-lt);
}
.sie9-rtp-card__bar {
  height: 4px; background: var(--sie9-border);
  border-radius: 2px; overflow: hidden; margin-top: 10px;
}
.sie9-rtp-card__fill { height: 100%; background: var(--sie9-emerald); border-radius: 2px; }

/* ── Comparison table ── */
.sie9-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sie9-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.sie9-table th {
  background: rgba(16,185,129,.08); color: var(--sie9-emerald);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--sie9-border);
  white-space: nowrap;
}
.sie9-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--sie9-border);
  color: var(--sie9-text-muted); vertical-align: middle;
}
.sie9-table tr:last-child td { border-bottom: none; }
.sie9-table tr:hover td { background: rgba(255,255,255,.025); }
.sie9-table td strong { color: var(--sie9-text); }
.sie9-table-frame {
  border: 1px solid var(--sie9-border); border-radius: var(--sie9-radius); overflow: hidden;
}

/* ── Bonus cards ── */
.sie9-bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.sie9-bonus-card {
  background: var(--sie9-surface);
  border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.sie9-bonus-card:hover { border-color: var(--sie9-emerald); transform: translateY(-4px); }
.sie9-bonus-card--featured { border-color: var(--sie9-gold); }
.sie9-bonus-card--featured:hover { border-color: var(--sie9-gold); }
.sie9-bonus-card__img { aspect-ratio: 16/7; overflow: hidden; background: var(--sie9-surface-2); }
.sie9-bonus-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sie9-bonus-card__body { padding: 20px; }
.sie9-bonus-card__stage {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--sie9-emerald); margin-bottom: 8px;
}
.sie9-bonus-card--featured .sie9-bonus-card__stage { color: var(--sie9-gold); }
.sie9-bonus-card__title { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.sie9-bonus-card__desc { font-size: 13px; color: var(--sie9-text-muted); margin-bottom: 16px; line-height: 1.6; }
.sie9-bonus-stats { list-style: none; margin-bottom: 16px; border: 1px solid var(--sie9-border); border-radius: var(--sie9-radius); overflow: hidden; }
.sie9-bonus-stats li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; font-size: 12px; border-bottom: 1px solid var(--sie9-border);
}
.sie9-bonus-stats li:last-child { border-bottom: none; }
.sie9-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.025); }
.sie9-bonus-stats li span:first-child { color: var(--sie9-text-muted); }
.sie9-bonus-stats li span:last-child { font-weight: 700; color: var(--sie9-text); }
.sie9-bonus-card__terms { font-size: 11px; color: var(--sie9-text-muted); line-height: 1.5; margin-bottom: 14px; }

/* ── Promo grid (4 ongoing promos) ── */
.sie9-promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.sie9-promo {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 24px 20px;
  transition: border-color .2s, transform .2s;
}
.sie9-promo:hover { border-color: var(--sie9-emerald); transform: translateY(-3px); }
.sie9-promo__icon { margin-bottom: 14px; }
.sie9-promo__name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sie9-promo__val { font-size: 20px; font-weight: 800; color: var(--sie9-gold); margin-bottom: 10px; }
.sie9-promo__desc { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.6; }

/* ── Security pillars ── */
.sie9-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sie9-pillar {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 28px 24px;
  border-top: 3px solid var(--sie9-emerald);
}
.sie9-pillar__icon { margin-bottom: 16px; }
.sie9-pillar__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sie9-pillar__text { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.7; }

/* ── Support channels ── */
.sie9-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sie9-support-card {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.sie9-support-card__head { display: flex; align-items: center; gap: 14px; }
.sie9-support-card__title { font-size: 16px; font-weight: 700; color: #fff; }
.sie9-support-card__badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  background: var(--sie9-emerald-glow); color: var(--sie9-emerald-lt);
  padding: 4px 10px; border-radius: 20px;
}
.sie9-support-card__text { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.7; }
.sie9-support-card__meta { font-size: 13px; color: var(--sie9-text); font-weight: 600; }

/* ── Verdict section ── */
.sie9-verdict-full {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius-lg); padding: 36px 40px;
}
.sie9-verdict-full__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.sie9-verdict-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.sie9-verdict-item:last-child { margin-bottom: 0; }
.sie9-verdict-icon { flex-shrink: 0; margin-top: 2px; }
.sie9-verdict-item p { font-size: 14px; color: var(--sie9-text-muted); line-height: 1.6; }
.sie9-verdict-item p strong { color: var(--sie9-text); }
.sie9-verdict-col__title { font-size: 14px; font-weight: 700; color: var(--sie9-emerald); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .7px; }
.sie9-verdict-col__title--amber { color: var(--sie9-gold); }

/* ── FAQ ── */
.sie9-faq { max-width: 800px; margin: 0 auto; }
.sie9-faq__item {
  border-bottom: 1px solid var(--sie9-border); background: transparent;
}
.sie9-faq__item:first-child { border-top: 1px solid var(--sie9-border); }
.sie9-faq__q {
  width: 100%; text-align: left; background: transparent; border: none;
  color: var(--sie9-text); font-size: 15px; font-weight: 600; font-family: inherit;
  padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: color .2s;
}
.sie9-faq__q:hover { color: var(--sie9-emerald-lt); }
.sie9-faq__icon {
  flex-shrink: 0; width: 22px; height: 22px; position: relative;
  border: 1.5px solid var(--sie9-border); border-radius: 50%;
  transition: border-color .2s, background .2s;
}
.sie9-faq__icon::before, .sie9-faq__icon::after {
  content: ''; position: absolute; background: var(--sie9-text-muted); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.sie9-faq__icon::before { width: 10px; height: 2px; top: 9px; left: 5px; }
.sie9-faq__icon::after  { width: 2px; height: 10px; top: 5px; left: 9px; }
.sie9-faq__item.is-open .sie9-faq__icon::after { transform: rotate(90deg); opacity: 0; }
.sie9-faq__item.is-open .sie9-faq__icon { border-color: var(--sie9-emerald); background: var(--sie9-emerald-glow); }
.sie9-faq__a { max-height: 0; overflow: hidden; transition: max-height .36s ease; }
.sie9-faq__a-inner { padding: 0 0 18px; font-size: 14px; color: var(--sie9-text-muted); line-height: 1.75; }
.sie9-faq__a-inner p { margin-bottom: 10px; }
.sie9-faq__a-inner p:last-child { margin-bottom: 0; }

/* ── Aggregator logos ── */
.sie9-agg {
  background: var(--sie9-surface);
  border-top: 1px solid var(--sie9-border);
  padding: 28px 0;
}
.sie9-agg__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px;
}
.sie9-agg-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--sie9-border); border-radius: var(--sie9-radius);
  transition: border-color .2s, transform .2s;
  opacity: .65; filter: grayscale(40%);
}
.sie9-agg-logo:hover { border-color: var(--sie9-emerald); opacity: 1; filter: none; transform: translateY(-2px); }
.sie9-agg-logo img { height: 24px; width: auto; display: block; }

/* ── Footer ── */
.sie9-footer {
  background: var(--sie9-surface);
  border-top: 1px solid var(--sie9-border);
  padding: 48px 0 24px;
}
.sie9-footer__grid {
  display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
.sie9-footer__logo { display: block; margin-bottom: 14px; }
.sie9-footer__tagline { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.6; margin-bottom: 16px; }
.sie9-footer__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--sie9-emerald); margin-bottom: 16px; }
.sie9-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sie9-footer__links a { font-size: 13px; color: var(--sie9-text-muted); text-decoration: none; transition: color .2s; }
.sie9-footer__links a:hover { color: var(--sie9-emerald-lt); }
.sie9-footer__bottom {
  border-top: 1px solid var(--sie9-border); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
}
.sie9-footer__copy { font-size: 12px; color: var(--sie9-text-dim); }
.sie9-footer__legal { font-size: 11px; color: var(--sie9-text-dim); line-height: 1.6; max-width: 700px; }

/* ── Divider ── */
.sie9-divider {
  height: 1px; background: var(--sie9-border); margin: 32px 0;
}

/* ── Highlight box ── */
.sie9-highlight {
  background: var(--sie9-emerald-glow); border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--sie9-radius); padding: 20px 24px;
  font-size: 14px; color: var(--sie9-text); line-height: 1.7;
}
.sie9-highlight strong { color: var(--sie9-emerald-lt); }

/* ── Warning box ── */
.sie9-warn {
  background: rgba(240,192,64,.08); border: 1px solid rgba(240,192,64,.2);
  border-radius: var(--sie9-radius); padding: 16px 20px;
  font-size: 13px; color: var(--sie9-text-muted); line-height: 1.6;
}

/* ── Steps (account lifecycle) ── */
.sie9-steps { display: flex; flex-direction: column; gap: 16px; }
.sie9-step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 20px;
}
.sie9-step__num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--sie9-emerald-glow); color: var(--sie9-emerald-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.sie9-step__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sie9-step__text { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.6; }

/* ── Check list ── */
.sie9-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sie9-checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--sie9-text-muted); line-height: 1.6;
}
.sie9-checklist li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  background: var(--sie9-emerald-glow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l4 4 6-7' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}
.sie9-checklist li strong { color: var(--sie9-text); }

/* ── Page hero (subpages) ── */
.sie9-page-hero {
  background: var(--sie9-surface);
  border-bottom: 1px solid var(--sie9-border);
  padding: 48px 0 40px;
}
.sie9-page-hero__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--sie9-emerald); margin-bottom: 10px;
}
.sie9-page-hero__title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.sie9-page-hero__sub { font-size: 15px; color: var(--sie9-text-muted); max-width: 620px; line-height: 1.65; }

/* ── Breadcrumb ── */
.sie9-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--sie9-text-muted); margin-bottom: 16px;
}
.sie9-breadcrumb a { color: var(--sie9-text-muted); text-decoration: none; }
.sie9-breadcrumb a:hover { color: var(--sie9-emerald); }
.sie9-breadcrumb span { color: var(--sie9-text-dim); }

/* ── Info tile (terms/privacy) ── */
.sie9-info-section { margin-bottom: 40px; }
.sie9-info-section h2 {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 14px;
  padding-left: 14px; border-left: 3px solid var(--sie9-emerald);
}
.sie9-info-section h3 { font-size: 16px; font-weight: 700; color: var(--sie9-text); margin-bottom: 10px; margin-top: 20px; }
.sie9-info-section p { font-size: 14px; color: var(--sie9-text-muted); line-height: 1.75; margin-bottom: 12px; }
.sie9-info-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.sie9-info-section ul li {
  font-size: 14px; color: var(--sie9-text-muted); padding-left: 18px; position: relative; line-height: 1.6;
}
.sie9-info-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--sie9-emerald); }

/* ── Responsible gaming ── */
.sie9-tools { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 32px; }
.sie9-tool {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 20px;
}
.sie9-tool__icon { margin-bottom: 12px; }
.sie9-tool__title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sie9-tool__text { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.6; }

.sie9-helplines { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.sie9-helpline {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 20px 22px;
  border-left: 4px solid var(--sie9-emerald);
}
.sie9-helpline__name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sie9-helpline__text { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.6; }

/* ── Mobile app section ── */
.sie9-pwa-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sie9-pwa-step {
  background: var(--sie9-surface); border: 1px solid var(--sie9-border);
  border-radius: var(--sie9-radius); padding: 24px 20px;
}
.sie9-pwa-step__platform { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--sie9-emerald); margin-bottom: 8px; }
.sie9-pwa-step__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sie9-pwa-step__text { font-size: 13px; color: var(--sie9-text-muted); line-height: 1.65; }

/* ── Breadcrumb inside hero ── */
.sie9-breadcrumb--hero { margin-bottom: 12px; }
.sie9-breadcrumb--hero a,
.sie9-breadcrumb--hero span { color: rgba(255,255,255,.75); font-size: 13px; }
.sie9-breadcrumb--hero a:hover { color: #fff; }

/* ── Games grid ── */
.sie9-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}
.sie9-game-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sie9-surface);
  border: 1px solid var(--sie9-border);
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}
.sie9-game-card:hover { transform: translateY(-3px); border-color: var(--sie9-emerald); }
.sie9-game-card__thumb { aspect-ratio: 3/4; overflow: hidden; }
.sie9-game-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.sie9-game-card:hover .sie9-game-card__thumb img { transform: scale(1.05); }
.sie9-game-card__info { padding: 8px 10px 10px; }
.sie9-game-card__name { font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sie9-game-card__prov { font-size: 11px; color: var(--sie9-text-muted); margin-top: 2px; }

/* ── Providers slider ── */
.sie9-prov-slider {
  overflow: hidden;
  margin: 32px 0 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.sie9-prov-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: sie9Scroll 30s linear infinite;
}
.sie9-prov-track:hover { animation-play-state: paused; }
@keyframes sie9Scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sie9-prov-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.3);
  opacity: .65;
  flex-shrink: 0;
  transition: filter .25s, opacity .25s;
}
.sie9-prov-logo:hover { filter: grayscale(0); opacity: 1; }
.sie9-prov-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  color: var(--sie9-text-muted); margin-bottom: 14px; text-align: center;
}

/* ── CTA band ── */
.sie9-cta-band {
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(240,192,64,.06));
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--sie9-radius-lg); padding: 40px;
  text-align: center; margin: 48px 0;
}
.sie9-cta-band__title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.sie9-cta-band__sub { font-size: 15px; color: var(--sie9-text-muted); margin-bottom: 24px; }
.sie9-cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sie9-cta-band__note { margin-top: 14px; font-size: 11px; color: var(--sie9-text-muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sie9-nav { display: none; }
  .sie9-burger { display: flex; }
  .sie9-head__right .sie9-btn--ghost { display: none; }
  .sie9-stats__row { grid-template-columns: 1fr 1fr; }
  .sie9-stats__item:nth-child(2) { border-right: none; }
  .sie9-stats__item { border-bottom: 1px solid var(--sie9-border); }
  .sie9-stats__item:nth-child(3),
  .sie9-stats__item:nth-child(4) { border-bottom: none; }
  .sie9-editorial { grid-template-columns: 1fr; }
  .sie9-pillars { grid-template-columns: 1fr; }
  .sie9-support-grid { grid-template-columns: 1fr; }
  .sie9-footer__grid { grid-template-columns: 1fr 1fr; }
  .sie9-verdict-full { padding: 24px; }
  .sie9-verdict-full__cols { grid-template-columns: 1fr; }
  .sie9-pwa-steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sie9-hero__title { font-size: 22px; }
  .sie9-section { padding: 40px 0; }
  .sie9-stats__row { grid-template-columns: 1fr; }
  .sie9-stats__item { border-right: none; border-bottom: 1px solid var(--sie9-border); }
  .sie9-stats__item:last-child { border-bottom: none; }
  .sie9-footer__grid { grid-template-columns: 1fr; }
  .sie9-bonus-grid { grid-template-columns: 1fr; }
  .sie9-rtp-grid { grid-template-columns: 1fr; }
  .sie9-cta-band { padding: 24px 20px; }
  .sie9-verdict-full { padding: 20px; }
  .sie9-games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 601px) and (max-width: 900px) {
  .sie9-games-grid { grid-template-columns: repeat(3, 1fr); }
}
