:root {
  --ink: #111816;
  --muted: #59645f;
  --line: #dbe5df;
  --paper: #f7faf7;
  --white: #ffffff;
  --green: #0d9488;
  --green-dark: #101735;
  --gold: #f59e0b;
  --red: #ef4444;
  --shadow: 0 18px 42px rgba(7, 31, 20, 0.14);
  --soft-shadow: 0 10px 26px rgba(7, 31, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.64;
}

a {
  color: inherit;
}

p strong,
li strong,
span strong {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.orbit-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 71, 47, 0.98);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(7, 31, 20, 0.12);
}

.orbit-header::after {
  display: none;
  content: "";
}

body.market-active .orbit-header,
body.drawer-active .orbit-header {
  z-index: 1000;
}

.menu-spark,
.drawer-x,
.pocket-drawer,
.drawer-veil {
  display: none;
}

.pulse-bar,
.orbit-nav,
.frame {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.pulse-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.orbit-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.mark-zone {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0;
}

.brand-emblem {
  display: block;
  width: 136px;
  height: 52px;
  object-fit: contain;
}

.orbit-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.orbit-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.orbit-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-1px);
}

.market-picker {
  position: relative;
  flex: 0 0 auto;
}

.market-picker.is-open {
  z-index: 1005;
}

.market-picker::before {
  display: none;
  content: none;
}

.market-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.market-toggle:hover,
.market-picker.is-open .market-toggle {
  border-color: rgba(243, 186, 55, 0.72);
  background: rgba(243, 186, 55, 0.16);
  transform: translateY(-1px);
}

.market-toggle svg {
  width: 17px !important;
  height: 17px !important;
  color: var(--gold);
}

.market-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1010;
  width: min(420px, calc(100vw - 36px));
  padding: 18px 20px 20px;
  border: 1px solid rgba(17, 24, 22, 0.08);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(2, 13, 26, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.market-panel[hidden] {
  display: none;
}

.market-picker.is-open::before {
  display: none;
}

.market-picker.is-open .market-panel {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.market-active {
  overflow: auto;
}

body.market-active .promo-float,
body.drawer-active .promo-float {
  opacity: 0;
  pointer-events: none;
  transform: translateX(50%) translateY(calc(100% + 28px));
}

.market-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.market-panel-head strong {
  color: #142033;
  font-size: 20px;
  line-height: 1.2;
}

.market-close {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  place-items: center;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.market-close:hover {
  background: #f0f4f2;
  color: #142033;
  transform: rotate(90deg);
}

.market-option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid #dfe6e2;
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.market-option:hover {
  background: #f7faf7;
  transform: translateY(-1px);
}

.market-option img {
  display: block;
  width: 48px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.market-option strong,
.market-option small {
  display: block;
  color: var(--ink);
}

.market-option strong {
  font-size: 16px;
  line-height: 1.15;
}

.market-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.drawer-market {
  display: none;
}

.pocket-join,
.pocket-categories {
  display: none !important;
}

@media (min-width: 861px) {
  .pocket-join,
  .pocket-categories {
    display: none !important;
  }
}

.drawer-finder {
  display: grid;
  grid-template-columns: 1fr 48px;
  margin: 18px 0 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.drawer-finder input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 0;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.drawer-finder button {
  display: grid;
  border: 0;
  background: #c88400;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition: background-color 160ms ease, transform 160ms ease;
}

.drawer-finder button:hover {
  background: #b17100;
}

.drawer-finder button:active {
  transform: scale(0.96);
}

.drawer-finder svg {
  width: 20px;
  height: 20px;
}

.drawer-routes {
  display: grid;
}

.drawer-routes a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 24, 22, 0.08);
  color: #48534e;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, padding-left 160ms ease;
}

.drawer-routes a:hover {
  padding-left: 6px;
  color: var(--green-dark);
}

.drawer-routes a[hidden] {
  display: none;
}

.action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: #1e1705;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  box-shadow: 0 10px 20px rgba(114, 72, 5, 0.18);
}

.action-btn::after {
  width: 0.75em;
  height: 0.75em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: #ffca4c;
  box-shadow: 0 16px 30px rgba(114, 72, 5, 0.24);
}

.action-btn:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.action-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(114, 72, 5, 0.18);
}

.action-btn:focus-visible,
.orbit-links a:focus-visible,
.drawer-routes a:focus-visible,
.home-game-tile:focus-visible,
.game-tile:focus-visible,
.mini-tile:focus-visible {
  outline: 3px solid rgba(243, 186, 55, 0.65);
  outline-offset: 3px;
}

.action-btn.alt-action {
  background: var(--white);
  color: var(--green-dark);
}

.action-btn.quiet-action {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--green-dark);
  box-shadow: none;
}

.action-btn.quiet-action:hover {
  border-color: rgba(11, 107, 67, 0.45);
  background: rgba(11, 107, 67, 0.06);
  box-shadow: none;
}

.trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.trail a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.launch-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
  background: #071913;
}

.launch-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 29, 20, 0.94) 0%, rgba(5, 39, 26, 0.82) 42%, rgba(5, 39, 26, 0.18) 74%),
    url("../sections/2ph-aceph-hero-v2.png") center / cover no-repeat;
}

.launch-hero .frame {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  padding: 54px 0 66px;
}

.launch-copy {
  width: min(650px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(25px, 2.8vw, 36px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 10px 0 0;
}

.intro-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.launch-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.launch-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(650px, 100%);
  margin-top: 30px;
}

.media-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.media-strip.reverse-flow {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.media-strip.reverse-flow .media-copy {
  order: 2;
}

.media-strip.reverse-flow .image-stage {
  order: 1;
}

.image-stage {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-game-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.home-game-tile {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  box-shadow: var(--soft-shadow);
}

.home-game-tile:hover,
.game-tile:hover,
.mini-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 107, 67, 0.34);
  box-shadow: 0 18px 34px rgba(7, 31, 20, 0.12);
}

.home-game-tile:active,
.game-tile:active,
.mini-tile:active {
  transform: translateY(-1px);
}

.home-game-tile::after,
.mini-tile::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(11, 107, 67, 0.1);
  color: var(--green-dark);
  content: ">";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  transform: translateX(-3px);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.home-game-tile:hover::after,
.mini-tile:hover::after {
  transform: translateX(0);
  opacity: 1;
}

.home-game-tile img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: contain;
  padding: 10px;
  background:
    radial-gradient(circle at 72% 28%, rgba(243, 186, 55, 0.3), transparent 28%),
    linear-gradient(135deg, #edf7f1, #ffffff);
}

.home-game-tile strong,
.home-game-tile span {
  display: block;
  padding: 0 12px;
}

.home-game-tile strong {
  margin-top: 12px;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.18;
}

.home-game-tile span {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.home-game-tile span strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--green-dark);
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.prize-section {
  overflow: hidden;
}

.prize-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 71, 47, 0.14);
  border-radius: 8px;
  background: #082f23;
  box-shadow: 0 26px 64px rgba(2, 22, 17, 0.18);
}

.prize-stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  object-fit: cover;
}

.prize-counter {
  position: absolute;
  top: 51%;
  left: 50%;
  width: min(50vw, 730px);
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  color: #08120f;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.prize-counter::before {
  content: "";
  position: absolute;
  inset: 8px 16px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 225, 0.92));
  box-shadow: inset 0 0 22px rgba(245, 191, 55, 0.2);
}

.prize-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #101735;
  color: #ffd65a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.prize-counter strong {
  display: block;
  margin-top: 8px;
  color: #07150f;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 214, 90, 0.65);
  white-space: nowrap;
}

.prize-counter small {
  display: block;
  margin-top: 6px;
  color: #4b5960;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.prize-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.metric-tile {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.metric-tile strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.metric-tile span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.metric-tile span strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--gold);
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

main {
  background: var(--paper);
}

section {
  padding: 25px 0;
}

.paper-section {
  background: var(--white);
}

.midnight-section {
  background: var(--green-dark);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-heading h1 {
  max-width: 680px;
  font-size: clamp(30px, 3.6vw, 44px);
}

.section-heading p {
  max-width: 600px;
  color: var(--muted);
}

.midnight-section .section-heading p,
.midnight-section .soft-text {
  color: rgba(255, 255, 255, 0.76);
}

.tile-grid {
  display: grid;
  gap: 16px;
}

.tile-grid.cols-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile-grid.cols-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile-grid.cols-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story h2 + .tile-grid,
.story h2 + .odds-table {
  margin-top: 16px;
}

.story p + .tile-grid,
.story ul + .tile-grid,
.story ol + .tile-grid {
  margin-top: 18px;
}

.story .tile-grid + h2,
.story .odds-table + h2,
.story .spec-wall + h2 {
  margin-top: 38px;
}

.game-list-block .switch-tabs + h2 {
  margin-top: 28px;
}

.game-list-block .tile-grid + h2 {
  margin-top: 38px;
}

.game-list-block h2 + .tile-grid {
  margin-top: 14px;
}

.game-tile {
  position: relative;
  display: flex;
  min-height: 268px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  box-shadow: var(--soft-shadow);
}

.game-tile:hover img,
.home-game-tile:hover img {
  filter: saturate(1.08) contrast(1.03);
}

.game-tile::after {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border: 16px solid rgba(11, 107, 67, 0.08);
  border-radius: 50%;
  content: "";
}

.game-tile img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 132px;
  object-fit: contain;
  padding: 12px;
  background:
    radial-gradient(circle at 68% 28%, rgba(243, 186, 55, 0.34), transparent 28%),
    linear-gradient(135deg, #e9f5ee, #ffffff);
}

.game-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14px 18px 0;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.18;
}

.game-tile span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  padding: 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.game-tile span strong {
  position: static;
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--green-dark);
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.game-flags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 18px 0;
}

.game-flags em,
.chip {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(11, 107, 67, 0.1);
  color: var(--green-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.switch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.switch-tabs a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.game-intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: stretch;
}

.game-poster {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  justify-content: center;
  align-items: center;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 30%, rgba(243, 186, 55, 0.55), transparent 28%),
    linear-gradient(135deg, var(--green-dark), #102822 58%, #281a08);
  color: var(--gold);
  text-align: center;
  box-shadow: var(--shadow);
}

.game-poster img {
  width: min(280px, 82%);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.25));
}

.game-poster strong {
  width: min(280px, 80%);
  font-size: 28px;
  line-height: 1.05;
}

.spec-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.spec-box {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.spec-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-box strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.info-tile {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.info-tile a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration-color: rgba(11, 107, 67, 0.35);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.info-tile a:hover {
  color: var(--green);
  text-decoration-color: var(--green);
}

.step-tile {
  position: relative;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.step-tile .step-badge {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 186, 55, 0.24);
  color: var(--green-dark);
  font-weight: 900;
}

.content-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.content-points li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.content-points strong {
  color: var(--green-dark);
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-tile {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(243, 186, 55, 0.14), transparent 28%),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.review-tile.featured-review {
  grid-column: span 2;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-head img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 3px solid #e7f3ed;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(7, 31, 20, 0.12);
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head strong {
  color: var(--green-dark);
  font-size: 17px;
}

.review-head span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.rating-stars {
  margin-top: 14px;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0;
}

.review-tile p {
  margin: 10px 0 0;
  color: var(--muted);
}

.benefit-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-tile {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 186, 55, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff, #f7fbf8);
  box-shadow: var(--soft-shadow);
}

.benefit-tile.benefit-spotlight {
  border-color: rgba(243, 186, 55, 0.62);
  background:
    radial-gradient(circle at 90% 12%, rgba(243, 186, 55, 0.26), transparent 34%),
    linear-gradient(135deg, #ffffff, #fff9e8 64%, #f4fbf7);
}

.benefit-glyph {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  background: rgba(243, 186, 55, 0.22);
  color: var(--green-dark);
  font-weight: 900;
}

.benefit-tile h3 {
  margin-top: 0;
  color: var(--green-dark);
  font-size: 19px;
}

.benefit-tile p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.benefit-tile a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-color: rgba(11, 107, 67, 0.32);
  text-underline-offset: 4px;
}

.benefit-tile a:hover {
  color: var(--green);
  text-decoration-color: var(--green);
}

.update-wall,
.howto-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.update-tile,
.howto-tile {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.update-tile span,
.howto-tile span {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  margin-bottom: 14px;
  padding: 0 10px;
  place-items: center;
  border-radius: 8px;
  background: #e7f3ed;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-tile h3,
.howto-tile h3 {
  margin-top: 0;
  color: var(--green-dark);
  font-size: 19px;
}

.update-tile p,
.howto-tile p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.update-tile a,
.howto-tile {
  color: var(--green-dark);
  text-decoration-color: rgba(11, 107, 67, 0.32);
  text-underline-offset: 4px;
}

.howto-tile {
  display: block;
  color: inherit;
  font-weight: 400;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.update-tile a {
  font-weight: 900;
}

.howto-tile:hover,
.update-tile:hover {
  border-color: rgba(11, 107, 67, 0.28);
  box-shadow: var(--shadow);
}

.howto-tile:hover {
  transform: translateY(-2px);
}

.odds-table-card {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.odds-table-card .odds-table {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.bonus-matrix a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-color: rgba(11, 107, 67, 0.32);
  text-underline-offset: 4px;
}

.faq-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-wall details {
  min-height: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(243, 186, 55, 0.12), transparent 28%),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-wall summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}

.faq-wall p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-more-link {
  margin-top: 22px;
}

.faq-more-link a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-color: rgba(11, 107, 67, 0.32);
  text-underline-offset: 4px;
}

.midnight-section .info-tile {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.glyph {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  background: rgba(11, 107, 67, 0.1);
  color: var(--green);
  font-weight: 900;
}

.midnight-section .glyph {
  background: rgba(243, 186, 55, 0.18);
  color: var(--gold);
}

.soft-text {
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.insight-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-tile {
  position: relative;
  display: block;
  min-height: 150px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  box-shadow: var(--soft-shadow);
}

.mini-tile > img {
  display: block;
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  object-fit: contain;
  padding: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 24%, rgba(243, 186, 55, 0.26), transparent 32%),
    linear-gradient(135deg, #eef7f2, #ffffff);
}

.mini-tile strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
}

.mini-tile span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.mini-tile span strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--green-dark);
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(11, 107, 67, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 20%, rgba(243, 186, 55, 0.22), transparent 24%),
    linear-gradient(135deg, #f7fbf8, #ffffff);
  box-shadow: var(--soft-shadow);
}

.visit-panel h2 {
  margin-top: 8px;
  font-size: clamp(24px, 2.7vw, 32px);
}

.visit-panel p {
  max-width: 620px;
  color: var(--muted);
}

.related-picks {
  margin-top: 34px;
}

.related-picks h2 {
  margin-top: 0;
}

.related-picks .tile-grid {
  margin-top: 16px;
}

.related-picks .mini-tile {
  padding: 0 0 18px;
}

.related-picks .mini-tile img {
  width: 118px;
  height: 118px;
  margin: 16px auto 0;
  object-fit: contain;
  padding: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 26%, rgba(243, 186, 55, 0.28), transparent 30%),
    linear-gradient(135deg, #eef7f2, #ffffff);
}

.related-picks .mini-tile strong,
.related-picks .mini-tile span {
  padding-right: 18px;
  padding-left: 18px;
}

.related-picks .mini-tile strong {
  margin-top: 16px;
}

.related-picks .mini-tile span strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--green-dark);
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.note-box {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: #fff9e8;
}

.install-page {
  background: #eef7f2;
}

.install-page section {
  padding: 48px 0;
}

.install-narrow {
  width: min(980px, calc(100% - 32px));
}

.install-showcase {
  padding: 36px 0 38px;
  border-bottom: 6px solid #f59e0b;
  background:
    radial-gradient(circle at 18% 10%, rgba(243, 186, 55, 0.25), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(216, 69, 53, 0.22), transparent 24%),
    linear-gradient(180deg, #075236 0%, #032419 100%);
  color: var(--white);
  text-align: center;
}

.install-trail {
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
}

.install-trail a {
  color: rgba(255, 255, 255, 0.92);
}

.install-showcase .eyebrow {
  color: #ffc44f;
}

.install-showcase h1,
.install-section-heading h2,
.install-version-tile h2,
.install-process-head h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.install-showcase h1 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  color: #ffe08a;
  font-size: clamp(32px, 5vw, 54px);
  text-transform: uppercase;
}

.install-lead {
  max-width: 720px;
  margin: 10px auto 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.install-slider {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #f59e0b;
  border-radius: 14px;
  background: #160102;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.install-slide {
  position: relative;
  display: none;
}

.install-slide.is-active {
  display: block;
}

.install-slide img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.install-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
  content: "";
}

.install-slide span {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 800;
}

.install-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -15px;
  margin-bottom: 28px;
}

.install-dots span,
.install-dots strong {
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid #f59e0b;
  border-radius: 999px;
  background: #4d0809;
}

.install-dots strong {
  width: 32px;
  border-color: #f59e0b;
  background: #f59e0b;
}

.install-main-btn,
.install-now,
.install-apk-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 34px;
  border-radius: 6px;
  background: #e84b3c;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 #a72e22, 0 16px 30px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, background-color 160ms ease;
}

.install-main-btn {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.install-main-btn:hover,
.install-now:hover,
.install-apk-btn:hover {
  background: #f15f4f;
  transform: translateY(-2px);
}

.install-app-section {
  margin-top: -16px;
  padding-top: 18px;
  background: linear-gradient(180deg, #e3f3ea, #fff8e8);
}

.install-app-tile,
.install-shell,
.install-version-tile {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 31, 20, 0.16);
}

.install-app-tile {
  padding: 34px 36px 26px;
  border-radius: 22px;
}

.install-app-top {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 24px;
}

.install-app-top img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.install-app-top h2,
.install-section-heading h2,
.install-version-tile h2 {
  margin: 0;
  color: var(--green-dark);
}

.install-app-top p {
  margin: 8px 0 4px;
  color: #24303d;
}

.install-app-top p strong {
  color: #f59e0b;
  letter-spacing: 0;
}

.install-app-top small,
.install-secure {
  color: #6a7480;
}

.install-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.install-pills span,
.install-version-top > span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f7ef;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.install-now {
  width: 100%;
  min-height: 58px;
  font-size: 21px;
  box-shadow: 0 8px 18px rgba(216, 69, 53, 0.25);
}

.install-secure {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
}

.install-secure span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #19b65b;
}

.install-steps-section {
  background: #fdfaf0;
}

.install-shell {
  overflow: hidden;
  border: 4px solid var(--green-dark);
}

.install-section-heading {
  padding: 30px 34px 22px;
  text-align: center;
}

.install-section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
}

.install-section-heading p {
  max-width: 620px;
  margin: 10px auto 0;
  color: #354055;
}

.install-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px 44px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 13px 13px,
    var(--green-dark);
}

.install-tabs button {
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: var(--white);
  color: var(--green-dark);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.install-tabs button.is-active,
.install-tabs button[aria-selected="true"] {
  background: var(--white);
  color: var(--green-dark);
}

.install-tabs button:not(.is-active) {
  background: #0d9488;
  color: var(--white);
}

.install-tab-panel[hidden] {
  display: none;
}

.install-process-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px 44px 12px;
}

.install-process-head h3 {
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  color: var(--green-dark);
  font-size: 28px;
}

.install-process-head span {
  padding: 7px 12px;
  border: 1px solid #a9e5be;
  border-radius: 6px;
  background: #e8fbef;
  color: #126636;
  font-weight: 900;
}

.install-progress {
  height: 12px;
  margin: 0 44px 30px;
  overflow: hidden;
  border: 1px solid #ccd4dd;
  border-radius: 999px;
  background: #e8ecf1;
}

.install-progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b, #0d9488);
}

.install-steps {
  display: grid;
  gap: 24px;
  padding: 0 44px 34px;
}

.install-step-tile {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid #dde3ea;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.install-step-badge {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #e84b3c;
  color: var(--white);
  font-weight: 900;
}

.install-step-badge.deep-tone {
  background: #172333;
}

.install-step-tile h3 {
  margin: 0 0 6px;
  color: #172333;
  font-size: 22px;
}

.install-step-tile p {
  margin: 0 0 16px;
  color: #526071;
}

.install-code,
.install-preview,
.install-file {
  border: 1px solid #dde3ea;
  border-radius: 6px;
  background: #f8fafc;
}

.install-code {
  padding: 14px 16px;
  color: #334155;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.install-preview {
  display: grid;
  min-height: 130px;
  margin-top: 10px;
  place-items: center;
  border-style: dashed;
  color: #8a97a8;
  text-align: center;
}

.install-preview strong,
.install-preview span {
  display: block;
}

.install-apk-btn {
  width: min(100%, 460px);
  min-height: 54px;
  margin-bottom: 14px;
  background: #0d9488;
  box-shadow: none;
}

.install-file {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 470px;
  padding: 16px;
}

.install-file > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 900;
}

.install-file strong,
.install-file small,
.install-file em {
  display: block;
}

.install-file small {
  color: #596575;
}

.install-file em {
  width: 42%;
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: #1fcd6d;
}

.install-game-preview {
  position: relative;
  overflow: hidden;
  max-width: 520px;
  border: 2px solid #f59e0b;
  border-radius: 8px;
}

.install-game-preview img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.install-game-preview strong {
  position: absolute;
  inset: auto 0 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  text-align: center;
}

.install-note {
  margin-top: 10px !important;
  font-size: 14px;
  font-style: italic;
}

.install-troubleshooting {
  margin: 0 44px;
  padding: 28px 0;
  border-top: 1px dashed #cfd6de;
}

.install-ios-setup {
  display: grid;
  gap: 16px;
  margin: 0 44px 30px;
  padding-top: 6px;
}

.install-ios-setup > h3 {
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid #2c63d8;
  color: #203f91;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.install-ios-tile {
  padding: 20px;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.install-ios-tile.spotlight {
  border-color: #b6d2ff;
  background: #eef6ff;
}

.install-ios-tile h4 {
  margin: 0 0 6px;
  color: #203f91;
  font-size: 20px;
}

.install-ios-tile p {
  margin: 0 0 14px;
  color: #526071;
}

.install-ios-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  background: #243f92;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.install-ios-btn:hover {
  background: #3154bc;
  transform: translateY(-1px);
}

.install-troubleshooting h2 {
  margin-top: 0;
  color: #1d2838;
  font-family: Georgia, "Times New Roman", serif;
}

.install-troubleshooting details {
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid #dde3ea;
  border-radius: 6px;
  background: #f8fafc;
}

.install-troubleshooting summary {
  cursor: pointer;
}

.install-safe-footer {
  padding: 22px;
  background: #032419;
  color: #cbd5e1;
  text-align: center;
}

.install-safe-footer span {
  display: inline-block;
  margin: 0 12px 8px;
}

.install-safe-footer p {
  margin: 0;
}

.install-version-section {
  background: #e6f3ec;
}

.install-version-tile {
  overflow: hidden;
  padding: 30px;
  border-top: 7px solid #f59e0b;
  border-radius: 18px 18px 0 0;
}

.install-version-top,
.install-version-main,
.install-info-wall,
.install-icons {
  display: grid;
  gap: 18px;
}

.install-version-top {
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef1f3;
}

.install-shield {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #e6f8ed;
  color: #0f8b44;
  font-weight: 900;
}

.install-version-main {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 24px 0;
}

.install-version-main strong {
  display: inline-block;
  margin-right: 8px;
  color: #172333;
  font-size: 42px;
  line-height: 1;
}

.install-version-main span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #0d9488;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.install-version-main p {
  margin: 8px 0 0;
  color: #596575;
}

.install-version-main p strong {
  display: inline;
  margin: 0;
  color: var(--green-dark);
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.install-info-wall {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.install-info-wall div {
  padding: 14px 16px;
  border: 1px solid #edf0f3;
  border-radius: 8px;
  background: #fbfcfd;
}

.install-info-wall span,
.install-info-wall strong {
  display: block;
}

.install-info-wall span {
  color: #8b95a3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.install-info-wall strong {
  margin-top: 4px;
  color: #334155;
}

.install-icons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #eef1f3;
  text-align: center;
}

.install-icons span {
  color: #596575;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  background: linear-gradient(var(--green), var(--green)) 0 10px / 12px 3px no-repeat;
}

.keyword-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.keyword-rail span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.story {
  max-width: 900px;
  margin: 0 auto;
}

.story > p,
.story > ul,
.story > ol,
.story .note-box {
  max-width: 760px;
}

.story h1 {
  max-width: 800px;
  font-size: clamp(30px, 3.6vw, 44px);
}

.story h2 {
  margin-top: 32px;
  font-size: clamp(23px, 2.6vw, 32px);
}

.story h3 {
  margin-top: 26px;
}

.story ul,
.story ol {
  padding-left: 22px;
}

.story li + li {
  margin-top: 8px;
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.odds-table th,
.odds-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.story-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 24px;
  align-items: center;
  margin: 22px 0 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef7f2);
  box-shadow: var(--soft-shadow);
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
}

.story-media.photo-slab {
  gap: 20px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 186, 55, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3faf6 62%, #fff8e4 100%);
  color: var(--ink);
}

.story-media.photo-slab > div {
  padding: 10px 6px 10px 12px;
}

.story-media.photo-slab img {
  height: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 31, 20, 0.14);
}

.story-media.photo-slab h2 {
  color: var(--ink);
}

.story-media.photo-slab p {
  color: var(--muted);
}

.story-media.photo-slab .chip {
  background: #e7f3ed;
  color: var(--green-dark);
}

.story-media h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.story-media .chip {
  margin-bottom: 12px;
}

.story-media p {
  margin-top: 10px;
  color: var(--muted);
}

.odds-table th {
  background: #ecf4ef;
  color: var(--green-dark);
}

.faq details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 800;
}

.orbit-footer {
  padding: 46px 0 28px;
  background: #071913;
  color: rgba(255, 255, 255, 0.72);
}

.footer-wall {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
  gap: 28px;
}

.orbit-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.orbit-footer p {
  max-width: 560px;
}

.footer-nav {
  display: grid;
  gap: 6px;
}

.footer-nav strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.fine-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.promo-float {
  position: fixed;
  right: 50%;
  bottom: 12px;
  z-index: 70;
  width: min(1180px, calc(100vw - 28px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: translateX(50%);
  transition: opacity 160ms ease, transform 180ms ease;
}

.promo-float[hidden] {
  display: none;
}

.promo-close {
  position: absolute;
  top: -18px;
  right: -6px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 22, 0.9);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  place-items: center;
  transition: transform 160ms ease, background-color 160ms ease;
}

.promo-close:hover {
  background: #000;
  transform: scale(1.06);
}

.promo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.promo-link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px dashed rgba(255, 238, 88, 0.82);
  border-radius: 5px;
  background: #160906;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 20px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.promo-link:last-child {
  grid-column: 1 / -1;
  width: min(620px, 56%);
  justify-self: center;
}

.promo-link img {
  display: block;
  width: 100%;
  height: 62px;
  aspect-ratio: 728 / 90;
  object-fit: fill;
}

.promo-link:hover,
.promo-link:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34), 0 0 20px rgba(255, 216, 76, 0.34), 0 10px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .orbit-header {
    position: sticky;
  }

  .pulse-bar {
    display: none;
  }

  .orbit-nav {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand language language"
      "brand join menu";
    align-items: center;
    gap: 6px 12px;
    min-height: 92px;
    padding: 10px 14px;
  }

  .mark-zone {
    display: contents;
  }

  .menu-spark {
    display: inline-flex;
    grid-area: menu;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent url("../ui/menu-icon.png") center / 36px 36px no-repeat;
    color: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease, filter 160ms ease;
  }

  .menu-spark:hover {
    filter: brightness(1.08);
  }

  .menu-spark:active {
    transform: scale(0.94);
  }

  .menu-spark span,
  .menu-spark::before,
  .menu-spark::after {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
    content: "";
  }

  .menu-spark span {
    margin: 0;
  }

  .orbit-links {
    display: none;
  }

  .pocket-join {
    grid-area: join;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-height: 34px;
    max-width: 148px;
    padding: 7px 13px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f52d54, #f59e0b);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(243, 186, 55, 0.22);
    transition: transform 160ms ease, filter 160ms ease;
    white-space: nowrap;
  }

  .pocket-join:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
  }

  .pocket-categories {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 8px 8px 10px;
    border-top: 1px solid rgba(243, 186, 55, 0.24);
    border-bottom: 1px solid rgba(243, 186, 55, 0.28);
    background:
      radial-gradient(circle at 12% 0%, rgba(243, 186, 55, 0.18), transparent 30%),
      linear-gradient(90deg, #063f2a, #0d9488 52%, #075337);
    box-shadow: 0 8px 18px rgba(7, 31, 20, 0.18);
  }

  .pocket-categories a {
    display: grid;
    min-width: 0;
    min-height: 48px;
    padding: 3px 2px;
    border-radius: 7px;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
    place-items: center;
  }

  .pocket-categories a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
  }

  .pocket-categories img {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
    object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.22));
  }

  .pocket-categories strong {
    display: block;
    color: var(--white);
    font-size: 10.5px;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  }

  .market-picker {
    display: block;
    grid-area: language;
    justify-self: end;
    z-index: 45;
  }

  .market-picker.is-open {
    z-index: 1170;
  }

  .market-toggle {
    min-height: 28px;
    padding: 4px 8px;
    border-color: rgba(243, 186, 55, 0.65);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .market-toggle svg {
    width: 14px !important;
    height: 14px !important;
  }

  .market-panel {
    position: fixed;
    top: 10px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    padding: 14px 16px 16px;
    border-radius: 8px;
    transform: translateY(-12px);
  }

  .market-picker.is-open .market-panel {
    transform: translateY(0);
  }

  body.market-active {
    overflow: hidden;
  }

  .market-option {
    min-height: 66px;
  }

  .brand-lockup {
    grid-area: brand;
    justify-self: start;
    flex: 0 0 auto;
    gap: 8px;
    font-size: 20px;
  }

  .brand-emblem {
    width: 116px;
    height: 46px;
  }

  .drawer-veil {
    position: fixed;
    inset: 0;
    z-index: 1130;
    background: rgba(2, 13, 26, 0.62);
    backdrop-filter: blur(2px);
  }

  .pocket-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1140;
    display: block;
    width: min(84vw, 336px);
    padding: 24px 22px 30px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 18px 0 42px rgba(0, 0, 0, 0.22);
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  .drawer-market {
    display: none;
    margin: 0 0 18px;
  }

  .drawer-market p {
    margin: 0 0 8px;
    color: #66736d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .drawer-market .market-option {
    min-height: 70px;
    border-radius: 8px;
    background: #172c45;
    box-shadow: 0 10px 24px rgba(2, 13, 26, 0.12);
  }

  .drawer-x {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1150;
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    place-items: center;
  }

  .drawer-x::before,
  .drawer-x::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    content: "";
  }

  .drawer-x::before {
    transform: rotate(45deg);
  }

  .drawer-x::after {
    transform: rotate(-45deg);
  }

  body.drawer-active {
    overflow: hidden;
  }

  body.drawer-active .drawer-veil {
    display: block;
  }

  body.drawer-active .pocket-drawer {
    transform: translateX(0);
  }

  body.drawer-active .drawer-x {
    display: grid;
  }

  .promo-float {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    max-height: 112px;
    padding: 18px 6px 6px;
    border-radius: 6px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: none;
  }

  .promo-stack {
    display: grid;
    grid-template-columns: none;
    gap: 4px;
    width: 100%;
  }

  .promo-link {
    border-width: 1px;
  }

  .promo-link:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .promo-link img {
    height: 34px;
    max-height: 34px;
    object-fit: cover;
  }

  .promo-link {
    width: 100%;
    border-width: 1px;
  }

  .promo-link:last-child {
    grid-column: auto;
    width: auto;
    justify-self: auto;
  }

  .promo-link img {
    height: auto;
    min-height: 0;
    object-fit: fill;
  }

  .promo-close {
    top: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(17, 24, 22, 0.88);
    font-size: 17px;
  }

  .launch-hero,
  .launch-hero .frame {
    min-height: 690px;
  }

  .launch-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 29, 20, 0.96) 0%, rgba(5, 39, 26, 0.86) 55%, rgba(5, 39, 26, 0.42) 100%),
      url("../sections/2ph-aceph-hero-v2.png") center / cover no-repeat;
  }

  .launch-stats,
  .tile-grid.cols-three,
  .tile-grid.cols-four,
  .tile-grid.cols-two,
  .review-wall,
  .benefit-wall,
  .update-wall,
  .howto-wall,
  .faq-wall,
  .game-intro,
  .media-strip,
  .media-strip.reverse-flow,
  .feature-split,
  .footer-wall {
    grid-template-columns: 1fr;
  }

  .media-strip.reverse-flow .media-copy,
  .media-strip.reverse-flow .image-stage {
    order: initial;
  }

  .home-game-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prize-stage {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }

  .prize-stage img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .prize-counter {
    top: 52%;
    width: min(46vw, 300px);
    min-height: 70px;
    padding: 8px 10px;
  }

  .prize-counter::before {
    inset: 6px 8px;
    border-radius: 12px;
  }

  .prize-label {
    padding: 4px 9px;
    font-size: 10px;
  }

  .prize-counter strong {
    font-size: clamp(22px, 6.4vw, 38px);
  }

  .prize-counter small {
    max-width: 240px;
    font-size: 10px;
  }

  .spec-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .review-tile.featured-review {
    grid-column: auto;
  }

  .odds-table {
    display: block;
    overflow-x: auto;
  }

  .section-heading {
    display: block;
  }

  .visit-panel {
    grid-template-columns: 1fr;
  }

  .visit-panel .action-btn {
    width: fit-content;
  }

  .footer-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .footer-wall > div:first-child {
    grid-column: 1 / -1;
  }

  .orbit-footer {
    padding: 38px 0 24px;
  }

  .install-page section {
    padding: 30px 0;
  }

  .install-showcase {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .install-showcase h1 {
    font-size: 32px;
  }

  .install-lead {
    font-size: 16px;
  }

  .install-slide img {
    height: 285px;
  }

  .install-app-tile {
    padding: 26px 20px 22px;
    border-radius: 16px;
  }

  .install-app-top {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .install-app-top img {
    width: 76px;
    height: 76px;
  }

  .install-shell {
    border-width: 3px;
  }

  .install-section-heading {
    padding: 24px 20px 18px;
  }

  .install-tabs,
  .install-steps {
    padding-right: 20px;
    padding-left: 20px;
  }

  .install-tabs {
    gap: 12px;
  }

  .install-process-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px 12px;
  }

  .install-progress {
    margin-right: 20px;
    margin-left: 20px;
  }

  .install-step-tile {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .install-troubleshooting {
    margin-right: 20px;
    margin-left: 20px;
  }

  .install-ios-setup {
    margin-right: 20px;
    margin-left: 20px;
  }

  .install-version-top,
  .install-version-main,
  .install-info-wall,
  .install-icons {
    grid-template-columns: 1fr;
  }

  .install-version-tile {
    padding: 24px 20px;
  }

  section {
    padding: 20px 0;
  }
}

@media (max-width: 520px) {
  .pulse-bar {
    font-size: 11px;
  }

  .brand-lockup {
    font-size: 19px;
  }

  .brand-emblem {
    width: 106px;
    height: 42px;
  }

  h1 {
    font-size: 34px;
  }

  .launch-hero h1 {
    font-size: 38px;
  }

  .section-heading h1,
  .story h1 {
    font-size: 32px;
  }

  .launch-hero,
  .launch-hero .frame {
    min-height: 640px;
  }

  .home-game-wall {
    grid-template-columns: 1fr;
  }

  .prize-stage img {
    min-height: 0;
  }

  .prize-counter {
    width: min(46vw, 190px);
    min-height: 54px;
    padding: 6px 8px;
  }

  .prize-label {
    padding: 3px 7px;
    font-size: 8px;
  }

  .prize-counter strong {
    margin-top: 4px;
    font-size: clamp(18px, 5.7vw, 28px);
  }

  .prize-counter small {
    display: none;
  }

  .game-tile {
    min-height: 250px;
  }

  .spec-wall {
    grid-template-columns: 1fr;
  }

  .install-showcase h1 {
    font-size: 28px;
  }

  .install-slide img {
    height: 220px;
  }

  .install-main-btn,
  .install-now,
  .install-apk-btn {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .install-app-top {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .install-app-top img {
    width: 64px;
    height: 64px;
  }

  .install-tabs button {
    min-height: 54px;
    font-size: 15px;
    letter-spacing: 1px;
  }

  .install-step-tile {
    grid-template-columns: 1fr;
  }

  .install-step-badge {
    width: 34px;
    height: 34px;
  }

  .install-file {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .install-file > span {
    width: 48px;
    height: 48px;
  }

  .install-version-main strong {
    font-size: 34px;
  }
}

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

}

/* 2PH visual skin */
:root {
  --ink: #121622;
  --muted: #697386;
  --line: #d8e3ea;
  --paper: #eef5f7;
  --white: #ffffff;
  --green: #0d9488;
  --green-dark: #101735;
  --gold: #f59e0b;
  --red: #ef4444;
  --shadow: 0 22px 46px rgba(16, 23, 53, 0.16);
  --soft-shadow: 0 12px 28px rgba(16, 23, 53, 0.1);
}

body {
  background:
    linear-gradient(180deg, #eaf7f7 0, #f7fbfb 340px, #eef5f7 100%),
    var(--paper);
}

.orbit-header {
  border-bottom: 1px solid rgba(245, 158, 11, 0.28);
  background: rgba(16, 23, 53, 0.96);
  box-shadow: 0 18px 40px rgba(16, 23, 53, 0.22);
  backdrop-filter: blur(18px);
}

.pulse-bar {
  color: rgba(255, 255, 255, 0.72);
}

.brand-emblem {
  width: 122px;
  height: 54px;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.22);
}

.orbit-links a,
.market-toggle {
  border-radius: 6px;
}

.orbit-links a:hover,
.market-toggle:hover,
.market-picker.is-open .market-toggle {
  background: rgba(13, 148, 136, 0.2);
  color: #ffffff;
}

.launch-hero {
  min-height: 650px;
  background:
    linear-gradient(100deg, rgba(16, 23, 53, 0.92) 0%, rgba(16, 23, 53, 0.78) 42%, rgba(13, 148, 136, 0.22) 100%),
    url("../sections/2ph-aceph-hero-v2.png") center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 54px), 0 100%);
}

.launch-copy {
  max-width: 720px;
  padding: 38px;
  border-left: 6px solid var(--gold);
  background: rgba(16, 23, 53, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.launch-copy h1 {
  letter-spacing: 0;
}

.launch-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 36px;
}

.launch-grid .launch-copy {
  width: 100%;
}

.hero-orbit {
  display: grid;
  gap: 18px;
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 20, 17, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-orbit strong {
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

.hero-orbit span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-game {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
}

.hero-mini-game img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-mini-game b,
.hero-mini-game small {
  display: block;
  overflow-wrap: anywhere;
}

.hero-mini-game b {
  font-size: 13px;
  line-height: 1.2;
}

.hero-mini-game small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.action-btn {
  border-radius: 6px;
  background: linear-gradient(135deg, #f59e0b, #facc15);
  color: #111827;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.24);
}

.action-btn.alt-action,
.action-btn.quiet-action {
  border-color: rgba(13, 148, 136, 0.34);
  background: rgba(13, 148, 136, 0.12);
  color: inherit;
}

.paper-section {
  background: #ffffff;
}

.midnight-section {
  background:
    linear-gradient(135deg, rgba(16, 23, 53, 0.96), rgba(13, 148, 136, 0.88)),
    var(--green-dark);
}

.info-tile,
.mini-tile,
.game-tile,
.home-game-tile,
.step-tile,
.review-tile,
.benefit-tile,
.update-tile,
.howto-tile,
.odds-table-card,
.insight-panel,
.visit-panel {
  border-radius: 6px;
  border: 1px solid rgba(16, 23, 53, 0.08);
  box-shadow: var(--soft-shadow);
}

.info-tile,
.step-tile,
.review-tile,
.benefit-tile,
.update-tile,
.howto-tile {
  border-top: 4px solid var(--green);
}

.glyph,
.step-badge,
.chip,
.eyebrow {
  color: #0f766e;
}

.glyph,
.step-badge {
  background: #e6fffb;
}

.keyword-rail span {
  border-radius: 999px;
  border-color: rgba(13, 148, 136, 0.22);
  background: #f0fdfa;
}

.story-media,
.photo-slab,
.feature-split,
.media-strip,
.game-intro,
.visit-panel {
  border-radius: 6px;
}

.prize-counter {
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.48);
  background: rgba(16, 23, 53, 0.88);
}

.orbit-footer {
  background: #101735;
}

.promo-float {
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(16, 23, 53, 0.24);
}

body.market-active .orbit-header,
body.drawer-active .orbit-header {
  backdrop-filter: none;
}

@media (max-width: 760px) {
  .launch-hero {
    min-height: 620px;
    clip-path: none;
  }

  .launch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .launch-copy {
    padding: 24px;
    border-left-width: 4px;
  }

  .hero-orbit {
    padding: 16px;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .promo-float {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    max-height: 112px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: none;
  }

  .promo-stack {
    gap: 4px;
  }

  .promo-link img {
    height: 34px;
    max-height: 34px;
    object-fit: cover;
  }

  body.market-active .promo-float,
  body.drawer-active .promo-float {
    transform: translateY(calc(100% + 28px));
  }
}
