/* =================================================================
   oxibetlogin.com — Oxibet brand information hub
   LIGHT THEME. Navy ink #14263a, emerald CTA #0f9d58, gold accent.
   Deliberately distinct from oxibetcasinologin.com (dark navy/gold).
   ================================================================= */

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

:root {
  --navy:        #14263a;
  --navy-700:    #21384f;
  --navy-500:    #3d5871;
  --navy-300:    #6b829a;
  --emerald:     #0f9d58;
  --emerald-dk:  #0b7a44;
  --emerald-lt:  #2fc27a;
  --emerald-50:  #e8f7ef;
  --gold:        #e2a32b;
  --gold-50:     #fdf4e3;
  --red:         #c8433c;
  --red-50:      #fdeceb;
  --blue-50:     #eaf2fb;

  --bg:          #f6f8fa;
  --bg-alt:      #eef2f6;
  --surface:     #ffffff;
  --ink:         #14263a;
  --ink-soft:    #4a6076;
  --ink-dim:     #7186993;
  --ink-muted:   #718699;
  --line:        #dde5ec;
  --line-soft:   #eaf0f5;

  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   22px;
  --radius-pill: 40px;
  --shadow-sm:   0 1px 2px rgba(20,38,58,.06), 0 2px 6px rgba(20,38,58,.05);
  --shadow:      0 2px 4px rgba(20,38,58,.05), 0 8px 20px rgba(20,38,58,.07);
  --shadow-lg:   0 12px 34px rgba(20,38,58,.13);
  --maxw:        1240px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-head:   'Sora', 'Inter', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16.5px; line-height: 1.62;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--emerald-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--emerald); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700; z-index: 300; }
.skip-link:focus { left: 0; }

h1,h2,h3,h4 { font-family: var(--font-head); color: var(--navy); letter-spacing: -.015em; }
h1 { font-size: 43px; font-weight: 800; line-height: 1.14; }
h2 { font-size: 31px; font-weight: 700; line-height: 1.2; margin-top: 44px; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; margin-top: 28px; }
h4 { font-size: 18px; font-weight: 700; line-height: 1.35; }

/* ---------------------------------------------------------------
   HEADER
   --------------------------------------------------------------- */
.site-header { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 14px; padding-block: 11px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: auto; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.brand:hover img { transform: scale(1.05); }
.brand .tag { color: var(--ink-muted); font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; border-left: 2px solid var(--emerald); padding-left: 9px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; font-weight: 600; font-size: 14.5px; }
.nav-links > li > a { color: var(--navy-700); padding: 8px 11px; border-radius: var(--radius-sm); display: inline-block; transition: background .2s, color .2s; }
.nav-links > li > a:hover { color: var(--emerald-dk); background: var(--emerald-50); text-decoration: none; }
.nav-links > li > a.active { color: var(--emerald-dk); background: var(--emerald-50); box-shadow: inset 0 -2px 0 var(--emerald); }
.lang-switch { position: relative; margin-left: 6px; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); color: var(--navy-700); font: inherit; font-size: 13.5px; font-weight: 700; padding: 8px 11px; border-radius: var(--radius-sm); cursor: pointer; transition: border-color .2s, color .2s; }
.lang-btn:hover, .lang-btn[aria-expanded="true"] { border-color: var(--emerald); color: var(--emerald-dk); }
.lang-btn svg { width: 10px; height: 10px; transition: transform .25s; }
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-menu { position: absolute; right: 0; top: calc(100% + 7px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); list-style: none; min-width: 176px; padding: 6px; display: none; z-index: 120; }
.lang-menu.open { display: block; animation: pop .2s cubic-bezier(.22,1,.36,1); }
@keyframes pop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.lang-menu a { display: block; padding: 9px 12px; border-radius: 7px; color: var(--navy-700); font-size: 14px; font-weight: 600; }
.lang-menu a:hover { background: var(--emerald-50); color: var(--emerald-dk); text-decoration: none; }
.lang-menu a[aria-current="true"] { background: var(--bg-alt); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; border-radius: var(--radius-sm); position: relative; margin-left: auto; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; width: 22px; height: 2.5px; background: var(--navy); left: 10px; border-radius: 2px; transition: .25s ease; }
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: #fff; padding: 12px; display: none; border-bottom: 1px solid var(--line); margin-left: 0; box-shadow: var(--shadow-lg); max-height: 76vh; overflow-y: auto; }
  .nav-links.open { display: flex; animation: pop .26s cubic-bezier(.22,1,.36,1); }
  .nav-links > li > a { padding: 12px 14px; }
  .lang-switch { margin-left: 0; }
  .lang-btn { width: 100%; justify-content: space-between; }
  .lang-menu { position: static; box-shadow: none; margin-top: 6px; }
  .brand .tag { display: none; }
}

/* ---------------------------------------------------------------
   BUTTONS — CTA animation system (distinct from the sibling site)
   --------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 1rem; letter-spacing: -.005em;
  padding: 14px 30px; border-radius: var(--radius-sm); border: 0; cursor: pointer;
  text-decoration: none !important; line-height: 1.3; text-align: center;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, filter .3s ease, background .3s ease, color .3s ease;
}
.btn:focus-visible { outline: 3px solid var(--emerald-lt); outline-offset: 3px; }
.btn .btn-arrow { display: inline-block; transition: transform .32s cubic-bezier(.22,1,.36,1); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-lt) 0%, var(--emerald) 46%, var(--emerald-dk) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,157,88,.30), 0 1px 2px rgba(20,38,58,.10);
}
/* Sheen sweep on a slow loop, accelerating on hover */
.btn-primary::before {
  content: ''; position: absolute; inset: -1px; z-index: -1;
  background: linear-gradient(112deg, transparent 26%, rgba(255,255,255,.42) 47%, rgba(255,255,255,.72) 50%, rgba(255,255,255,.42) 53%, transparent 74%);
  transform: translateX(-115%);
  animation: sheen 5s cubic-bezier(.45,0,.15,1) infinite;
}
@keyframes sheen { 0% { transform: translateX(-115%);} 52% { transform: translateX(115%);} 100% { transform: translateX(115%);} }
/* Breathing halo ring */
.btn-primary::after {
  content: ''; position: absolute; inset: 0; z-index: -2; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(15,157,88,.42);
  animation: halo 3s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes halo { 0% { box-shadow: 0 0 0 0 rgba(15,157,88,.42);} 70%,100% { box-shadow: 0 0 0 13px rgba(15,157,88,0);} }
.btn-primary:hover { color: #fff; transform: translateY(-3px); filter: brightness(1.06) saturate(1.06); box-shadow: 0 12px 28px rgba(15,157,88,.40); }
.btn-primary:hover::before { animation-duration: 1.15s; }
.btn-primary:hover::after { animation-play-state: paused; }
.btn-primary:active { transform: translateY(-1px) scale(.988); box-shadow: 0 4px 12px rgba(15,157,88,.34); }

.btn-gold { background: linear-gradient(135deg, #f0bd53 0%, var(--gold) 48%, #c4881c 100%); color: var(--navy); box-shadow: 0 4px 14px rgba(226,163,43,.32); }
.btn-gold:hover { color: var(--navy); transform: translateY(-3px); filter: brightness(1.05); box-shadow: 0 12px 26px rgba(226,163,43,.42); }

.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-outline::before { content: ''; position: absolute; inset: 0; z-index: -1; background: var(--navy); transform: translateY(101%); transition: transform .38s cubic-bezier(.22,1,.36,1); }
.btn-outline:hover { color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.btn-outline:hover::before { transform: translateY(0); }

.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 17px 38px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.5); transform: scale(0); animation: ripple .64s cubic-bezier(.22,1,.36,1); pointer-events: none; z-index: -1; }
@keyframes ripple { to { transform: scale(2.7); opacity: 0; } }

.nav-cta {
  display: inline-flex !important; align-items: center; justify-content: center; gap: 7px;
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--emerald-lt) 0%, var(--emerald) 48%, var(--emerald-dk) 100%) !important;
  color: #fff !important; font-weight: 700 !important; padding: 9px 19px !important;
  border-radius: var(--radius-sm) !important; box-shadow: 0 3px 11px rgba(15,157,88,.30);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, filter .28s;
  margin-left: 6px;
}
.nav-cta::before { content: ''; position: absolute; inset: -1px; z-index: -1; background: linear-gradient(112deg, transparent 26%, rgba(255,255,255,.5) 50%, transparent 74%); transform: translateX(-115%); animation: sheen 5s cubic-bezier(.45,0,.15,1) infinite; }
.nav-cta:hover { text-decoration: none !important; transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 9px 20px rgba(15,157,88,.4); background: linear-gradient(135deg, var(--emerald-lt) 0%, var(--emerald) 48%, var(--emerald-dk) 100%) !important; }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: none; padding: 9px 14px calc(9px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); transform: translateY(112%); transition: transform .42s cubic-bezier(.22,1,.36,1); }
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; }
@media (max-width: 760px) { .sticky-cta { display: block; } body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); } }

/* ---------------------------------------------------------------
   HERO — split layout with an offer panel
   --------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(168deg, #ffffff 0%, var(--bg) 58%, var(--bg-alt) 100%); border-bottom: 1px solid var(--line); padding: 30px 0 44px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -220px; right: -180px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(15,157,88,.09) 0%, rgba(15,157,88,0) 68%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,.92fr); gap: 48px; align-items: start; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.breadcrumbs { font-size: .84rem; color: var(--ink-muted); padding: .4em 0 1em; }
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--emerald-dk); }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--emerald-dk); background: var(--emerald-50); border-radius: var(--radius-pill); padding: 6px 13px; }
.hero h1 { margin-top: 17px; max-width: 19ch; }
.hero .lead { margin-top: 17px; max-width: 60ch; color: var(--ink-soft); font-size: 1.09rem; }
.hero-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 17px; font-size: .84rem; color: var(--ink-muted); max-width: 60ch; }

/* Offer panel in the hero */
.offer-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.offer-card .oc-top { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); color: #fff; padding: 20px 24px; }
.offer-card .oc-top .k { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.66); }
.offer-card .oc-top .v { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; margin-top: 4px; line-height: 1.1; color: #fff; }
.offer-card .oc-top .s { color: var(--gold); font-weight: 700; font-size: 1rem; margin-top: 3px; }
.offer-card ul { list-style: none; padding: 16px 24px 4px; }
.offer-card li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: .93rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.offer-card li:last-child { border-bottom: 0; }
.offer-card li b { color: var(--navy); font-weight: 700; }
.offer-card li .tick { flex: none; width: 17px; height: 17px; margin-top: 3px; border-radius: 50%; background: var(--emerald-50); color: var(--emerald-dk); display: grid; place-items: center; font-size: 10px; font-weight: 900; }
.offer-card .oc-foot { padding: 14px 24px 22px; }
.offer-card .oc-foot .btn { width: 100%; }
.offer-card .oc-terms { font-size: .72rem; color: var(--ink-muted); margin-top: 11px; line-height: 1.5; }

/* ---------------------------------------------------------------
   LAYOUT — content + sticky table of contents
   --------------------------------------------------------------- */
main { padding-block: 34px 10px; }
.layout { display: grid; grid-template-columns: minmax(0,1fr) 244px; gap: 52px; align-items: start; }
@media (max-width: 1080px) { .layout { grid-template-columns: 1fr; gap: 0; } }

.toc { position: sticky; top: 84px; font-size: .88rem; }
.toc h2 { font-family: var(--font); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 11px; font-weight: 700; }
.toc ol { list-style: none; border-left: 2px solid var(--line); }
.toc li { margin: 0; }
/* Scope to the list: a bare `.toc a` rule outranks `.btn-primary`'s colour and
   would render the sidebar CTA label invisible. */
.toc ol a { display: block; padding: 6px 0 6px 15px; margin-left: -2px; border-left: 2px solid transparent; color: var(--ink-soft); line-height: 1.4; transition: color .2s, border-color .2s; }
.toc ol a:hover { color: var(--emerald-dk); text-decoration: none; }
.toc ol a.current { color: var(--navy); font-weight: 600; border-left-color: var(--emerald); }
.toc .toc-cta .btn-primary { color: #fff; }
.toc .toc-cta { margin-top: 20px; }
.toc .toc-cta .btn { width: 100%; }
@media (max-width: 1080px) {
  .toc { position: static; margin-bottom: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); }
  .toc .toc-cta { display: none; }
  .toc ol { columns: 2; column-gap: 22px; border-left: 0; }
  .toc a { padding-left: 0; border-left: 0; }
  .toc a.current { border-left: 0; }
}
@media (max-width: 540px) { .toc ol { columns: 1; } }

.prose { max-width: 100%; }
.prose > h2 { scroll-margin-top: 84px; margin-bottom: .45em; padding-bottom: .3em; border-bottom: 1px solid var(--line); }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { scroll-margin-top: 84px; margin-bottom: .35em; }
.prose p { margin-bottom: 1.15em; }
.prose ul, .prose ol { margin: 0 0 1.35em 0; }
.prose ul { padding-left: 1.25em; }
.prose ul li::marker { color: var(--emerald); }
.prose li { margin-bottom: .5em; }
.prose strong { font-weight: 700; color: var(--navy); }
.prose a { color: var(--emerald-dk); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(15,157,88,.34); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.prose a:hover { text-decoration-color: var(--emerald); }
.prose em { color: var(--ink-soft); }

.section-lead { font-size: 1.11rem; color: var(--ink-soft); margin-bottom: 1.5em; }

.prose ol.steps { counter-reset: stp; list-style: none; padding-left: 0; margin: 1.7em 0; }
.prose ol.steps > li { counter-increment: stp; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px 20px 68px; margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s; }
.prose ol.steps > li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.prose ol.steps > li::before { content: counter(stp); position: absolute; left: 20px; top: 20px; width: 34px; height: 34px; border-radius: 10px; background: var(--emerald-50); color: var(--emerald-dk); font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; font-size: 1rem; }
.prose ol.steps h3 { margin-top: 0; font-size: 1.1rem; }
.prose ol.steps > li p { margin-bottom: 0; color: var(--ink-soft); }
.prose ol.steps > li p + p { margin-top: .65em; }
.prose ol.steps > li ul { margin: .7em 0 0; }

/* ---------------------------------------------------------------
   TABLES
   --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; margin: 1.7em 0; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
thead th { background: var(--bg-alt); color: var(--navy); text-align: left; font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; padding: 12px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
tbody td { padding: 12px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: var(--ink-soft); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .18s; }
tbody tr:hover td { background: var(--emerald-50); }
tbody td:first-child { font-weight: 600; color: var(--navy); }
.yes { color: var(--emerald-dk); font-weight: 700; }
.no  { color: var(--red); font-weight: 700; }

/* ---------------------------------------------------------------
   COMPONENTS
   --------------------------------------------------------------- */
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 14px; margin: 1.8em 0; }
.fact { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 17px 19px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--emerald); transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s; }
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fact .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); font-weight: 700; }
.fact .v { font-family: var(--font-head); font-size: 1.45rem; font-weight: 800; color: var(--navy); margin-top: 4px; line-height: 1.15; }

.callout { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--emerald); border-radius: var(--radius); padding: 19px 23px; margin: 1.7em 0; box-shadow: var(--shadow-sm); }
.callout.warn { border-left-color: var(--red); background: var(--red-50); border-color: #f3d3d1; }
.callout.rg { border-left-color: var(--gold); background: var(--gold-50); border-color: #f0dfbd; }
.callout.info { border-left-color: #3b82c4; background: var(--blue-50); border-color: #cfe0f2; }
.callout h3 { margin-top: 0; font-size: 1.13rem; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.callout ul { margin-bottom: 0; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 16px; margin: 1.8em 0; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 21px 22px; box-shadow: var(--shadow-sm); transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s, border-color .32s; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c8dcd0; }
.tile h3, .tile h4 { margin-top: 0; margin-bottom: .45em; }
.tile p { color: var(--ink-soft); font-size: .95rem; }
.tile p:last-child { margin-bottom: 0; }
.tile .tnum { display: inline-block; font-family: var(--font-head); font-size: .7rem; font-weight: 800; letter-spacing: .1em; color: var(--emerald-dk); background: var(--emerald-50); border-radius: 6px; padding: 3px 8px; margin-bottom: 9px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 1.8em 0; }
.split > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 23px; box-shadow: var(--shadow-sm); }
.split .pros { border-top: 3px solid var(--emerald); }
.split .cons { border-top: 3px solid var(--red); }
.split h3 { margin-top: 0; font-size: 1.1rem; }
.split ul { margin-bottom: 0; padding-left: 1.15em; }
.split li { font-size: .94rem; color: var(--ink-soft); }
.split .cons li::marker { color: var(--red); }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.3em 0 1.8em; padding-left: 0 !important; list-style: none; }
.chips li { margin-bottom: 0 !important; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 7px 15px; font-size: .87rem; font-weight: 600; color: var(--navy-700); box-shadow: var(--shadow-sm); transition: border-color .22s, color .22s, transform .22s; }
.chips li:hover { border-color: var(--emerald); color: var(--emerald-dk); transform: translateY(-2px); }

/* Game / method media card */
.media-card { display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 24px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin: 1.7em 0; box-shadow: var(--shadow-sm); }
.media-card img { border-radius: var(--radius-sm); width: 100%; }
.media-card h3 { margin-top: 0; }
.media-card p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .media-card { grid-template-columns: 1fr; gap: 16px; } }

.spec-list { list-style: none; padding-left: 0 !important; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 0 22px; margin-bottom: 1.5em !important; }
.spec-list li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; margin-bottom: 0 !important; }
.spec-list li span:first-child { color: var(--ink-muted); }
.spec-list li span:last-child { font-weight: 700; color: var(--navy); text-align: right; }

.faq { margin: 1.4em 0; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 11px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .22s, box-shadow .22s; }
.faq details[open] { border-color: #c2ddcd; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; padding: 16px 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--emerald-dk); }
.faq summary::after { content: ''; flex: none; width: 11px; height: 11px; border-right: 2.5px solid var(--emerald); border-bottom: 2.5px solid var(--emerald); transform: rotate(45deg) translate(-2px,-2px); transition: transform .28s cubic-bezier(.22,1,.36,1); }
.faq details[open] summary::after { transform: rotate(225deg) translate(-3px,-3px); }
.faq .faq-body { padding: 0 20px 17px; color: var(--ink-soft); animation: faqOpen .3s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.faq .faq-body p { margin-bottom: .55em; }
.faq .faq-body p:last-child { margin-bottom: 0; }

.cta-band { position: relative; overflow: hidden; background: linear-gradient(140deg, var(--navy) 0%, var(--navy-700) 100%); color: #fff; border-radius: var(--radius-lg); padding: 42px 40px; margin: 2.6em 0 0; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ''; position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 560px; height: 380px; background: radial-gradient(ellipse, rgba(15,157,88,.34) 0%, rgba(15,157,88,0) 68%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-top: 0; border: 0; padding: 0; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 56ch; margin: 12px auto 24px; }
.cta-band .cta-terms { font-size: .77rem; color: rgba(255,255,255,.6); margin: 17px auto 0; max-width: 66ch; }

.card-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px,1fr)); gap: 16px; margin: 2em 0; }
.card-link { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s, border-color .32s; text-decoration: none !important; display: block; }
.card-link::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: var(--radius) 0 0 var(--radius); background: var(--emerald); transform: scaleY(0); transform-origin: bottom; transition: transform .34s cubic-bezier(.22,1,.36,1); }
.card-link:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c8dcd0; }
.card-link:hover::before { transform: scaleY(1); transform-origin: top; }
.card-link h3 { margin: 0 0 7px; font-size: 1.13rem; }
.card-link p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.card-link .arrow { color: var(--emerald-dk); font-weight: 700; margin-top: 12px; display: inline-block; font-size: .9rem; transition: transform .3s cubic-bezier(.22,1,.36,1); }
.card-link:hover .arrow { transform: translateX(5px); }

.rg-strip { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; background: var(--gold-50); border: 1px solid #f0dfbd; border-radius: var(--radius); padding: 16px 20px; margin: 2em 0 0; font-size: .89rem; color: var(--ink-soft); }
.rg-strip a { color: var(--emerald-dk); font-weight: 600; }
.badge18 { background: var(--navy); color: #fff; font-weight: 800; border-radius: 50%; width: 42px; height: 42px; display: grid; place-items: center; flex: none; font-size: .84rem; font-family: var(--font-head); }

.note-small { font-size: .85rem; color: var(--ink-muted); margin-top: 1.5em; }

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 50px 0 26px; margin-top: 54px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
.site-footer img.flogo { height: 34px; width: auto; margin-bottom: 13px; }
.site-footer h4 { color: #fff; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 13px; font-weight: 700; font-family: var(--font); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.72); transition: color .2s, padding-left .2s; }
.site-footer a:hover { color: var(--emerald-lt); text-decoration: none; }
.site-footer ul a:hover { padding-left: 4px; }
.site-footer p a { color: var(--emerald-lt); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; font-size: .8rem; color: rgba(255,255,255,.54); line-height: 1.7; }
.footer-disclaimer .badges { display: flex; gap: 10px; align-items: center; margin-bottom: 13px; flex-wrap: wrap; }
.footer-disclaimer .badges span { border: 1px solid rgba(255,255,255,.22); border-radius: 7px; padding: 4px 11px; font-weight: 700; color: rgba(255,255,255,.8); font-size: .73rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------------------------------------------------------------
   MOTION
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(13px); animation: reveal .55s cubic-bezier(.22,1,.36,1) forwards; }
  .hero .eyebrow.reveal { animation-delay: .02s; }
  .hero h1.reveal { animation-delay: .07s; }
  .hero .lead.reveal { animation-delay: .14s; }
  .hero .hero-cta.reveal { animation-delay: .21s; }
  .hero .hero-note.reveal { animation-delay: .27s; }
  .hero .offer-card.reveal { animation-delay: .16s; }
  @keyframes reveal { to { opacity: 1; transform: none; } }
  .inview { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
  .inview.is-visible { opacity: 1; transform: none; }
  .inview.d1 { transition-delay: .07s; }
  .inview.d2 { transition-delay: .14s; }
  .inview.d3 { transition-delay: .21s; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .inview { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 576px) {
  body { font-size: 16px; }
  h1 { font-size: 30px; }
  h2 { font-size: 24px; margin-top: 36px; }
  h3 { font-size: 19px; }
  .cta-band { padding: 30px 22px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .prose ol.steps > li { padding: 18px 18px 18px 62px; }
  .prose ol.steps > li::before { left: 16px; top: 18px; }
  .spec-list { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   FOOTER — responsible-gambling organisation strip (FI / SV)
   --------------------------------------------------------------- */
.rg-orgs { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; }
.rg-orgs a, .rg-orgs span { display: inline-flex; align-items: center; border-radius: 9px; transition: opacity .22s, transform .22s; }
.rg-orgs a { opacity: .82; }
.rg-orgs a:hover { opacity: 1; transform: translateY(-2px); text-decoration: none; }
.rg-orgs a:focus-visible { outline: 2px solid var(--emerald-lt); outline-offset: 3px; }
.rg-orgs img { height: 52px; width: auto; }
.rg-orgs span img { height: 52px; }
.rg-warning { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.rg-warning strong { color: rgba(255,255,255,.9); }
.rg-warning a { color: var(--emerald-lt); }
@media (max-width: 560px) {
  .rg-orgs { gap: 9px; justify-content: center; }
  .rg-orgs img { height: 44px; }
  .rg-warning { text-align: left; }
}
