:root {
  --hy-black: #070708;
  --hy-panel: #111216;
  --hy-panel-2: #181a20;
  --hy-line: #343740;
  --hy-yellow: #f3ef00;
  --hy-yellow-soft: #fff96a;
  --hy-cyan: #48d9ff;
  --hy-white: #f7f7f2;
  --hy-muted: #b9bdc7;
  --hy-danger: #ff5d5d;
  --hy-width: 1120px;
}

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body.hyper-v2 {
  margin: 0 !important;
  padding-top: 0 !important;
  background: var(--hy-black) !important;
  color: var(--hy-white) !important;
  font-family: "Segoe UI", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
}
body.hyper-v2 *, body.hyper-v2 *::before, body.hyper-v2 *::after { box-sizing: border-box; }
body.hyper-v2 :focus-visible { outline: 3px solid var(--hy-cyan) !important; outline-offset: 3px; }
body.hyper-v2 img, body.hyper-v2 video, body.hyper-v2 iframe { max-width: 100%; }

/* Shared header */
.rc-hyper-head {
  position: sticky !important;
  inset: 0 0 auto !important;
  z-index: 10000 !important;
  width: 100% !important;
  background: rgba(7, 7, 8, .98) !important;
  border-bottom: 1px solid #292b31 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .32) !important;
  color: var(--hy-white) !important;
  isolation: isolate !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.rc-hyper-inner {
  width: min(100% - 36px, 1360px) !important;
  min-height: 76px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 10px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.rc-hyper-logo { flex: 0 0 166px !important; display: flex !important; align-items: center !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }
.rc-hyper-logo img {
  display: block !important;
  width: 166px !important;
  height: 52px !important;
  max-width: 166px !important;
  object-fit: contain !important;
  margin: 0 !important;
}
.rc-hyper-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 17px !important;
  margin: 0 auto !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.rc-hyper-nav a, .rc-hyper-menu a {
  color: #e7e8ec !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 780 !important;
  line-height: 1.2 !important;
}
.rc-hyper-nav a:hover, .rc-hyper-nav a[aria-current="page"], .rc-hyper-menu a:hover { color: var(--hy-yellow) !important; }
.rc-hyper-actions { display: flex !important; flex: 0 0 auto !important; align-items: center !important; gap: 9px !important; margin: 0 !important; opacity: 1 !important; visibility: visible !important; }
.rc-hyper-btn, .hyper-cta {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 18px !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transform: skew(-4deg) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}
.rc-hyper-btn span, .hyper-cta span { transform: skew(4deg) !important; }
.rc-hyper-btn:hover, .hyper-cta:hover { transform: skew(-4deg) translateY(-2px) !important; }
.rc-hyper-primary, .hyper-cta.primary { background: var(--hy-yellow) !important; color: #080808 !important; box-shadow: 0 8px 24px rgba(243, 239, 0, .18) !important; }
.rc-hyper-secondary, .hyper-cta.secondary { background: #15161a !important; border-color: #555862 !important; color: #fff !important; }
.rc-hyper-menu-button {
  display: none;
  width: 46px;
  min-width: 46px;
  height: 46px;
  border: 1px solid #4b4e57;
  border-radius: 5px;
  background: #15161a;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: 0 0 auto;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.rc-hyper-menu-button svg { width: 23px; height: 23px; stroke: currentColor; }
.rc-hyper-menu {
  display: none;
  position: fixed;
  z-index: 10001;
  top: 76px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  padding: 18px max(18px, calc((100vw - 1120px) / 2));
  background: #0d0e11;
  border-bottom: 1px solid var(--hy-line);
  box-shadow: 0 20px 35px rgba(0, 0, 0, .45);
}
.rc-hyper-menu[data-open="true"] { display: block; }
.rc-hyper-menu nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.rc-hyper-menu a { display: flex; align-items: center; min-height: 48px; padding: 0 15px; border: 1px solid #2f323a; background: #15161a; }
.rc-hyper-menu a[aria-current="page"] { border-color: var(--hy-yellow); color: var(--hy-yellow) !important; }
body.hyper-menu-open { overflow: hidden !important; }

/* Existing content polish */
body.hyper-v2 .page-content,
body.hyper-v2 .page-section,
body.hyper-v2 .page-text,
body.hyper-v2 .main,
body.hyper-v2 main { background-color: transparent !important; color: var(--hy-white) !important; }
body.hyper-v2 .page-content { padding-block: clamp(44px, 6vw, 86px) !important; }
body.hyper-v2 .page-content > .container,
body.hyper-v2 .page-section > .container,
body.hyper-v2 .page-text,
body.hyper-v2 .entry-content { width: min(100% - 36px, var(--hy-width)) !important; max-width: var(--hy-width) !important; margin-inline: auto !important; }
body.hyper-v2 .page-text { font-size: 17px !important; }
body.hyper-v2 h1, body.hyper-v2 h2, body.hyper-v2 h3, body.hyper-v2 h4 { color: var(--hy-white) !important; font-family: "Arial Black", "Segoe UI", sans-serif !important; line-height: 1.12 !important; letter-spacing: -.025em !important; }
body.hyper-v2 .page-content h1 { max-width: 980px; margin: 0 auto clamp(26px, 4vw, 44px) !important; font-size: clamp(36px, 4.6vw, 58px) !important; text-wrap: balance; }
body.hyper-v2 .page-text h2, body.hyper-v2 .hyper-expansion h2, body.hyper-v2 .hyper-story h2 {
  position: relative;
  margin: clamp(52px, 7vw, 86px) 0 20px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid #343740;
  font-size: clamp(27px, 3.5vw, 42px) !important;
}
body.hyper-v2 .page-text h2::before, body.hyper-v2 .hyper-expansion h2::before, body.hyper-v2 .hyper-story h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 76px;
  height: 3px;
  background: var(--hy-yellow);
}
body.hyper-v2 p, body.hyper-v2 li, body.hyper-v2 td { color: #d4d6dc !important; }
body.hyper-v2 p { margin-block: 0 18px !important; }
body.hyper-v2 a:not(.rc-hyper-btn):not(.hyper-cta):not(.sxh-cta-1):not(.sxh-cta-2) { color: var(--hy-yellow); }
body.hyper-v2 ul, body.hyper-v2 ol { padding-left: 1.3em; }
body.hyper-v2 li::marker { color: var(--hy-yellow); }
body.hyper-v2 table { width: 100% !important; border-collapse: collapse !important; background: #111216 !important; color: #f4f4f4 !important; }
body.hyper-v2 th { background: #202229 !important; color: var(--hy-yellow) !important; font-weight: 850 !important; }
body.hyper-v2 th, body.hyper-v2 td { border: 1px solid #3a3d46 !important; padding: 13px 15px !important; text-align: left !important; }
body.hyper-v2 tbody tr:nth-child(even) { background: #15171c !important; }
body.hyper-v2 .footer, body.hyper-v2 footer { background: #050506 !important; color: #c7cad1 !important; border-top-color: #2c2e34 !important; }

/* WordPress page-item surfaces use the brand yellow: every descendant must use dark ink. */
body.hyper-v2.body-page-item .page-item,
body.hyper-v2.body-page-item .page-item :is(h1,h2,h3,h4,p,a,b,strong,span,div,small,svg) {
  color: #090a0b !important;
}
body.hyper-v2.body-page-item .page-item svg { stroke: currentColor !important; }
body.hyper-v2.body-page-item .page-item a:hover { color: #343300 !important; }
body.hyper-v2 .advant-element { min-height: 190px; display: flex; flex-direction: column; justify-content: center; border: 1px solid #d3d000; }
body.hyper-v2 .advant-element p { max-width: 230px; margin-inline: auto !important; font-weight: 720 !important; }
body.hyper-v2 .faq-item { border: 1px solid #d3d000; }
body.hyper-v2 .author-section-content { border: 1px solid #d3d000; }
body.hyper-v2 .btn-danger { background: var(--hy-yellow) !important; border-color: var(--hy-yellow) !important; color: #090a0b !important; }

/* Keep each existing page-specific hero but move it into Hyper's identity. */
body.hyper-v2 .screen { background: radial-gradient(circle at 78% 20%, rgba(243,239,0,.15), transparent 34%), #090a0c !important; }
body.hyper-v2.hyper-route-home .screen { padding: 30px 0 36px !important; }
body.hyper-v2.hyper-route-home .screen > .container { width: min(100% - 36px, 1180px) !important; max-width: 1180px !important; margin-inline: auto !important; }
body.hyper-v2.hyper-route-home .screen-content {
  position: relative !important;
  min-height: 470px !important;
  padding: clamp(34px, 5vw, 62px) !important;
  overflow: hidden !important;
  border: 1px solid #4a4d27 !important;
  border-top: 3px solid var(--hy-yellow) !important;
  border-radius: 6px !important;
  background: linear-gradient(105deg, #f3ef00 0%, #e6e200 53%, #a6a300 53.2%, #17191e 53.4%, #090a0c 100%) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.36) !important;
}
body.hyper-v2.hyper-route-home .screen-content .offer { max-width: 480px !important; position: relative !important; z-index: 2 !important; }
body.hyper-v2.hyper-route-home .screen .offer-title {
  margin-bottom: 20px !important;
  color: #090a0b !important;
  font-family: "Arial Black", "Segoe UI", sans-serif !important;
  font-size: clamp(46px, 5vw, 72px) !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}
body.hyper-v2.hyper-route-home .screen .offer-desc { max-width: 430px; color: #252402 !important; font-size: clamp(17px, 1.65vw, 21px) !important; font-weight: 750 !important; line-height: 1.45 !important; }
body.hyper-v2.hyper-route-home .screen .offer-btn { min-height: 52px !important; background: #090a0b !important; color: var(--hy-yellow) !important; border: 1px solid #090a0b !important; box-shadow: none !important; }
body.hyper-v2.hyper-route-home .screen .offer-btn:hover { background: #202229 !important; color: #fff96a !important; }
body.hyper-v2.hyper-route-home .screen-image { position: relative !important; z-index: 2 !important; width: 43% !important; }
body.hyper-v2 .sxh, body.hyper-v2 .dl-hero {
  width: min(100% - 36px, 1180px) !important;
  margin: 28px auto 0 !important;
  border: 1px solid #3b3e45 !important;
  border-top: 3px solid var(--hy-yellow) !important;
  border-radius: 6px !important;
  background: radial-gradient(circle at 80% 25%, rgba(72,217,255,.09), transparent 26%), linear-gradient(120deg, #0c0d10, #191b20) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.38) !important;
}
body.hyper-v2 .sxh-h1, body.hyper-v2 .dl-hero h1 { color: #fff !important; }
body.hyper-v2 .sxh .accent, body.hyper-v2 .sxh-badge { color: var(--hy-yellow) !important; }
body.hyper-v2 .sxh-mockup > *, body.hyper-v2 .dl-mock { border-color: var(--hy-yellow) !important; background:linear-gradient(145deg,#17191e,#08090b) !important; }
body.hyper-v2 .sxh { background:linear-gradient(135deg,#111216,#191b20 55%,#0a0b0d) !important; border-color:#44471e !important; }
body.hyper-v2 .hpm-vipcard, body.hyper-v2 .hpm-medal-hex { background:linear-gradient(135deg,#24262c,#0b0c0f) !important; border-color:var(--hy-yellow) !important; }
body.hyper-v2 .hpm-medal-hex { color: var(--hy-yellow) !important; }
body.hyper-v2 .sxh-cta-1 { background: var(--hy-yellow) !important; color: #090909 !important; }
body.hyper-v2 .sxh-cta-2 { border-color: #666a74 !important; color: #fff !important; background: #15171c !important; }
body.hyper-v2 .hyper-winners { background: #111216 !important; border-color: #3b3d44 !important; }
body.hyper-v2 .hyper-winner-card { background: #181a20 !important; border-color: #3a3d46 !important; }
body.hyper-v2 .hyper-winner-amount, body.hyper-v2 .hyper-winners-head { color: var(--hy-yellow) !important; }
.hyper-control-hub {
  width: min(100% - 36px, 1100px);
  margin: 34px auto 58px;
  padding: 28px;
  border: 1px solid #3a3d45;
  background: linear-gradient(145deg, #111216, #090a0c);
  border-top: 3px solid var(--hy-yellow);
  box-shadow: 0 4px 8px rgba(0,0,0,.32);
}
.hyper-control-head { max-width: 760px; margin-bottom: 22px; }
.hyper-control-head > span { color: var(--hy-yellow); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hyper-control-head h2 { margin: 7px 0 8px; font-size: clamp(28px,4vw,44px); line-height: 1.04; }
.hyper-control-head p { margin: 0 !important; }
.hyper-control-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.hyper-control-grid a { min-height:124px; padding:19px; border:1px solid #353841; background:#17191e; color:#fff; text-decoration:none; }
.hyper-control-grid a:hover { border-color:var(--hy-yellow); transform:translateY(-2px); }
.hyper-control-grid b { display:block; color:var(--hy-yellow); margin-bottom:7px; }
.hyper-control-grid span { display:block; color:#c4c7cf; font-size:14px; line-height:1.5; }
body.hyper-v2 .dl-hero { border-top:3px solid var(--hy-yellow) !important; }
body.hyper-v2 .dl-cta-prim { background:var(--hy-yellow) !important; color:#080808 !important; box-shadow:0 9px 24px rgba(243,239,0,.18) !important; }
body.hyper-v2 .dl-cta-sec { border-color:#5b5f68 !important; background:#15171c !important; color:#fff !important; }
body.hyper-v2 .dl-stats > div, body.hyper-v2 .dl-phone-screen, body.hyper-v2 .dl-howto-step { background:#15171c !important; border-color:#3b3e47 !important; }
body.hyper-v2 .dl-stats b, body.hyper-v2 .dl-phone-name, body.hyper-v2 .dl-phone-pct, body.hyper-v2 .dl-howto h2, body.hyper-v2 .dl-howto-step strong { color:var(--hy-yellow) !important; }
body.hyper-v2 .dl-phone-logo, body.hyper-v2 .dl-phone-bar { background:var(--hy-yellow) !important; color:#080808 !important; }
body.hyper-v2 .dl-phone-rate, body.hyper-v2 .dl-phone-installing { color:#d7d9df !important; }
body.hyper-v2 .dl-phone { border-color:var(--hy-yellow) !important; box-shadow:0 0 0 4px rgba(243,239,0,.12),0 22px 60px #000 !important; }
body.hyper-v2 .dl-mock-tunnel { background:repeating-radial-gradient(circle at 50% 50%,transparent 0 34px,rgba(243,239,0,.10) 36px 38px,transparent 40px 72px) !important; }
body.hyper-v2 .hyper-speed-mock { background:linear-gradient(145deg,#181a20,#070708) !important; border-color:var(--hy-yellow) !important; }
body.hyper-v2 .hsm-chip-1 { background:#24262c !important; color:#fff !important; }
body.hyper-v2 .hsm-chip-2 { background:var(--hy-yellow) !important; color:#080808 !important; }
body.hyper-v2 .hsm-chip-3 { background:var(--hy-cyan) !important; color:#071014 !important; }
body.hyper-v2 .hsm-bonus { background:var(--hy-yellow) !important; color:#080808 !important; }
body.hyper-v2 .dl-howto { background:linear-gradient(135deg,rgba(243,239,0,.07),rgba(72,217,255,.04)) !important; border-color:#555820 !important; }
body.hyper-v2 .hy-btn.primary, body.hyper-v2 .hy-btn.primary span { background:var(--hy-yellow) !important; color:#080808 !important; }
body.hyper-v2 .slots-list { gap: 16px !important; }
body.hyper-v2 .slot-element { border: 1px solid #2d3037; border-radius: 6px !important; overflow: hidden; background: #111216; }
body.hyper-v2 .slot-element:hover { border-color: var(--hy-yellow); transform: translateY(-2px); transition: .18s ease; }
body.hyper-v2 .hyper-strip { background:#15171c !important; border:1px solid #3b3e46 !important; border-radius:6px !important; }
body.hyper-v2 .hyper-strip-cell b { color:var(--hy-yellow) !important; }
body.hyper-v2 .hyper-strip-cell span { color:#d7d9df !important; }

/* Native brand copy added during the search expansion */
.hyper-expansion, .hyper-story { width: min(100% - 36px, var(--hy-width)); margin: 0 auto; padding: 12px 0 78px; }
.hyper-expansion { border-top: 1px solid #30323a; }
.hyper-expansion-lead { max-width: 880px; margin: 0 auto 62px; padding: 54px 0 30px; text-align: center; }
.hyper-expansion-lead h2 { margin-top: 0 !important; }
.hyper-expansion-lead p { margin: 18px auto 0 !important; color: #d7d9df !important; font-size: 18px !important; line-height: 1.7 !important; }
.hyper-native-chapter { max-width: 960px; margin: 0 auto; padding: 42px 0 46px; border-top: 1px solid #30323a; }
.hyper-native-chapter:first-of-type { border-top-color: #6d6b20; }
.hyper-native-chapter h2 { max-width: 840px; margin: 0 0 24px !important; text-wrap: balance; }
.hyper-native-chapter p { max-width: 78ch; margin: 0 0 20px !important; color: #d7d9df !important; font-size: 17px !important; line-height: 1.78 !important; }
.hyper-native-chapter p:first-of-type { color: #fff !important; font-size: 19px !important; line-height: 1.68 !important; }
.hyper-native-chapter p:last-child { margin-bottom: 0 !important; color: #bfc2ca !important; }
.hyper-decision-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 960px; margin: 28px auto 0; padding: 28px 30px; border: 1px solid #555820; border-left: 4px solid var(--hy-yellow); background: #111216; }
.hyper-decision-band > div { max-width: 680px; }
.hyper-decision-band span { color: var(--hy-yellow); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hyper-decision-band h2 { margin: 8px 0 10px !important; font-size: clamp(28px, 3vw, 42px) !important; }
.hyper-decision-band p { margin: 0 !important; color: #d7d9df !important; }
.hyper-author {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(100% - 36px, 960px);
  margin: 32px auto 70px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #3a3d45;
  border-top: 4px solid var(--hy-yellow);
  background: #111216;
}
.hyper-author-photo { width: 152px; height: 152px; border: 2px solid #64671e; border-radius: 50%; object-fit: cover; }
.hyper-author-label { color: var(--hy-yellow); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hyper-author h2 { margin: 7px 0 4px !important; font-size: clamp(30px, 3.5vw, 44px) !important; }
.hyper-author-role { margin: 0 0 13px !important; color: #fff !important; font-weight: 800; }
.hyper-author-copy > p:not(.hyper-author-role) { max-width: 70ch; margin: 0 0 20px !important; color: #cfd2d8 !important; line-height: 1.65 !important; }
.hyper-author-link { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 18px; border: 1px solid var(--hy-yellow); background: var(--hy-yellow); color: #090a0b !important; font-weight: 900; text-decoration: none !important; }
.hyper-author-link:hover { background: #fff; border-color: #fff; color: #090a0b !important; }
.hyper-site-faq { width: min(100% - 36px, 960px); margin: 0 auto; padding: 42px 0 88px; border-top: 1px solid #30323a; }
.hyper-faq-head { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.hyper-faq-head > span { color: var(--hy-yellow); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hyper-faq-head h2 { margin: 9px 0 14px !important; font-size: clamp(34px, 4.3vw, 56px) !important; text-wrap: balance; }
.hyper-faq-head p { margin: 0 auto !important; color: #cfd2d8 !important; font-size: 17px !important; line-height: 1.65 !important; }
.hyper-faq-list { display: grid; gap: 10px; }
.hyper-faq-item { margin: 0; border: 1px solid #3a3d45; background: #15171c; }
.hyper-faq-item[open] { border-color: #66691f; background: #111216; }
.hyper-faq-item summary { position: relative; min-height: 64px; padding: 19px 58px 19px 20px; color: #fff; cursor: pointer; font-size: 18px; font-weight: 850; line-height: 1.45; list-style: none; }
.hyper-faq-item summary::-webkit-details-marker { display: none; }
.hyper-faq-item summary::after { content: "+"; position: absolute; top: 14px; right: 20px; color: var(--hy-yellow); font-size: 28px; font-weight: 500; }
.hyper-faq-item[open] summary::after { content: "–"; }
.hyper-faq-item > div { padding: 0 20px 21px; }
.hyper-faq-item p { max-width: 76ch; margin: 0 !important; color: #cfd2d8 !important; line-height: 1.7 !important; }
.hyper-kicker { color: var(--hy-yellow) !important; font-size: 13px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hyper-chapter { margin: 0 0 30px; }
.hyper-visual {
  margin: 24px 0 0;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid #3a3d45;
  border-top: 3px solid var(--hy-yellow);
  background: #111216;
  box-shadow: 0 4px 8px rgba(0,0,0,.26);
}
.hyper-visual-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.hyper-signal { min-height: 116px; padding: 16px; background: #1a1c22; border: 1px solid #343740; }
.hyper-signal b { display: block; margin-bottom: 7px; color: var(--hy-yellow); font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.hyper-signal span { display: block; color: #c9ccd3; font-size: 14px; line-height: 1.48; }
.hyper-query { color: #fff; font-weight: 750; }
.hyper-source-note { margin-top: 26px; padding: 17px 19px; border: 1px solid #474a53; background: #16181d; color: #d8dbe1; font-size: 15px; }
.hyper-intent-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.hyper-intent-grid details { margin:0; border:1px solid #383b43; background:#181a20; }
.hyper-intent-grid summary { min-height:58px; padding:15px 44px 15px 16px; cursor:pointer; color:#fff; font-weight:790; line-height:1.32; position:relative; }
.hyper-intent-grid summary::before { content:"+"; position:absolute; right:16px; top:13px; color:var(--hy-yellow); font-size:24px; }
.hyper-intent-grid details[open] summary::before { content:"–"; }
.hyper-intent-grid details p { padding:0 16px 16px; margin:0 !important; color:#c8cbd2 !important; font-size:15px; line-height:1.5; }
.hyper-intent-grid details.gem { border-color:#76742a; }
.hyper-intent-grid details.gem summary::after { content:"Gem"; display:inline-block; margin-left:8px; padding:2px 6px; color:#080808; background:var(--hy-yellow); font-size:10px; font-weight:950; letter-spacing:.08em; text-transform:uppercase; vertical-align:2px; }

/* Sports page */
.hyper-sports-hero { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid #2d3036; }
.hyper-sports-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.hyper-sports-hero::before { content:""; position:absolute; z-index:1; inset:0; background: linear-gradient(90deg, rgba(5,5,6,.97) 0%, rgba(5,5,6,.88) 38%, rgba(5,5,6,.18) 72%); }
.hyper-sports-hero::after { content:""; position:absolute; inset:auto 0 0; height:130px; background:linear-gradient(transparent, var(--hy-black)); }
.hyper-sports-copy { position: relative; z-index: 1; width: min(100% - 36px, var(--hy-width)); margin: 0 auto; padding: 78px 0 120px; }
.hyper-sports-copy > * { max-width: 690px; }
.hyper-sports-copy h1 { margin: 12px 0 22px !important; font-size: clamp(48px, 6.4vw, 82px) !important; font-style: italic; text-transform: uppercase; text-wrap: balance; }
.hyper-sports-copy p { color: #e5e6e9 !important; font-size: clamp(18px, 2.2vw, 23px); }
.hyper-hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.hyper-trust-strip { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; width:min(100% - 36px,var(--hy-width)); margin:-48px auto 70px; position:relative; z-index:2; }
.hyper-trust-strip div { padding:18px; background:#15171c; border:1px solid #3b3e46; }
.hyper-trust-strip b { display:block; color:var(--hy-yellow); margin-bottom:4px; }
.hyper-market-board { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; }
.hyper-market-board div { padding:18px 14px; min-height:112px; background:#1b1d22; border-top:4px solid var(--hy-yellow); }
.hyper-market-board b { display:block; margin-bottom:6px; color:#fff; }
.hyper-market-board span { color:#bfc2ca; font-size:14px; }
.hyper-story details { border:1px solid #383b43; background:#121318; margin:10px 0; }
.hyper-story summary { cursor:pointer; padding:17px 19px; font-weight:800; color:#fff; }
.hyper-story details p { padding:0 19px 18px; }

/* Image/Cookie polish */
body.hyper-v2 img[loading="lazy"] { content-visibility: auto; }
body.hyper-v2 .cookieadmin_modal, body.hyper-v2 .cookieadmin_banner, body.hyper-v2 [class*="cookieadmin"] { font-family: "Segoe UI", Arial, sans-serif !important; }
body.hyper-v2 .cookieadmin_law_container {
  width: min(430px, calc(100vw - 24px)) !important;
  left: 12px !important;
  right: auto !important;
  top: auto !important;
  bottom: 12px !important;
  z-index: 10020 !important;
}
body.hyper-v2 .cookieadmin_consent_inside {
  max-height: min(720px, calc(100vh - 24px));
  overflow-y: auto;
  padding: 22px !important;
  color: var(--hy-white) !important;
  background: #111216 !important;
  border: 1px solid #4a4d27 !important;
  border-top: 3px solid var(--hy-yellow) !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.42) !important;
}
body.hyper-v2 #cookieadmin_notice_title {
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}
body.hyper-v2 .cookieadmin_notice_con { padding: 0 !important; font-size: 15px !important; }
body.hyper-v2 #cookieadmin_notice,
body.hyper-v2 #cookieadmin_notice b { color: #d7d9df !important; line-height: 1.55 !important; }
body.hyper-v2 #cookieadmin_notice b { color: #fff !important; }
body.hyper-v2 .cookieadmin_consent_btns { display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
body.hyper-v2 [class*="cookieadmin"] button { min-height: 46px !important; border-radius: 4px !important; font-weight: 850 !important; }
body.hyper-v2 .cookieadmin_btn { width: 100%; margin: 0 !important; padding: 10px 14px !important; }
body.hyper-v2 .cookieadmin_reject_btn {
  background: #181a20 !important;
  border: 1px solid #6d707a !important;
  color: #fff !important;
}
body.hyper-v2 .cookieadmin_accept_btn,
body.hyper-v2 .cookieadmin_save_btn {
  background: var(--hy-yellow) !important;
  border: 1px solid var(--hy-yellow) !important;
  color: #090a0b !important;
}
body.hyper-v2 .cookieadmin-poweredby { margin-top: 13px !important; }
body.hyper-v2 .cookieadmin-poweredby a,
body.hyper-v2 .cookieadmin-poweredby span { color: #c7cad1 !important; }
body.hyper-v2 .cookieadmin_cookie_modal {
  color: var(--hy-white) !important;
  background: #111216 !important;
  border: 1px solid #4a4d27 !important;
  border-top: 3px solid var(--hy-yellow) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.42) !important;
}
body.hyper-v2 .cookieadmin_cookie_modal :is(p,span,label,div,strong,b,h2,h3) { color: #d7d9df !important; }
body.hyper-v2 .cookieadmin_cookie_modal :is(.cookieadmin_preference_title,.cookieadmin_header label,strong,b) { color: #fff !important; }
body.hyper-v2 .cookieadmin_mod_head,
body.hyper-v2 .cookieadmin_wrapper,
body.hyper-v2 .cookieadmin_modal_footer,
body.hyper-v2 .cookieadmin_types { border-color: #3a3d45 !important; }
body.hyper-v2 .cookieadmin_consent_settings,
body.hyper-v2 .cookieadmin-cookie-card { background: #181a20 !important; color: #d7d9df !important; }
body.hyper-v2 .cookieadmin_close_pref { color: #fff !important; }
body.hyper-v2 .cookieadmin_showmore,
body.hyper-v2 .cookieadmin_remark { color: var(--hy-yellow) !important; }
body.hyper-v2 .cookieadmin_re_consent { background: var(--hy-yellow) !important; border: 1px solid #090a0b !important; }

/* The legacy prize wheel obscured headings and controls on every WordPress route. */
body.hyper-v2 .wheel-open-btn,
body.hyper-v2 .wheel,
body.hyper-v2 .wheel-modal,
body.hyper-v2 .wheel-modal-bg { display: none !important; visibility: hidden !important; pointer-events: none !important; }

/* Utility pages get a compact, readable hero without changing their original copy. */
body.hyper-route-cookie-policy .page-content h1,
body.hyper-route-privacy-policy .page-content h1,
body.hyper-route-responsible-gambling .page-content h1,
body.hyper-route-terms-conditions .page-content h1 {
  width: 100% !important;
  max-width: none !important;
  min-height: 190px;
  padding: clamp(28px, 5vw, 56px) !important;
  display: flex;
  align-items: flex-end;
  border: 1px solid #3a3d45;
  border-top: 3px solid var(--hy-yellow);
  background: radial-gradient(circle at 88% 20%, rgba(243,239,0,.16), transparent 30%), linear-gradient(120deg,#111216,#090a0c);
  box-shadow: 0 4px 8px rgba(0,0,0,.28);
}

@media (max-width: 1210px) {
  .rc-hyper-nav { display: none !important; }
  .rc-hyper-menu-button { display: inline-flex !important; }
  .rc-hyper-actions { margin-left: auto !important; }
}
@media (max-width: 760px) {
  .rc-hyper-inner { width: min(100% - 24px, 1360px) !important; min-height: 68px !important; gap: 8px !important; }
  .rc-hyper-logo { flex-basis: 122px !important; }
  .rc-hyper-logo img { width: 122px !important; height: 42px !important; }
  .rc-hyper-menu { top: 68px; max-height: calc(100vh - 68px); padding: 12px; }
  .rc-hyper-menu nav { grid-template-columns: 1fr; }
  .rc-hyper-secondary { display: none !important; }
  .rc-hyper-primary { min-height: 44px !important; padding-inline: 13px !important; font-size: 13px !important; }
  .rc-hyper-menu-button { width: 44px; min-width: 44px; height: 44px; }
  .hyper-control-hub { width:min(100% - 24px,1100px); padding:20px; }
  .hyper-control-grid { grid-template-columns:1fr; }
  body.hyper-v2 .screen { padding-top: 26px !important; }
  body.hyper-v2.hyper-route-home .screen { padding: 18px 0 24px !important; }
  body.hyper-v2.hyper-route-home .screen > .container { width: min(100% - 24px, 1180px) !important; }
  body.hyper-v2.hyper-route-home .screen-content {
    min-height: 0 !important;
    padding: 34px 22px 28px !important;
    background: linear-gradient(180deg, #f3ef00 0%, #e8e400 47%, #a6a300 47.2%, #17191e 47.5%, #090a0c 100%) !important;
  }
  body.hyper-v2.hyper-route-home .screen-content .offer { max-width: none !important; margin: 0 0 66px !important; text-align: left !important; }
  body.hyper-v2.hyper-route-home .screen .offer-title { font-size: clamp(42px, 13vw, 56px) !important; }
  body.hyper-v2.hyper-route-home .screen .offer-desc { font-size: 17px !important; }
  body.hyper-v2.hyper-route-home .screen-image { width: 100% !important; }
  body.hyper-v2.hyper-route-home .hyper-speed-mock { min-height: 300px !important; }
  body.hyper-v2 .sxh, body.hyper-v2 .dl-hero { width: min(100% - 24px, 1180px) !important; margin-top: 18px !important; }
  body.hyper-v2 .page-content > .container, body.hyper-v2 .page-section > .container, body.hyper-v2 .page-text, body.hyper-v2 .entry-content, .hyper-expansion, .hyper-story { width: min(100% - 28px, var(--hy-width)) !important; }
  body.hyper-v2 .page-content h1 { font-size: clamp(34px, 10vw, 48px) !important; }
  body.hyper-route-cookie-policy .page-content h1,
  body.hyper-route-privacy-policy .page-content h1,
  body.hyper-route-responsible-gambling .page-content h1,
  body.hyper-route-terms-conditions .page-content h1 { min-height: 160px; padding: 26px 22px !important; font-size: clamp(32px, 10vw, 43px) !important; }
  body.hyper-v2 .page-text h2, body.hyper-v2 .hyper-expansion h2, body.hyper-v2 .hyper-story h2 { font-size: 29px !important; margin-top: 50px !important; }
  .hyper-expansion-lead { margin-bottom: 34px; padding: 38px 0 18px; text-align: left; }
  .hyper-expansion-lead h2, .hyper-native-chapter h2 { margin-top: 0 !important; }
  .hyper-native-chapter { padding: 34px 0 38px; }
  .hyper-native-chapter p, .hyper-native-chapter p:first-of-type { font-size: 16px !important; line-height: 1.72 !important; }
  .hyper-decision-band { align-items: stretch; flex-direction: column; padding: 22px 20px; }
  .hyper-decision-band h2 { margin-top: 8px !important; }
  .hyper-decision-band .hyper-cta { width: 100%; }
  .hyper-author { grid-template-columns: 1fr; width: min(100% - 28px, 960px); margin-bottom: 48px; padding: 24px 20px; text-align: left; }
  .hyper-author-photo { width: 112px; height: 112px; }
  .hyper-author h2 { margin-top: 7px !important; }
  .hyper-author-link { width: 100%; }
  .hyper-site-faq { width: min(100% - 28px, 960px); padding: 34px 0 64px; }
  .hyper-faq-head { text-align: left; }
  .hyper-faq-head h2 { margin-top: 8px !important; font-size: 33px !important; }
  .hyper-faq-head p { font-size: 16px !important; }
  .hyper-faq-item summary { min-height: 58px; padding: 17px 48px 17px 16px; font-size: 16px; }
  .hyper-faq-item summary::after { right: 15px; }
  .hyper-faq-item > div { padding: 0 16px 18px; }
  .hyper-visual-grid, .hyper-trust-strip, .hyper-intent-grid { grid-template-columns: 1fr; }
  .hyper-market-board { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hyper-sports-hero { min-height: 650px; }
  .hyper-sports-hero::before { background: linear-gradient(180deg, rgba(5,5,6,.86) 0%, rgba(5,5,6,.7) 45%, rgba(5,5,6,.97) 100%); }
  .hyper-sports-hero > img { object-position:68% center; }
  .hyper-sports-copy { align-self:end; padding:260px 0 90px; }
  .hyper-sports-copy h1 { font-size: clamp(44px, 15vw, 65px) !important; }
  .hyper-trust-strip { margin-top:-24px; }
  body.hyper-v2 table { display:block; overflow-x:auto; white-space:nowrap; }
}
@media (min-width: 761px) and (max-width: 1000px) {
  body.hyper-v2.hyper-route-home .screen-content { min-height: 440px !important; padding: 42px !important; }
  body.hyper-v2.hyper-route-home .screen-content .offer { width: 47% !important; }
  body.hyper-v2.hyper-route-home .screen-image { width: 43% !important; }
  body.hyper-v2.hyper-route-home .hyper-speed-mock { min-height: 310px !important; }
}
@media (max-width: 390px) {
  .rc-hyper-logo { flex-basis: 108px !important; }
  .rc-hyper-logo img { width:108px !important; }
  .rc-hyper-primary { padding-inline:10px !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
