:root{
  --bg-main:#F0FBFF;
  --bg-alt:#E0F6FE;
  --bg-card:#FFFFFF;
  --bg-dark:#0E0F19;
  --accent:#1769FF;
  --accent-2:#0049CE;
  --cta:#00C853;
  --cta-hi:#1DE066;
  --cta-text:#FFFFFF;
  --text-main:#0C223E;
  --text-muted:#5B6B85;
  --good:#00C853;
  --warn:#FF3D00;
  --border:#CCE7F5;
  --border-dark:#232538;
  --font-head:"Inter",system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  --font-body:"Inter",system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  --radius:8px;
  --radius-lg:14px;
  --shadow:0 1px 2px rgba(12,34,62,.04),0 4px 16px rgba(12,34,62,.06);
  --shadow-lg:0 12px 30px rgba(12,34,62,.12);
  --maxw:1200px;
  --header-h:80px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg-main);
  color:var(--text-main);
  font-family:var(--font-body);
  font-size:18px;
  line-height:28px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--text-main);margin:0 0 .5em;line-height:1.2;font-weight:800;}
h1{font-size:clamp(2rem,5vw,3rem);letter-spacing:-.02em;}
h2{font-size:clamp(1.6rem,3.4vw,2rem);line-height:1.2;letter-spacing:-.01em;}
h3{font-size:1.2rem;font-weight:800;}
p{margin:0 0 1rem;}
a{color:var(--accent);text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%;}
ul,ol{margin:0 0 1rem;padding-inline-start:1.3em;}
strong{font-weight:700;}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px;}

/* ============ CONTAINER / SECTIONS (strips archetype) ============ */
.ioh-container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1rem,4vw,2.5rem);}
.ioh-section{padding-block:clamp(3rem,6vw,5rem);}
.ioh-section--alt{background:var(--bg-alt);}
.ioh-section--dark{background:var(--bg-dark);color:#fff;}
.ioh-section--dark h1,.ioh-section--dark h2,.ioh-section--dark h3{color:#fff;}
.ioh-section--tight{padding-block:clamp(1.5rem,3vw,2.25rem);}
.ioh-eyebrow{display:inline-block;font-size:.8rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin-bottom:.75rem;}
.ioh-lead{font-size:1.1rem;color:var(--text-muted);max-width:70ch;}

/* ============ BUTTONS ============ */
.ioh-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-head);font-weight:700;font-size:1rem;line-height:1;
  padding:.9rem 1.6rem;border-radius:var(--radius);border:2px solid transparent;
  cursor:pointer;transition:transform .15s ease,filter .15s ease,background .15s ease;
  text-decoration:none;white-space:nowrap;
}
.ioh-btn:hover{text-decoration:none;transform:translateY(-2px);}
.ioh-btn--cta{background:linear-gradient(180deg,var(--cta-hi),var(--cta));color:var(--cta-text);}
.ioh-btn--cta:hover{filter:brightness(1.05);}
.ioh-btn--secondary{background:var(--accent);color:#fff;}
.ioh-btn--secondary:hover{background:var(--accent-2);}
.ioh-btn--ghost{background:#EEFFF4;color:var(--cta);border-color:rgba(0,200,83,.35);}
.ioh-btn--ghost:hover{background:#E1FBEB;}
.ioh-btn--lg{padding:1.05rem 2rem;font-size:1.1rem;}
.ioh-btn--block{width:100%;}
@media(max-width:400px){.ioh-hero__actions .ioh-btn--lg{white-space:normal;text-align:center;}}

/* ============ HEADER (dark surface — light logo tone) ============ */
.ioh-header{
  position:sticky;top:0;z-index:100;
  background:var(--bg-dark);
  border-bottom:1px solid var(--border-dark);
}
.ioh-header__bar{
  max-width:var(--maxw);margin-inline:auto;
  padding-inline:clamp(1rem,4vw,2.5rem);
  min-height:var(--header-h);
  display:flex;align-items:center;gap:1.25rem;
}
.ioh-logo{display:inline-flex;align-items:center;flex-shrink:0;line-height:0;transition:opacity .2s ease,transform .2s ease;}
.ioh-logo:hover{opacity:.9;transform:translateY(-1px);}
.ioh-logo__img{height:42px;width:auto;display:block;max-width:min(45vw,200px);filter:drop-shadow(0 1px 3px rgba(0,0,0,.45));}
.ioh-nav{display:flex;align-items:center;gap:1.6rem;margin-inline-start:auto;}
.ioh-nav a:not(.ioh-btn){
  color:#D7E4F5;font-family:var(--font-head);font-weight:600;font-size:.95rem;
  text-transform:uppercase;letter-spacing:.03em;padding:.4rem 0;
}
.ioh-nav a:not(.ioh-btn):hover{color:#fff;text-decoration:none;}
.ioh-nav a:not(.ioh-btn)[aria-current="page"]{color:var(--accent);}
.ioh-header__cta{margin-inline-start:1.25rem;flex-shrink:0;font-size:.85rem;text-transform:uppercase;letter-spacing:.04em;padding:.7rem 1.2rem;}
.ioh-burger{
  display:none;flex-shrink:0;width:44px;height:44px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  background:transparent;border:0;cursor:pointer;padding:0;margin-inline-start:.5rem;
}
.ioh-burger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:transform .2s,opacity .2s;}
.ioh-header.is-open .ioh-burger span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.ioh-header.is-open .ioh-burger span:nth-child(2){opacity:0;}
.ioh-header.is-open .ioh-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media(max-width:900px){
  .ioh-burger{display:flex;}
  .ioh-nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--bg-dark);border-bottom:1px solid var(--border-dark);
    margin:0;padding:.5rem clamp(1rem,4vw,2.5rem) 1.25rem;
  }
  .ioh-header.is-open .ioh-nav{display:flex;}
  .ioh-nav a:not(.ioh-btn){padding:.85rem 0;border-bottom:1px solid var(--border-dark);}
  .ioh-header__cta{font-size:.8rem;padding:.6rem .9rem;}
}
@media(max-width:540px){
  /* Fejléc túlcsordulás-fix kis kijelzőn (mért 360/390px overflow):
     szűkebb köz, CTA-margó auto-ra (fix 1.25rem helyett), kcompakt CTA. */
  .ioh-header__bar{gap:.5rem;}
  .ioh-logo__img{height:34px;filter:drop-shadow(0 1px 2px rgba(0,0,0,.4));}
  .ioh-header__cta{margin-inline-start:auto;padding:.5rem .8rem;font-size:.78rem;letter-spacing:.01em;}
  .ioh-burger{margin-inline-start:.15rem;}
}
@media(max-width:360px){
  .ioh-logo__img{height:31px;}
  .ioh-header__cta{padding:.45rem .65rem;font-size:.72rem;}
}

/* ============ HERO (mirror-split: visual LEFT, text RIGHT) ============ */
.ioh-hero{background:var(--bg-dark);color:#fff;position:relative;overflow:hidden;}
.ioh-hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(120% 90% at 15% 40%,rgba(23,105,255,.35),transparent 60%);
}
.ioh-hero h1,.ioh-hero h2,.ioh-hero h3{color:#fff;}
.ioh-hero__inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(1.5rem,4vw,3.5rem);
  align-items:center;padding-block:clamp(3rem,6vw,5rem);
}
.ioh-hero__inner>*{min-width:0;}
.ioh-hero__text .ioh-eyebrow{color:#7FB2FF;}
.ioh-hero__sub{font-size:1.15rem;color:#C4D4EA;max-width:52ch;margin-bottom:1.5rem;}
.ioh-hero__actions{display:flex;flex-wrap:wrap;gap:.9rem;}
.ioh-hero__visual{position:relative;order:-1;}
.ioh-hero__img{
  display:block;width:100%;height:auto;max-height:70vh;
  aspect-ratio:3/2;object-fit:cover;border-radius:var(--radius-lg);
  box-shadow:0 20px 50px rgba(0,0,0,.4);outline:1px solid rgba(255,255,255,.08);outline-offset:-1px;
}
.ioh-hero__ph{
  display:block;width:100%;aspect-ratio:3/2;border-radius:var(--radius);
  background:linear-gradient(135deg,#12356f,#0a1830 60%),
    repeating-linear-gradient(45deg,rgba(23,105,255,.15) 0 14px,transparent 14px 28px);
}
@media(max-width:820px){
  .ioh-hero__inner{grid-template-columns:1fr;text-align:center;}
  .ioh-hero__sub{margin-inline:auto;}
  .ioh-hero__actions{justify-content:center;}
}

/* ============ ICONS ============ */
.ioh-icon{width:1.5em;height:1.5em;display:inline-block;vertical-align:middle;flex-shrink:0;stroke:currentColor;fill:none;}

/* ============ CATEGORIES BAR (lobby pills) ============ */
.ioh-cats{display:flex;flex-wrap:wrap;gap:.6rem;}
.ioh-cats a,.ioh-cats span{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.55rem 1.05rem;border-radius:999px;
  background:var(--bg-card);border:1px solid var(--border);
  color:var(--text-main);font-weight:600;font-size:.92rem;
  box-shadow:var(--shadow);
}
.ioh-cats span .ioh-icon{color:var(--accent);}
.ioh-cats a:hover{border-color:var(--accent);color:var(--accent);text-decoration:none;}
.ioh-cats a[aria-current="page"]{background:var(--accent);color:#fff;border-color:var(--accent);}

/* ============ PROVIDER RAIL ============ */
.ioh-providers{display:flex;flex-wrap:wrap;gap:.6rem 1.6rem;align-items:center;justify-content:center;}
.ioh-providers span{color:var(--text-muted);font-weight:700;font-size:.95rem;letter-spacing:.02em;}

/* ============ OVERVIEW ============ */
.ioh-overview__inner{max-width:100%;}
.ioh-overview h2{margin-bottom:1rem;}

/* ============ FEATURE CARDS (icon-rows pattern) ============ */
.ioh-features{display:flex;flex-direction:column;}
.ioh-feature{
  display:flex;align-items:flex-start;gap:1.1rem;
  padding:1.4rem 0;border-bottom:1px solid var(--border);
}
.ioh-feature:last-child{border-bottom:0;}
.ioh-feature>*{min-width:0;}
.ioh-feature__chip{
  flex-shrink:0;width:52px;height:52px;border-radius:var(--radius-lg);
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(150deg,#EAF4FF,#D3E9FE);color:var(--accent-2);
  box-shadow:inset 0 0 0 1px rgba(23,105,255,.12);
}
.ioh-feature__chip .ioh-icon{width:26px;height:26px;}
.ioh-feature__title{margin:0 0 .3rem;}
.ioh-feature__text{margin:0;color:var(--text-muted);font-size:1rem;}

/* ============ CARDS GRID ============ */
.ioh-cards{display:grid;gap:1.25rem;grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));}
.ioh-card{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:1.5rem;min-width:0;box-shadow:var(--shadow);
  transition:transform .15s ease,box-shadow .15s ease;
}
.ioh-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);}
.ioh-card h3{margin-bottom:.5rem;}
.ioh-card p{color:var(--text-muted);font-size:1rem;margin:0;}
.ioh-card .ioh-btn{margin-top:1.25rem;}

/* ============ DATA TABLE / PAYMENTS TABLE ============ */
.ioh-table-wrap{overflow-x:auto;max-width:100%;margin-block:1.5rem;border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow);}
.ioh-table{width:100%;border-collapse:collapse;background:var(--bg-card);font-size:1rem;}
.ioh-table th,.ioh-table td{padding:.9rem 1.1rem;text-align:start;border-bottom:1px solid var(--border);}
.ioh-table th{background:var(--bg-alt);font-family:var(--font-head);font-weight:700;color:var(--text-main);white-space:nowrap;}
.ioh-table tbody tr:hover{background:#F4FAFF;}
.ioh-table tr:last-child td{border-bottom:0;}
.ioh-table tr.is-best td{background:#F0FFF6;border-inline-start:3px solid var(--good);}
.ioh-table .ioh-chip{display:inline-block;background:var(--bg-alt);color:var(--accent-2);font-weight:700;padding:.2rem .6rem;border-radius:6px;font-size:.9rem;}

/* ============ TWO COLS + CONTENT PANEL ============ */
.ioh-twocols{display:grid;grid-template-columns:1.3fr .7fr;gap:clamp(1.5rem,4vw,3rem);align-items:start;}
.ioh-twocols>*{min-width:0;}
@media(max-width:820px){.ioh-twocols{grid-template-columns:1fr;}}
.ioh-panel{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow);}
.ioh-panel__title{margin:0 0 1rem;font-size:1.15rem;}
.ioh-facts{margin:0;}
.ioh-facts__row{display:flex;justify-content:space-between;gap:1rem;padding:.7rem 0;border-bottom:1px solid var(--border);}
.ioh-facts__row:last-child{border-bottom:0;}
.ioh-facts dt{color:var(--text-muted);font-weight:600;margin:0;}
.ioh-facts dd{margin:0;font-weight:700;text-align:end;}
.ioh-checklist{list-style:none;margin:0;padding:0;}
.ioh-checklist li{display:flex;align-items:flex-start;gap:.6rem;padding:.55rem 0;}
.ioh-nowrap{white-space:nowrap;}
.ioh-checklist .ioh-icon{color:var(--good);margin-top:.15rem;}
.ioh-stat-tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(200px,100%),1fr));gap:.75rem;}
.ioh-stat-tile{background:var(--bg-alt);border-radius:var(--radius);padding:1rem;text-align:center;}
.ioh-stat-tile b{display:block;font-family:var(--font-head);font-size:1.5rem;color:var(--accent);}
.ioh-stat-tile span{font-size:.85rem;color:var(--text-muted);}
.ioh-score{text-align:center;}
.ioh-score b{display:block;font-family:var(--font-head);font-size:3rem;line-height:1;color:var(--accent);}
.ioh-score .ioh-stars{display:flex;justify-content:center;gap:.15rem;color:var(--cta);margin:.4rem 0;}
.ioh-score .ioh-icon{width:1.2em;height:1.2em;fill:currentColor;stroke:none;}
.ioh-score small{color:var(--text-muted);}

/* ============ NUMBERED LIST ============ */
.ioh-steps{list-style:none;counter-reset:step;margin:0;padding:0;}
.ioh-steps li{position:relative;padding:0 0 1.5rem 3.5rem;counter-increment:step;}
.ioh-steps li::before{
  content:counter(step);position:absolute;inset-inline-start:0;top:0;
  width:2.4rem;height:2.4rem;border-radius:var(--radius);
  background:var(--accent);color:#fff;font-family:var(--font-head);font-weight:800;
  display:flex;align-items:center;justify-content:center;
}
.ioh-steps li h3{margin-bottom:.3rem;}
.ioh-steps li p{color:var(--text-muted);margin:0;font-size:1rem;}

/* ============ STATS BAR (strip pattern, dark band) ============ */
.ioh-stats{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;}
.ioh-stats__item{flex:1 1 150px;min-width:0;padding-inline:1.25rem;text-align:center;border-inline-start:1px solid var(--border-dark);}
.ioh-stats__item:first-child{border-inline-start:0;}
@media(max-width:520px){.ioh-stats__item{border-inline-start:0;}}
.ioh-section--dark .ioh-stats__item b{display:block;font-family:var(--font-head);font-size:clamp(1.8rem,4vw,2.6rem);color:#fff;line-height:1.1;}
.ioh-section--dark .ioh-stats__item span{font-size:.85rem;text-transform:uppercase;letter-spacing:.06em;color:#8FA6C4;}

/* ============ RTP GRID (signature game tiles) ============ */
.ioh-rtp{display:grid;gap:clamp(.6rem,1.5vw,1rem);grid-template-columns:repeat(2,minmax(0,1fr));}
@media(min-width:640px){.ioh-rtp{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media(min-width:960px){.ioh-rtp{grid-template-columns:repeat(4,minmax(0,1fr));}}
.ioh-rtp-item{position:relative;overflow:hidden;min-width:0;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow);transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;}
.ioh-rtp-item:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(12,34,62,.14);border-color:var(--accent);}
.ioh-rtp-item__thumb img{transition:transform .3s ease;}
.ioh-rtp-item:hover .ioh-rtp-item__thumb img{transform:scale(1.05);}
.ioh-rtp-item__thumb{aspect-ratio:3/2;position:relative;background:linear-gradient(135deg,#12356f,#0a1830);}
.ioh-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.ioh-rtp-item__demo{position:absolute;top:.5rem;inset-inline-end:.5rem;z-index:2;background:var(--cta);color:var(--cta-text);font-family:var(--font-head);font-weight:800;font-size:.7rem;letter-spacing:.06em;padding:.25rem .55rem;border-radius:6px;}
.ioh-rtp-item__body{padding:.7rem .8rem;}
.ioh-rtp-item__name{font-family:var(--font-head);font-weight:700;font-size:.95rem;margin:0 0 .1rem;overflow-wrap:anywhere;}
.ioh-rtp-item__prov{color:var(--text-muted);font-size:.8rem;}
.ioh-rtp-item__rtp{display:block;margin-top:.35rem;font-weight:800;color:var(--accent);font-size:.9rem;}
.ioh-rtp-tooltip{position:absolute;bottom:0;left:0;right:0;opacity:0;transition:opacity .2s;background:rgba(14,15,25,.92);color:#fff;padding:.6rem .8rem;font-size:.85rem;}
.ioh-rtp-item:hover .ioh-rtp-tooltip,.ioh-rtp-item:focus-within .ioh-rtp-tooltip{opacity:1;}
/* Tapintós eszközön nincs hover — a tooltip statikus infosorrá válik a kártya alján */
@media(hover:none){
  .ioh-rtp-tooltip{position:static;opacity:1;background:var(--bg-alt);color:var(--text-muted);padding:.5rem .8rem;font-size:.78rem;border-top:1px solid var(--border);}
}

/* ============ FAQ (single column) ============ */
.ioh-faq details{border-bottom:1px solid var(--border);border-inline-start:3px solid var(--accent);padding-inline-start:1rem;}
.ioh-faq summary{cursor:pointer;padding:1rem 0;font-weight:600;list-style:none;font-family:var(--font-head);}
.ioh-faq summary::-webkit-details-marker{display:none;}
.ioh-faq summary::before{content:'+';margin-right:.5rem;color:var(--accent);font-weight:800;transition:transform .2s;}
.ioh-faq details[open] summary::before{content:'−';}
.ioh-faq details>:not(summary){padding:.5rem 0 1rem;color:var(--text-muted);}

/* ============ CTA BLOCK ============ */
.ioh-cta-block{background:var(--bg-dark);color:#fff;text-align:center;}
.ioh-cta-block h2{color:#fff;}
.ioh-cta-block p{color:#C4D4EA;max-width:60ch;margin-inline:auto;margin-bottom:1.5rem;}

/* ============ TOC ============ */
.ioh-toc{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.25rem 1.5rem;box-shadow:var(--shadow);}
.ioh-toc h3{font-size:1rem;text-transform:uppercase;letter-spacing:.06em;color:var(--text-muted);margin-bottom:.75rem;}
.ioh-toc ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.5rem 1.25rem;}
.ioh-toc a{font-weight:600;}

/* ============ PAGE HEADER (inner pages) ============ */
.ioh-page-header{background:var(--bg-alt);border-bottom:1px solid var(--border);position:relative;}
.ioh-page-header__inner{padding-block:clamp(2rem,4vw,3rem);position:relative;z-index:1;}
.ioh-page-header h1{margin-bottom:.5rem;}
.ioh-breadcrumb{font-size:.9rem;color:var(--text-muted);}
.ioh-breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem;margin:0;padding:0;}
.ioh-breadcrumb li:not(:last-child)::after{content:'/';margin-inline-start:.4rem;color:var(--border);}
.ioh-page-header:has(.ioh-hero__img){background:var(--bg-dark);}
.ioh-page-header:has(.ioh-hero__img) .ioh-hero__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border-radius:0;z-index:0;}
.ioh-page-header:has(.ioh-hero__img)::after{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(90deg,rgba(10,12,18,.9),rgba(10,12,18,.6));}
.ioh-page-header:has(.ioh-hero__img) .ioh-page-header__inner{min-height:220px;display:flex;flex-direction:column;justify-content:center;}
.ioh-page-header:has(.ioh-hero__img) h1{color:#fff;}
.ioh-page-header:has(.ioh-hero__img) .ioh-breadcrumb{color:#C4D4EA;}

/* ============ LEGAL BODY ============ */
.ioh-legal{counter-reset:legal;max-width:100%;}
.ioh-legal h2{counter-increment:legal;}
.ioh-legal h2::before{content:counter(legal) ". ";color:var(--accent);}
.ioh-legal h3{margin-top:1.5rem;}
.ioh-legal p,.ioh-legal li{color:var(--text-main);}

/* ============ STICKY NAV (mobile) ============ */
.ioh-sticky-nav{display:none;}
@media(max-width:768px){
  .ioh-sticky-nav{
    display:flex;position:fixed;bottom:0;left:0;right:0;z-index:90;
    background:var(--bg-dark);border-top:1px solid var(--border-dark);
    padding:.5rem;justify-content:space-around;
  }
  .ioh-sticky-nav a{color:#D7E4F5;font-size:.75rem;display:flex;flex-direction:column;align-items:center;gap:.2rem;}
  .ioh-sticky-nav .ioh-icon{width:1.3em;height:1.3em;}
}

/* ============ CHAT WIDGET ============ */
.ioh-chat-btn{position:fixed;bottom:1.25rem;inset-inline-end:1.25rem;z-index:95;width:56px;height:56px;border-radius:50%;background:var(--accent);color:#fff;border:0;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.ioh-chat-dialog{position:fixed;bottom:5.5rem;inset-inline-end:1.25rem;z-index:95;width:min(340px,90vw);background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;display:none;}
.ioh-chat-dialog[open]{display:block;}

/* ============ FOOTER (dark surface — light logo tone) ============ */
.ioh-footer{background:var(--bg-dark);color:#B8C6DC;padding-block:clamp(2.5rem,5vw,3.5rem) 1.5rem;}
.ioh-footer a{color:#B8C6DC;}
.ioh-footer a:hover{color:#fff;}
.ioh-footer__grid{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:2rem;}
.ioh-footer__grid>*{min-width:0;}
@media(max-width:820px){.ioh-footer__grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.ioh-footer__grid{grid-template-columns:1fr;}}
.ioh-footer__logo img{height:44px;width:auto;display:block;margin-bottom:1rem;}
.ioh-footer__brand p{font-size:.9rem;color:#8FA6C4;}
.ioh-footer h3{color:#fff;font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1rem;}
.ioh-footer__col ul{list-style:none;margin:0;padding:0;}
.ioh-footer__col li{margin-bottom:.65rem;font-size:.95rem;}
.ioh-footer__badges{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;margin-block:1.5rem;padding-block:1.5rem;border-block:1px solid var(--border-dark);}
.ioh-footer__badge{display:inline-flex;align-items:center;gap:.5rem;font-size:.85rem;color:#8FA6C4;font-weight:600;}
.ioh-footer__badge .ioh-icon{color:#7FB2FF;}
.ioh-footer__badge--age{background:var(--warn);color:#fff;width:2.4rem;height:2.4rem;border-radius:50%;justify-content:center;font-family:var(--font-head);font-weight:800;font-size:.9rem;}
.ioh-disclaimer{font-size:.82rem;color:#8FA1BE;line-height:1.6;max-width:100%;overflow-wrap:anywhere;}
.ioh-footer__copy{margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid var(--border-dark);font-size:.82rem;color:#8FA1BE;display:flex;flex-wrap:wrap;gap:.75rem;justify-content:space-between;}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-ph-media */
.ioh-page-header:has(.ioh-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.ioh-page-header:has(.ioh-hero__img) .ioh-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0;box-shadow:none;outline:0;border-radius:0}
.ioh-page-header:has(.ioh-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
:where(.ioh-page-header:has(.ioh-hero__img)>:not(.ioh-hero__img)){position:relative;z-index:2}
.ioh-page-header:has(.ioh-hero__img),.ioh-page-header:has(.ioh-hero__img) h1,.ioh-page-header:has(.ioh-hero__img) a,.ioh-page-header:has(.ioh-hero__img) p,.ioh-page-header:has(.ioh-hero__img) li,.ioh-page-header:has(.ioh-hero__img) span{color:#fff}
/* sa-hero-media */
.ioh-hero:has(>.ioh-hero__img){position:relative;isolation:isolate}
.ioh-hero:has(>.ioh-hero__img)>.ioh-hero__img{z-index:0}
.ioh-hero:has(>.ioh-hero__img)::after{z-index:1}
:where(.ioh-hero:has(>.ioh-hero__img)>:not(.ioh-hero__img)){position:relative;z-index:2}
/* sa-rhythm */
:where(.ioh-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.ioh-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.ioh-rtp-item,.ioh-rtp-item:hover,.ioh-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
/* sa-logo-chip */
.ioh-footer .ioh-logo__img{filter:none;background:transparent;padding:0}
.ioh-footer .ioh-footer__logo-chip{background:transparent;padding:0}
