:root {
  --oly-bg: #03060d;
  --oly-bg-2: #07111f;
  --oly-panel: rgba(8, 16, 31, .78);
  --oly-panel-strong: rgba(8, 15, 29, .94);
  --oly-line: rgba(165, 207, 255, .14);
  --oly-line-gold: rgba(255, 214, 112, .28);
  --oly-ink: #f8fbff;
  --oly-muted: #9babca;
  --oly-gold: #f5c95f;
  --oly-gold-light: #fff0b0;
  --oly-blue: #55c9ff;
  --oly-electric: #70f0ff;
  --oly-violet: #8c77ff;
  --oly-danger: #ff6f85;
  --oly-radius: 22px;
  --oly-radius-lg: 32px;
  --oly-max: 1180px;
  --oly-shadow: 0 34px 90px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }
html { background: var(--oly-bg); scroll-behavior: smooth; }
body.oly-premium {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--oly-ink);
  background:
    radial-gradient(900px 620px at 8% 10%, rgba(75, 136, 235, .15), transparent 68%),
    radial-gradient(800px 650px at 92% 22%, rgba(245, 201, 95, .10), transparent 70%),
    radial-gradient(720px 540px at 50% 88%, rgba(100, 77, 235, .10), transparent 72%),
    linear-gradient(180deg, #02050b, var(--oly-bg-2) 52%, #02050b);
  font-family: Inter, Nunito, Rubik, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body.oly-premium::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(rgba(128, 171, 231, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 171, 231, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}
body.oly-premium::after {
  content: "";
  position: fixed;
  inset: -15%;
  z-index: -1;
  pointer-events: none;
  background:
    conic-gradient(from 205deg at 50% 5%, transparent 0 23%, rgba(85, 201, 255, .06) 24%, transparent 25% 51%, rgba(245, 201, 95, .05) 52%, transparent 53%);
  animation: olySky 18s linear infinite;
}
@keyframes olySky { to { transform: rotate(2deg) scale(1.03); } }

body.oly-premium img { max-width: 100%; }
body.oly-premium a { color: var(--oly-electric); }
body.oly-premium p { color: var(--oly-muted); }
body.oly-premium h1,
body.oly-premium h2,
body.oly-premium h3 {
  color: #fff;
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}
body.oly-premium h1 {
  font-family: "Russo One", Unbounded, Inter, sans-serif;
  font-size: clamp(46px, 6.2vw, 84px);
  text-transform: none;
  text-shadow: 0 8px 32px rgba(52, 158, 255, .14);
}
body.oly-premium h2 { font-size: clamp(30px, 3.6vw, 49px); }
body.oly-premium h3 { font-size: clamp(19px, 2vw, 26px); }
body.oly-premium .slot-card h1 { font-size: clamp(44px, 4.7vw, 64px); }

.oly-header {
  position: sticky;
  top: 0;
  z-index: 140;
  border-bottom: 1px solid var(--oly-line);
  background: rgba(2, 5, 11, .78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(24px) saturate(150%);
}
.oly-header__inner {
  width: min(var(--oly-max), calc(100% - 30px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.oly-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff !important;
  text-decoration: none;
}
.oly-brand__mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(245, 201, 95, .48);
  border-radius: 14px;
  color: #171006;
  background: linear-gradient(145deg, var(--oly-gold-light), var(--oly-gold));
  box-shadow: 0 0 0 5px rgba(245, 201, 95, .06), 0 18px 35px rgba(0, 0, 0, .3);
  font-size: 20px;
  font-weight: 1000;
}
.oly-brand__copy b { display: block; color: #fff; font-size: 14px; line-height: 1.05; }
.oly-brand__copy small {
  display: block;
  margin-top: 5px;
  color: #70809f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.oly-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.oly-nav a {
  min-height: 38px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #9eabc3 !important;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}
.oly-nav a:hover,
.oly-nav a[aria-current="page"] {
  color: #fff !important;
  border-color: rgba(186, 210, 250, .12);
  background: rgba(255, 255, 255, .06);
}
.oly-header__play {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 13px;
  color: #171106;
  background: linear-gradient(135deg, var(--oly-gold-light), var(--oly-gold) 62%, #d59e33);
  box-shadow: 0 15px 34px rgba(212, 160, 53, .2), inset 0 1px rgba(255, 255, 255, .75);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 1000;
}

body.oly-premium > .top,
body.oly-premium .top {
  min-height: calc(100vh - 72px);
  padding: 42px 0 82px;
  background: transparent !important;
}
body.oly-premium .wrap { width: min(var(--oly-max), calc(100% - 36px)); }
body.oly-premium .top .hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  gap: 26px;
  align-items: stretch;
}
body.oly-premium .top .card {
  overflow: hidden;
  border: 1px solid var(--oly-line);
  border-radius: var(--oly-radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015)),
    rgba(4, 10, 20, .78);
  box-shadow: var(--oly-shadow);
  backdrop-filter: blur(20px) saturate(135%);
}
body.oly-premium .top .card:first-child {
  position: relative;
  border-color: var(--oly-line-gold);
}
body.oly-premium .top .card:first-child::after {
  content: "";
  position: absolute;
  inset: auto -22% -46% 20%;
  height: 65%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 201, 95, .11), transparent 66%);
}
body.oly-premium .slot-card { padding: clamp(24px, 4vw, 48px); }
body.oly-premium .topline {
  margin-bottom: 30px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
body.oly-premium .logo-badge {
  border: 1px solid rgba(245, 201, 95, .4);
  color: #151005;
  background: linear-gradient(145deg, var(--oly-gold-light), var(--oly-gold));
  box-shadow: 0 0 30px rgba(245, 201, 95, .14);
}
body.oly-premium .status {
  border-color: rgba(91, 234, 202, .15);
  color: #8aa6b2;
  background: rgba(46, 221, 184, .045);
}
body.oly-premium .status .dot { box-shadow: 0 0 18px #52eac4; }
body.oly-premium .slot-card .sub {
  max-width: 680px;
  margin-top: 20px;
  color: #a9b5cc;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.72;
}
body.oly-premium .cta-row { margin-top: 28px; gap: 10px; }
body.oly-premium .play-btn,
body.oly-premium .btn.js-play,
body.oly-premium .btnBase.play-btn {
  border: 0 !important;
  color: #181106 !important;
  background: linear-gradient(135deg, var(--oly-gold-light), var(--oly-gold) 55%, #d79530) !important;
  box-shadow: 0 20px 44px rgba(221, 164, 48, .22), inset 0 1px rgba(255, 255, 255, .8) !important;
}
body.oly-premium .ghost-btn,
body.oly-premium .btn.ghost {
  border-color: rgba(171, 203, 245, .15) !important;
  color: #dbe6fa !important;
  background: rgba(255, 255, 255, .045) !important;
}
body.oly-premium .poster-img,
body.oly-premium .poster-shell {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: calc(var(--oly-radius-lg) - 2px);
  isolation: isolate;
}
body.oly-premium .poster-img::after,
body.oly-premium .poster-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 5, 11, .08), transparent 45%, rgba(2, 5, 11, .9)),
    radial-gradient(circle at 50% 30%, transparent 0 30%, rgba(2, 5, 11, .28) 82%);
}
body.oly-premium .poster-img img,
body.oly-premium .poster-shell > img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.9);
}
body.oly-premium .mini {
  display: none !important;
}

.oly-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  pointer-events: none;
}
.oly-stage__top,
.oly-stage__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.oly-stage__live {
  min-height: 29px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(113, 238, 255, .22);
  border-radius: 999px;
  color: #cbf8ff;
  background: rgba(3, 13, 25, .72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: .14em;
}
.oly-stage__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55efcf;
  box-shadow: 0 0 16px #55efcf;
}
.oly-stage__round {
  color: #8b9bbb;
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: .14em;
}
.oly-stage__meter {
  align-self: center;
  justify-self: start;
  width: min(280px, 70%);
  padding: 18px;
  border: 1px solid rgba(186, 213, 255, .14);
  border-radius: 22px;
  background: rgba(3, 8, 17, .68);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .38);
  backdrop-filter: blur(16px) saturate(140%);
}
.oly-stage__meter small {
  display: block;
  color: #79e8ff;
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.oly-stage__meter strong {
  display: block;
  margin-top: 3px;
  color: #fff2bd;
  font-family: "Russo One", Unbounded, sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  text-shadow: 0 0 32px rgba(245, 201, 95, .2);
}
.oly-stage__meter span {
  display: block;
  margin-top: 6px;
  color: #91a0bc;
  font-size: 10px;
}
.oly-stage__tokens {
  display: flex;
  gap: 7px;
}
.oly-stage__tokens span {
  min-width: 48px;
  height: 42px;
  padding: 0 9px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 213, 255, .14);
  border-radius: 12px;
  color: #dbe9ff;
  background: rgba(3, 9, 20, .76);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 1000;
}
.oly-stage__tokens span:last-child {
  color: #241a06;
  border-color: rgba(255, 238, 176, .55);
  background: linear-gradient(145deg, var(--oly-gold-light), var(--oly-gold));
}
.oly-stage__spin {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #181105;
  background: radial-gradient(circle at 35% 25%, #fff8d6, var(--oly-gold) 62%, #c88d24);
  box-shadow: 0 0 0 4px rgba(245, 201, 95, .13), 0 20px 44px rgba(0, 0, 0, .38);
  pointer-events: auto;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 1000;
}
.oly-stage.is-spinning .oly-stage__meter { animation: olyPulse .55s ease; }
.oly-stage.is-spinning .oly-stage__spin { animation: olySpin .62s cubic-bezier(.2,.8,.2,1); }
@keyframes olyPulse { 50% { transform: scale(1.035); border-color: rgba(112, 240, 255, .5); } }
@keyframes olySpin { to { transform: rotate(360deg); } }

body.oly-premium .content,
body.oly-premium main:not(.oly-page-main) {
  position: relative;
}
body.oly-premium .content-card,
body.oly-premium .section .card,
body.oly-premium .card {
  border-color: var(--oly-line);
}
body.oly-premium .content-card {
  border: 1px solid var(--oly-line);
  border-radius: var(--oly-radius-lg);
  background: rgba(5, 11, 22, .78);
  box-shadow: var(--oly-shadow);
  backdrop-filter: blur(18px);
}
body.oly-premium .content-card > h2,
body.oly-premium .content-card > h3,
body.oly-premium .content-card > p,
body.oly-premium .content-card > table,
body.oly-premium .content-card > .grid2,
body.oly-premium .content-card > details,
body.oly-premium .content-card > .toc,
body.oly-premium .content-card > .pill {
  position: relative;
  z-index: 1;
}
body.oly-premium .toc,
body.oly-premium .box,
body.oly-premium .note,
body.oly-premium details,
body.oly-premium .table,
body.oly-premium .hud .chip,
body.oly-premium .section .card {
  border-color: var(--oly-line) !important;
  background: rgba(255, 255, 255, .032) !important;
}
body.oly-premium .toc a { color: #b9c8e3; }
body.oly-premium .toc a:hover { color: #fff; }
body.oly-premium .pill { border-color: rgba(92, 218, 255, .16); color: #bdefff; background: rgba(77, 199, 255, .05); }
body.oly-premium .table { overflow: hidden; border-radius: 18px; }
body.oly-premium .table th { color: #fff0b8; }
body.oly-premium .table td { color: #aab6cc; }
body.oly-premium details summary { color: #eef5ff; }

.oly-launch-dock {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 160;
  width: 76px;
  padding: 7px;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
  border: 1px solid rgba(189, 215, 255, .16);
  border-radius: 24px;
  background: rgba(4, 9, 18, .84);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px) saturate(145%);
}
.oly-launch-dock button {
  min-height: 67px;
  padding: 6px 3px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(184, 213, 255, .10);
  border-radius: 16px;
  color: #e3edff;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  font: inherit;
}
.oly-launch-dock button:hover { transform: translateX(-3px); border-color: rgba(245, 201, 95, .32); }
.oly-launch-dock i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #171105;
  background: linear-gradient(145deg, var(--oly-gold-light), var(--oly-gold));
  font-style: normal;
  font-size: 12px;
  font-weight: 1000;
}
.oly-launch-dock button:nth-child(2) i { color: #fff; background: linear-gradient(145deg, #9b84ff, #6556dc); }
.oly-launch-dock button:nth-child(3) i { color: #fff; background: linear-gradient(145deg, #67ddff, #278fc9); }
.oly-launch-dock b { display: block; font-size: 8px; line-height: 1; }
body.oly-premium #stickyPlay,
body.oly-premium #stickyDock,
body.oly-premium .sticky-dock,
body.oly-premium #topBtn,
body.oly-premium #backToTop { display: none !important; }

.oly-page-hero {
  min-height: 650px;
  padding: 74px 18px 64px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  width: min(var(--oly-max), calc(100% - 36px));
  margin: 0 auto;
  background:
    radial-gradient(620px 480px at 80% 35%, rgba(75, 167, 255, .14), transparent 70%),
    radial-gradient(520px 420px at 22% 58%, rgba(245, 201, 95, .09), transparent 74%);
}
.oly-page-hero__inner {
  width: min(var(--oly-max), 100%);
  margin: 0 auto;
}
.oly-page-hero__copy { min-width: 0; max-width: 830px; }
.oly-page-hero__copy em {
  color: var(--oly-gold-light);
  font-style: normal;
  text-shadow: 0 0 32px rgba(245, 201, 95, .25);
}
.oly-kicker {
  min-height: 31px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(92, 224, 255, .22);
  border-radius: 999px;
  color: #bff6ff;
  background: rgba(73, 209, 255, .055);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.oly-page-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.oly-page-actions .play-btn,
.oly-page-actions .ghost-btn {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  text-decoration: none;
}
.oly-page-actions .play-btn {
  border: 0;
  color: #171105;
  background: linear-gradient(135deg, var(--oly-gold-light), var(--oly-gold) 62%, #d69b2e);
  box-shadow: 0 18px 42px rgba(215, 165, 51, .2);
}
.oly-page-actions .ghost-btn {
  border: 1px solid var(--oly-line);
  color: #e8f2ff;
  background: rgba(255, 255, 255, .05);
}
.oly-statline {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.oly-statline span {
  padding: 9px 11px;
  border: 1px solid var(--oly-line);
  border-radius: 12px;
  color: #7888a4;
  background: rgba(255, 255, 255, .025);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.oly-statline b { color: #fff0b0; font-size: 13px; }
.oly-page-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--oly-line-gold);
  border-radius: 32px;
  background: #030712;
  box-shadow: var(--oly-shadow);
}
.oly-page-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 5, 12, .12), transparent 42%, rgba(2, 5, 12, .78));
}
.oly-page-visual > img { width: 100%; height: 560px; object-fit: cover; display: block; }
.oly-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #60708c;
  font-size: 11px;
}
.oly-breadcrumb a { color: #92a5c4; text-decoration: none; }
.oly-eyebrow {
  min-height: 31px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(92, 224, 255, .22);
  border-radius: 999px;
  color: #bff6ff;
  background: rgba(73, 209, 255, .055);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.oly-page-hero p { max-width: 780px; margin: 22px 0 0; font-size: 17px; }
.oly-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.oly-button {
  min-height: 50px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--oly-line);
  border-radius: 14px;
  color: #e8f2ff !important;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  text-decoration: none;
}
.oly-button--primary { border: 0; color: #171105 !important; background: linear-gradient(135deg, var(--oly-gold-light), var(--oly-gold) 62%, #d69b2e); }
.oly-page-main { width: min(var(--oly-max), calc(100% - 36px)); margin: 0 auto; padding: 64px 0 100px; }
.oly-section { padding: 42px 0; border-top: 1px solid rgba(168, 200, 242, .08); }
.oly-section:first-child { border-top: 0; }
.oly-section p { max-width: 900px; font-size: 16px; }
.oly-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.oly-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--oly-line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .018));
}
.oly-card p { font-size: 14px; }
.oly-card > span:first-child {
  display: block;
  margin-bottom: 28px;
  color: var(--oly-gold);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .16em;
}
.oly-card a { font-size: 12px; font-weight: 900; text-decoration: none; }
.oly-table-wrap { margin-top: 22px; overflow-x: auto; border: 1px solid var(--oly-line); border-radius: 20px; }
.oly-table-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; }
.oly-table-wrap caption { padding: 15px; color: #fff; font-weight: 900; text-align: left; }
.oly-table-wrap th, .oly-table-wrap td { padding: 15px; border-bottom: 1px solid var(--oly-line); text-align: left; }
.oly-table-wrap th { color: #fff0ba; background: rgba(245, 201, 95, .035); }
.oly-table-wrap td { color: #aab7ce; }
.oly-callout {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--oly-line-gold);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 201, 95, .08), rgba(85, 201, 255, .035));
}
.oly-callout b { color: #fff0b0; }
.oly-callout p { margin-bottom: 0; }
.oly-source-note { color: #6f809d !important; font-size: 12px !important; }
.oly-faq { display: grid; gap: 10px; }
.oly-faq details { padding: 17px; border: 1px solid var(--oly-line); border-radius: 16px; background: rgba(255, 255, 255, .03); }
.oly-footer { padding: 28px 18px 110px; border-top: 1px solid var(--oly-line); color: #71809b; text-align: center; font-size: 11px; }

@media (max-width: 1060px) {
  .oly-header__inner { grid-template-columns: 1fr auto; padding: 8px 0; }
  .oly-brand { grid-column: 1; grid-row: 1; }
  .oly-header__play { grid-column: 2; grid-row: 1; }
  .oly-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .oly-nav::-webkit-scrollbar { display: none; }
  body.oly-premium .top .hero { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }
  body.oly-premium .top .card:nth-child(2) { order: -1; }
  .oly-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oly-page-hero { grid-template-columns: 1fr; max-width: 820px; }
  .oly-page-visual { order: -1; }
}

@media (max-width: 720px) {
  body.oly-premium { padding-bottom: 80px; }
  .oly-header__inner { width: calc(100% - 24px); gap: 8px; }
  .oly-brand__mark { width: 38px; height: 38px; border-radius: 12px; font-size: 17px; }
  .oly-brand__copy small { display: none; }
  .oly-brand__copy b { font-size: 12px; }
  .oly-header__play { min-height: 38px; padding: 8px 11px; font-size: 9px; }
  .oly-nav { margin-inline: -2px; padding: 0 10px 1px 2px; gap: 1px; }
  .oly-nav a { min-height: 31px; padding: 6px 8px; font-size: 9px; }
  body.oly-premium > .top,
  body.oly-premium .top { min-height: 0; padding: 18px 0 64px; }
  body.oly-premium .wrap { width: calc(100% - 24px); }
  body.oly-premium .top .hero { gap: 18px; }
  body.oly-premium .top .card { border-radius: 22px; }
  body.oly-premium .slot-card { padding: 24px 18px 28px; }
  body.oly-premium .topline { margin-bottom: 20px; }
  body.oly-premium .status { display: none; }
  body.oly-premium h1 { font-size: clamp(42px, 12.7vw, 57px); }
  body.oly-premium h2 { font-size: 34px; }
  body.oly-premium .slot-card .sub { font-size: 14px; line-height: 1.68; }
  body.oly-premium .cta-row { display: grid; grid-template-columns: 1fr; }
  body.oly-premium .play-btn,
  body.oly-premium .ghost-btn,
  body.oly-premium .btnBase,
  body.oly-premium .btn { width: 100%; min-height: 48px; }
  body.oly-premium .poster-img,
  body.oly-premium .poster-shell { min-height: 490px; border-radius: 20px; }
  body.oly-premium .poster-img img,
  body.oly-premium .poster-shell > img { min-height: 490px; }
  .oly-stage { padding: 12px; }
  .oly-stage__meter { width: min(220px, 76%); padding: 14px; border-radius: 18px; }
  .oly-stage__meter strong { font-size: 48px; }
  .oly-stage__tokens { gap: 4px; }
  .oly-stage__tokens span { min-width: 39px; height: 36px; padding: 0 6px; font-size: 8px; }
  .oly-stage__spin { width: 58px; height: 58px; border-width: 4px; font-size: 8px; }
  body.oly-premium .content { width: calc(100% - 24px); }
  body.oly-premium .content-card { border-radius: 22px; padding-inline: 14px; }
  body.oly-premium .grid2,
  body.oly-premium .three-col { grid-template-columns: 1fr !important; }
  .oly-launch-dock {
    right: 9px;
    bottom: 9px;
    left: 9px;
    top: auto;
    width: auto;
    padding: 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none;
    border-radius: 18px;
  }
  .oly-launch-dock button {
    min-height: 55px;
    padding: 5px;
    grid-template-columns: 28px auto;
    justify-content: center;
    align-content: center;
    gap: 6px;
    border-radius: 13px;
  }
  .oly-launch-dock i { width: 28px; height: 28px; border-radius: 9px; font-size: 10px; }
  .oly-launch-dock b { font-size: 9px; }
  .oly-page-hero { width: calc(100% - 24px); min-height: 0; padding: 18px 0 48px; gap: 26px; }
  .oly-page-hero__copy { width: 100%; overflow: hidden; }
  .oly-page-hero h1 { font-size: clamp(38px, 11.5vw, 50px); }
  .oly-page-hero p { font-size: 14px; }
  .oly-page-visual { min-height: 470px; border-radius: 22px; }
  .oly-page-visual > img { height: 470px; }
  .oly-page-actions { display: grid; grid-template-columns: 1fr; }
  .oly-page-actions .play-btn,
  .oly-page-actions .ghost-btn { width: 100%; }
  .oly-statline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .oly-statline span { padding: 8px 6px; text-align: center; }
  .oly-actions { display: grid; }
  .oly-button { width: 100%; }
  .oly-page-main { width: calc(100% - 28px); padding-top: 36px; }
  .oly-section { padding: 34px 0; }
  .oly-grid { grid-template-columns: 1fr; }
  .oly-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
