/* RESET */
html { color-scheme: dark; }
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
table { border-collapse: collapse; }

/* TYPOGRAPHY */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--okh-bg);
  color: var(--okh-text);
}
h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; font-weight: 800; line-height: 1.2; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }
a, code { overflow-wrap: anywhere; }

/* ROOT VARIABLES — dark near-black base + red/orange accent (matches the reference screenshots) */
:root {
  --okh-bg: #0a0a0c;
  --okh-bg-raised: #171820;
  --okh-bg-soft: #1f212b;
  --okh-text: #f5f6f8;
  --okh-text-muted: #9599a6;
  --okh-accent: #ff4d1f;
  --okh-accent-hover: #ff6a3d;
  --okh-accent-2: #ffb648;
  --okh-green: #35d68a;
  --okh-border: #26272f;
  --okh-radius: 16px;
  --okh-radius-lg: 22px;
  --okh-shadow: 0 20px 44px rgba(0, 0, 0, .55);
  --okh-container: 1280px;
  --okh-content: 1280px;
}

/* FOCUS */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--okh-accent-2); outline-offset: 2px; border-radius: 6px;
}

/* LAYOUT */
.okh-container { max-width: var(--okh-container); margin: 0 auto; padding: 0 20px; }
.okh-main { display: block; }

/* BUTTONS */
.okh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: .03em; white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.okh-btn--accent {
  background: linear-gradient(180deg, var(--okh-accent-hover), var(--okh-accent));
  color: #fff; box-shadow: 0 3px 0 0 rgba(0,0,0,.35), 0 6px 18px rgba(255,77,31,.35);
}
.okh-btn--accent:hover { transform: translateY(-1px); box-shadow: 0 4px 0 0 rgba(0,0,0,.35), 0 10px 22px rgba(255,77,31,.4); }
.okh-btn--accent:active { transform: translateY(1px); box-shadow: 0 1px 0 0 rgba(0,0,0,.35); }
.okh-btn--lg { padding: 15px 28px; font-size: 15px; }

/* HEADER */
.okh-header { position: sticky; top: 0; z-index: 40; background: rgba(10,10,12,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--okh-border); }
.okh-header__inner { max-width: var(--okh-container); margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; gap: 20px; }
.okh-header__logo { flex-shrink: 0; display: flex; }
.okh-header__logo img { height: 38px; width: auto; }
.okh-header__nav { display: none; flex: 1; align-items: center; gap: 4px; }
.okh-header__nav a {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; color: var(--okh-text-muted); border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.okh-header__nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.okh-header__nav a:hover { background: var(--okh-bg-soft); color: var(--okh-text); border-color: var(--okh-border); }
.okh-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.okh-header__flag { display: none; align-items: center; gap: 4px; padding: 7px 10px; border-radius: 8px; border: 1px solid var(--okh-border); color: var(--okh-text-muted); cursor: default; }
.okh-header__flag svg { width: 14px; height: 14px; }
.okh-header__flag-icon { width: 20px; height: 13.3px; border-radius: 3px; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.okh-header__flag-text { font-size: 12px; font-weight: 800; letter-spacing: .05em; color: var(--okh-text); }
.okh-burger { display: flex; flex-direction: column; gap: 4px; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 8px; }
.okh-burger span { width: 20px; height: 2px; background: var(--okh-text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.okh-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.okh-burger.is-open span:nth-child(2) { opacity: 0; }
.okh-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1100px) {
  .okh-header__nav { display: flex; }
  .okh-header__flag { display: inline-flex; }
  .okh-burger { display: none; }
}

/* MOBILE MENU */
.okh-mobile-menu {
  position: fixed; inset: 0; z-index: 50; background: var(--okh-bg); padding: 20px;
  overflow-y: auto; transform: translateX(100%); transition: transform .25s ease;
}
.okh-mobile-menu.is-open { transform: translateX(0); }
.okh-mobile-menu__close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--okh-bg-soft); }
.okh-mobile-menu__close svg { width: 18px; height: 18px; }
.okh-mobile-menu__group { margin: 50px 0 26px; }
.okh-mobile-menu__title { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--okh-accent-2); margin-bottom: 12px; font-weight: 800; }
.okh-mobile-menu__group a { display: block; padding: 11px 0; font-size: 15.5px; font-weight: 600; border-bottom: 1px solid var(--okh-border); }
body.okh-no-scroll { overflow: hidden; }
@media (min-width: 1100px) { .okh-mobile-menu { display: none; } }

/* HERO — rounded promo card, gradient background, no fake carousel controls */
.okh-hero { padding: 22px 0 8px; }
.okh-hero__inner {
  position: relative; border-radius: var(--okh-radius-lg); overflow: hidden;
  padding: 46px 32px; background:
    radial-gradient(circle at 85% 15%, rgba(255,77,31,.35) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,182,72,.18) 0%, transparent 40%),
    linear-gradient(150deg, #1a0d08 0%, #0a0a0c 65%);
  border: 1px solid var(--okh-border);
}
.okh-hero h1 { font-size: 30px; max-width: 640px; letter-spacing: -.01em; }
.okh-hero__lead { margin-top: 14px; max-width: 520px; font-size: 15.5px; color: var(--okh-text-muted); }
.okh-hero__ctas { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 700px) { .okh-hero h1 { font-size: 40px; } .okh-hero__inner { padding: 64px 48px; } }
@media (min-width: 1100px) { .okh-hero h1 { font-size: 48px; } }

/* QUICKLINKS — icon-pill row (mirrors the reference's quick-action strip) */
.okh-quicklinks { padding: 18px 0; }
.okh-quicklinks__row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.okh-quicklinks__row::-webkit-scrollbar { display: none; }
.okh-quicklinks__item {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 92px; padding: 14px 12px; border-radius: 14px; background: var(--okh-bg-raised);
  border: 1px solid var(--okh-border); text-align: center; transition: border-color .15s, transform .15s;
}
.okh-quicklinks__item:hover { border-color: var(--okh-accent); transform: translateY(-2px); }
.okh-quicklinks__icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,77,31,.14); border: 1px solid rgba(255,77,31,.3);
}
.okh-quicklinks__item svg { width: 20px; height: 20px; color: var(--okh-accent-2); display: block; }
.okh-quicklinks__item span { font-size: 12px; font-weight: 700; color: var(--okh-text); }

/* CASINO LISTING — "jackpot card" style, 3 across on desktop */
.okh-offers { padding: 26px 0 30px; }
.okh-offers__head { margin-bottom: 18px; text-align: center; }
.okh-offers__head h2 { font-size: 26px; margin-bottom: 6px; }
.okh-offers__head p { color: var(--okh-text-muted); font-size: 14px; }
.okh-offers__grid { display: flex; flex-direction: column; gap: 16px; }
.okh-offers__grid > div { display: flex; }
.okh-offers__card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  width: 100%; padding: 28px 22px; background: var(--okh-bg-raised); border: 1px solid var(--okh-border);
  border-radius: var(--okh-radius-lg); box-shadow: var(--okh-shadow); transition: border-color .2s, transform .2s;
}
.okh-offers__card:hover { border-color: var(--okh-accent); transform: translateY(-3px); }
.okh-offers__card--top { border-color: var(--okh-accent); background: linear-gradient(180deg, rgba(255,77,31,.1), var(--okh-bg-raised) 55%); }
.okh-offers__card * { pointer-events: none; }
.okh-offers__card .okh-offers__overlay-link,
.okh-offers__card .okh-offers__review-link { pointer-events: auto; cursor: pointer; }
.okh-offers__overlay-link { position: absolute; inset: 0; z-index: 1; font-size: 0; color: transparent; text-indent: -9999px; border-radius: inherit; }
.okh-offers__card > *:not(.okh-offers__overlay-link) { position: relative; z-index: 2; }
.okh-offers__card > .okh-offers__ribbon { position: absolute; z-index: 2; }
.okh-offers__cta, .okh-offers__review-link { position: relative; z-index: 3; }
.okh-offers__cta { margin-top: auto; }
.okh-offers__ribbon {
  top: 14px; right: -6px; background: var(--okh-accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 5px 14px 5px 10px;
  border-radius: 6px 0 0 6px;
}
.okh-offers__icon {
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,77,31,.14); border: 1px solid rgba(255,77,31,.3); font-size: 26px;
}
.okh-offers__banner { display: none; }
.okh-offers__name { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--okh-text-muted); font-weight: 700; }
.okh-offers__rating { font-size: 13px; color: var(--okh-accent-2); font-weight: 700; }
.okh-offers__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.okh-offers__tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--okh-border); color: var(--okh-text-muted); text-transform: uppercase; letter-spacing: .03em; }
.okh-offers__tag--top { border-color: rgba(255,77,31,.5); color: var(--okh-accent-2); }
.okh-offers__tag--exclusive { border-color: rgba(139,92,246,.5); color: #cbb8ff; }
.okh-offers__bonus-label { display: block; font-size: 11px; color: var(--okh-text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.okh-offers__bonus-value { font-size: 22px; font-weight: 800; line-height: 1.25; }
.okh-offers__usp { display: grid; gap: 6px; text-align: left; width: 100%; max-width: 260px; margin: 0 auto; }
.okh-offers__usp li { padding-left: 20px; position: relative; font-size: 13px; color: #cfd1d8; }
.okh-offers__usp li::before { content: "\2713"; position: absolute; left: 0; color: var(--okh-green); font-weight: 800; }
.okh-offers__social { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--okh-text-muted); background: var(--okh-bg-soft); border-radius: 8px; padding: 5px 12px; }
.okh-offers__timer { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--okh-text-muted); }
.okh-offers__timer-box { background: var(--okh-bg-soft); border: 1px solid var(--okh-border); border-radius: 6px; padding: 3px 6px; font-weight: 700; color: var(--okh-text); min-width: 26px; text-align: center; }
.okh-offers__cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 13px 20px; border-radius: 10px; background: var(--okh-accent); color: #fff; font-weight: 800; font-size: 13.5px; width: 100%; text-transform: uppercase; letter-spacing: .03em; }
.okh-offers__review-link { font-size: 12px; color: var(--okh-text-muted); text-decoration: underline; }
.okh-offers__urgency { font-size: 11.5px; color: var(--okh-accent-2); }
.okh-offers__aggregate { text-align: center; margin-top: 20px; font-size: 13.5px; color: var(--okh-text-muted); }
@media (min-width: 860px) {
  .okh-offers__grid { flex-direction: row; align-items: stretch; }
  .okh-offers__grid > div { flex: 1 1 0; min-width: 0; display: flex; }
  .okh-offers__card { width: 100%; }
}

/* SLOT LISTING — simple cover-art tiles */
.okh-slots { padding: 10px 0 30px; }
.okh-slots__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.okh-slots__head h2 { font-size: 20px; display: flex; align-items: center; gap: 8px; }
.okh-slots__head h2 span[aria-hidden] { font-size: 18px; }
.okh-slots__all { font-size: 12.5px; font-weight: 700; color: var(--okh-text-muted); border-bottom: 1px solid var(--okh-border); padding-bottom: 2px; flex-shrink: 0; white-space: nowrap; }
.okh-slots__all:hover { color: var(--okh-accent-2); border-color: var(--okh-accent-2); }
.okh-slots__row-wrap { position: relative; }
.okh-slots__grid { display: grid; grid-auto-flow: column; grid-auto-columns: 47%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.okh-slots__grid::-webkit-scrollbar { display: none; }
.okh-slots__grid > div { scroll-snap-align: start; }
.okh-slots__tile { position: relative; display: block; border-radius: var(--okh-radius); overflow: hidden; background: var(--okh-bg-raised); border: 1px solid var(--okh-border); aspect-ratio: 3/4; }
.okh-slots__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.okh-slots__top-row { position: absolute; top: 8px; left: 8px; z-index: 2; }
.okh-slots__hot { background: var(--okh-accent); color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; letter-spacing: .04em; }
.okh-slots__meta-row, .okh-slots__badge { display: none; }
.okh-slots__title-row { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 10px 10px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.85) 60%); }
.okh-slots__name { font-size: 13px; font-weight: 800; color: #fff; }
.okh-slots__overlay { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(10,10,12,.82); opacity: 0; transition: opacity .2s; }
.okh-slots__tile:hover .okh-slots__overlay, .okh-slots__tile.is-touched .okh-slots__overlay { opacity: 1; }
.okh-slots__play-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--okh-accent); display: flex; align-items: center; justify-content: center; color: #fff; }
.okh-slots__overlay-cta { font-size: 12.5px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.okh-slots__next { display: none; }
.okh-slots__scrollbar { display: none; }
@media (max-width: 619px) {
  .okh-slots__grid {
    grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); grid-auto-columns: unset;
    overflow-x: visible; scroll-snap-type: none;
  }
  .okh-slots__grid > div { scroll-snap-align: none; }
}
@media (min-width: 620px) { .okh-slots__grid { grid-auto-columns: 31%; } }
@media (min-width: 900px) { .okh-slots__grid { grid-auto-columns: 22%; } }
@media (min-width: 1180px) { .okh-slots__grid { grid-auto-columns: 17.5%; } }

/* CONTENT / ARTICLE TYPOGRAPHY */
.okh-content { padding: 28px 0; border-top: 1px solid var(--okh-border); }
.okh-content h2 { font-size: 24px; margin-bottom: 14px; }
.okh-content p { margin-bottom: 14px; color: #d7d9df; font-size: 15px; }
.okh-content a { color: var(--okh-accent-2); text-decoration: underline; }
.okh-list { display: grid; gap: 8px; margin: 16px 0; }
.okh-list li { padding-left: 22px; position: relative; font-size: 14.5px; color: #d7d9df; }
.okh-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--okh-green); font-weight: 800; }
.okh-table-wrap { overflow-x: auto; margin: 18px 0; border-radius: var(--okh-radius); border: 1px solid var(--okh-border); }
.okh-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.okh-table th, .okh-table td { padding: 12px 16px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--okh-border); }
.okh-table th { border-top: 3px solid var(--okh-accent); background: var(--okh-bg-raised); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 11.5px; color: var(--okh-text-muted); }
.okh-table tbody tr:nth-child(even) { background: var(--okh-bg-soft); }
.okh-table a { color: var(--okh-accent-2); }
blockquote { border-left: 3px solid var(--okh-accent); padding: 4px 0 4px 18px; font-style: italic; color: #d7d9df; margin-top: 18px; }
blockquote cite { display: block; margin-top: 8px; font-style: normal; font-size: 13px; color: var(--okh-text-muted); }
.okh-cta-block { margin-top: 20px; }
.okh-breadcrumbs { font-size: 12.5px; color: var(--okh-text-muted); padding: 16px 0; }
.okh-breadcrumbs a { color: var(--okh-text-muted); text-decoration: underline; }
.okh-lead-block { padding-bottom: 8px; color: var(--okh-text-muted); font-size: 14px; max-width: 760px; }

/* SUBNAV PILLS */
.okh-subnav { padding: 22px 0; border-top: 1px solid var(--okh-border); }
.okh-subnav__row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.okh-subnav__pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  background: var(--okh-bg-raised); border: 1px solid var(--okh-border); font-size: 13px; font-weight: 700;
  transition: border-color .15s, background .15s;
}
.okh-subnav__pill:hover { border-color: var(--okh-accent); background: var(--okh-bg-soft); }
.okh-subnav__pill svg { width: 16px; height: 16px; color: var(--okh-accent-2); }

/* LOYALTY PANEL (VIP klub) */
.okh-loyalty { padding: 28px 0; }
.okh-loyalty__panel { background: linear-gradient(120deg, rgba(255,77,31,.12), var(--okh-bg-raised) 55%); border: 1px solid var(--okh-border); border-radius: var(--okh-radius-lg); padding: 26px; display: grid; gap: 22px; }
.okh-loyalty__main { display: flex; align-items: center; gap: 16px; }
.okh-loyalty__badge { width: 56px; height: 56px; border-radius: 50%; background: var(--okh-bg-soft); border: 1px solid var(--okh-border); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.okh-loyalty__main h3 { font-size: 18px; margin-bottom: 6px; }
.okh-loyalty__main p { font-size: 13.5px; color: var(--okh-text-muted); margin-bottom: 12px; }
.okh-loyalty__features { display: grid; gap: 16px; }
.okh-loyalty__feature { display: flex; gap: 12px; }
.okh-loyalty__feature svg { width: 26px; height: 26px; color: var(--okh-accent-2); flex-shrink: 0; }
.okh-loyalty__feature h4 { font-size: 14px; margin-bottom: 4px; }
.okh-loyalty__feature p { font-size: 12.5px; color: var(--okh-text-muted); }
@media (min-width: 860px) {
  .okh-loyalty__panel { grid-template-columns: 1fr 1.6fr; align-items: center; }
  .okh-loyalty__features { grid-template-columns: repeat(3, 1fr); }
}

/* APP / MOBILE PROMO BANNER */
.okh-appbanner { padding: 10px 0 30px; }
.okh-appbanner__inner {
  position: relative; overflow: hidden; border-radius: var(--okh-radius-lg); padding: 40px 26px; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255,77,31,.25), transparent 55%), var(--okh-bg-raised);
  border: 1px solid var(--okh-border);
}
.okh-appbanner h2 { font-size: 24px; text-transform: uppercase; letter-spacing: .02em; }
.okh-appbanner p { margin-top: 10px; color: var(--okh-text-muted); font-size: 14px; max-width: 440px; margin-left: auto; margin-right: auto; }
.okh-appbanner .okh-btn { margin-top: 20px; }
@media (min-width: 700px) { .okh-appbanner h2 { font-size: 32px; } }

/* REVIEWS */
.okh-reviews { padding: 28px 0; border-top: 1px solid var(--okh-border); }
.okh-reviews__head { text-align: center; margin-bottom: 20px; }
.okh-reviews__head h2 { font-size: 24px; margin-bottom: 6px; }
.okh-reviews__agg { color: var(--okh-accent-2); font-weight: 700; font-size: 14px; }
.okh-reviews__grid { display: grid; gap: 14px; }
.okh-reviews__card { background: var(--okh-bg-raised); border: 1px solid var(--okh-border); border-radius: var(--okh-radius); padding: 18px; }
.okh-reviews__stars { color: var(--okh-accent-2); font-size: 14px; margin-bottom: 8px; }
.okh-reviews__body { font-size: 13.5px; color: #d7d9df; margin-bottom: 12px; }
.okh-reviews__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--okh-text-muted); }
.okh-reviews__more { text-align: center; margin-top: 16px; }
.okh-reviews__more a { color: var(--okh-accent-2); text-decoration: underline; font-size: 13.5px; }
@media (min-width: 700px) { .okh-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .okh-reviews__grid { grid-template-columns: repeat(4, 1fr); } }

/* AUTHOR */
.okh-author { display: flex; gap: 16px; align-items: flex-start; padding: 26px 0; border-top: 1px solid var(--okh-border); }
.okh-author__photo img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--okh-border); }
.okh-author__name { font-size: 15.5px; font-weight: 800; }
.okh-author__role { font-size: 12.5px; color: var(--okh-accent-2); margin: 3px 0 10px; font-weight: 700; }
.okh-author__bio { font-size: 13.5px; color: var(--okh-text-muted); margin-bottom: 10px; max-width: 620px; }
.okh-author__link { font-size: 13px; text-decoration: underline; color: var(--okh-accent-2); }

/* FAQ */
.okh-faq { padding: 28px 0; border-top: 1px solid var(--okh-border); }
.okh-faq h2 { font-size: 24px; margin-bottom: 16px; }
.okh-faq__item { border-bottom: 1px solid var(--okh-border); padding: 14px 0; }
.okh-faq__item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.okh-faq__item summary::-webkit-details-marker { display: none; }
.okh-faq__item summary h3 { font-size: 15px; font-weight: 700; }
.okh-faq__item summary::after { content: "+"; font-size: 20px; color: var(--okh-accent-2); flex-shrink: 0; }
.okh-faq__item[open] summary::after { content: "\2212"; }
.okh-faq__answer { margin-top: 10px; font-size: 13.5px; color: var(--okh-text-muted); }

/* RELATED LINKS */
.okh-related { padding: 26px 0; border-top: 1px solid var(--okh-border); }
.okh-related h2 { font-size: 18px; margin-bottom: 14px; }
.okh-related__list { display: flex; flex-wrap: wrap; gap: 10px; }
.okh-related__list a { font-size: 12.5px; padding: 8px 14px; border-radius: 999px; background: var(--okh-bg-raised); border: 1px solid var(--okh-border); color: var(--okh-text-muted); }
.okh-related__list a:hover { border-color: var(--okh-accent); color: var(--okh-text); }

/* FOOTER — 4 core columns + 1 wide column for the long link groups */
.okh-footer { background: #060607; border-top: 1px solid var(--okh-border); padding: 40px 0 20px; }
.okh-footer__top { display: grid; grid-template-columns: 1fr; gap: 16px; padding-bottom: 24px; }
.okh-footer__brand { grid-column: 1 / -1; }
@media (min-width: 640px) { .okh-footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .okh-footer__top { grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 16px; } .okh-footer__brand { grid-column: auto; } }
.okh-footer__brand, .okh-footer__col {
  background: var(--okh-bg-raised); border: 1px solid var(--okh-border); border-top: 3px solid var(--okh-accent);
  border-radius: var(--okh-radius); padding: 18px 20px;
}
.okh-footer__col:nth-of-type(3) { border-top-color: #8b5cf6; }
.okh-footer__col:nth-of-type(4) { border-top-color: var(--okh-accent-2); }
.okh-footer__col--wide { grid-column: 1 / -1; }
.okh-footer__col-list--2col { column-gap: 24px; }
.okh-footer__col-list--2col li { break-inside: avoid; }
@media (min-width: 600px) { .okh-footer__col-list--2col { column-count: 2; } }
@media (min-width: 900px) { .okh-footer__col-list--2col { column-count: 3; } }
.okh-footer__brand img { max-height: 30px; margin-bottom: 10px; }
.okh-footer__brand p { font-size: 12.5px; color: var(--okh-text-muted); margin-bottom: 12px; max-width: 320px; }
.okh-footer__social-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--okh-text-muted); margin-bottom: 8px; }
.okh-footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.okh-footer__social a { width: 32px; height: 32px; border-radius: 8px; background: var(--okh-bg-soft); border: 1px solid var(--okh-border); display: flex; align-items: center; justify-content: center; }
.okh-footer__social svg { width: 15px; height: 15px; fill: var(--okh-text-muted); }
.okh-footer__social a:hover svg { fill: var(--okh-accent-2); }
.okh-footer__col h3 { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; color: var(--okh-text); }
.okh-footer__col ul li { margin-bottom: 7px; padding-left: 14px; position: relative; }
.okh-footer__col ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--okh-accent); }
.okh-footer__col a { font-size: 12.5px; color: var(--okh-text-muted); }
.okh-footer__col a:hover { color: var(--okh-text); }
.okh-footer__social-col-list { display: grid; gap: 8px; }
.okh-footer__social-col-list li { display: flex; align-items: center; gap: 8px; padding-left: 0; }
.okh-footer__social-col-list li::before { display: none; }
.okh-footer__social-col-list svg { width: 15px; height: 15px; color: var(--okh-text-muted); flex-shrink: 0; }
.okh-footer__support p { font-size: 12.5px; color: var(--okh-text-muted); margin-bottom: 12px; }
.okh-footer__support .okh-btn { width: 100%; }
.okh-footer__pay { padding: 20px 0; border-top: 1px solid var(--okh-border); }
.okh-footer__pay-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--okh-text-muted); margin-bottom: 10px; }
.okh-footer__pay-grid { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.okh-footer__pay-grid img, .okh-footer__pay-grid svg { height: 26px; width: auto; max-width: 100%; object-fit: contain; flex-shrink: 0; }
.okh-footer__age { display: flex; align-items: flex-start; gap: 12px; padding: 18px 0; border-top: 1px solid var(--okh-border); }
.okh-footer__age span { font-size: 11.5px; line-height: 1.5; color: var(--okh-text-muted); }
.okh-footer__age strong { color: var(--okh-text); }
.okh-footer__age a { color: var(--okh-accent-2); }
.okh-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--okh-border); font-size: 12px; color: var(--okh-text-muted); }
.okh-footer__legal-links { display: flex; gap: 6px; flex-wrap: wrap; }
.okh-footer__legal-links a { padding: 4px 6px; }
.okh-footer__legal-links a:hover { color: var(--okh-text); }

/* SUPPORT TAB — fixed vertical tab, echoes the reference's left-edge support rail */
.okh-support-tab {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  z-index: 30; background: var(--okh-bg-raised); border: 1px solid var(--okh-border); border-left: none;
  border-radius: 0 10px 10px 0; padding: 14px 8px; display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .05em; color: var(--okh-text-muted);
}
.okh-support-tab:hover { color: var(--okh-text); border-color: var(--okh-accent); }
.okh-support-tab svg { width: 16px; height: 16px; transform: rotate(180deg); color: var(--okh-accent); }
@media (max-width: 640px) { .okh-support-tab { display: none; } }

/* FAB */
.okh-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 30; width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(180deg, var(--okh-accent-hover), var(--okh-accent)); color: #fff; display: flex;
  align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(255,77,31,.5); font-size: 22px;
}
@media (min-width: 640px) { .okh-fab { display: none; } }

/* COOKIES BAR */
.okh-cookies {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: var(--okh-bg-raised);
  border-top: 1px solid var(--okh-border); padding: 14px 20px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
}
.okh-cookies p { font-size: 12.5px; color: var(--okh-text-muted); max-width: 640px; }
.okh-cookies a { color: var(--okh-accent-2); text-decoration: underline; }
.okh-cookies__btn { background: var(--okh-accent); color: #fff; font-weight: 800; font-size: 12.5px; padding: 9px 18px; border-radius: 8px; text-transform: uppercase; letter-spacing: .03em; }
body:not(.is-cookies-shown) .okh-cookies { display: none; }

/* RESPONSIVE base padding */
@media (max-width: 640px) {
  .okh-container { padding: 0 16px; }
  .okh-offers__head h2, .okh-content h2, .okh-reviews__head h2, .okh-faq h2 { font-size: 21px; }
}

/* Compact header CTA on small screens so it never gets cut off next to the burger */
@media (max-width: 480px) {
  .okh-header__inner { padding: 10px 14px; gap: 10px; }
  .okh-header__logo img { height: 28px; }
  .okh-header__actions { gap: 6px; }
  .okh-header__actions .okh-btn--accent { padding: 7px 10px; font-size: 9.5px; letter-spacing: .01em; border-radius: 8px; }
}
