:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #f6f2ea;
  --paper-2: #fffaf1;
  --card: #ffffff;
  --line: rgba(20, 24, 35, 0.12);
  --night: #090d16;
  --night-2: #111827;
  --wine: #7a1f2b;
  --ruby: #c72f45;
  --gold: #d7a94b;
  --gold-2: #ffe0a3;
  --teal: #0f766e;
  --blue: #243b73;
  --shadow: 0 22px 55px rgba(13, 17, 29, 0.18);
  --soft-shadow: 0 12px 30px rgba(13, 17, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(9, 13, 22, 0.02), rgba(122, 31, 43, 0.05) 520px, transparent 760px),
    var(--paper);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

p strong,
li strong,
span strong {
  font-weight: 800;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.harbor-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #fff;
  background: rgba(8, 12, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.signal-strip,
.routebar {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.signal-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.routebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 12px 0;
}

.routebar-core {
  display: flex;
  align-items: center;
  gap: 14px;
}

.crest-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.crest-link::after {
  content: none;
  display: none;
}

.crest-mark {
  width: 62px;
  height: 62px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.route-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.route-links a,
.region-action-chip,
.action-chip,
.pocket-join {
  min-height: 38px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.route-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.route-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.region-switcher {
  position: relative;
}

.region-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.region-action-chip svg {
  width: 17px;
  height: 17px;
  color: var(--gold-2);
}

.region-note-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(330px, calc(100vw - 36px));
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.region-panel-head,
.region-note-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.region-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f7;
  cursor: pointer;
}

.region-option {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  background: #f9fafb;
}

.region-option img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 5px;
}

.region-option small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.pocket-menu-action-chip,
.drawer-dismiss,
.drawer-veil,
.pocket-drawer,
.pocket-category-rail,
.pocket-join {
  display: none;
}

.launch-panel {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  margin-top: -1px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 8, 16, 0.98) 0%, rgba(5, 8, 16, 0.82) 36%, rgba(5, 8, 16, 0.28) 70%, rgba(5, 8, 16, 0.12) 100%),
    url("../photography/casino-floor-hero.jpg") center / cover no-repeat;
}

.launch-panel .shell {
  padding: 88px 0 76px;
}

.launch-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.launch-copy h1,
.reading-note-panel h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.launch-copy .intro-line {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  overflow-wrap: anywhere;
}

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

.action-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(215, 169, 75, 0.35);
  background: linear-gradient(180deg, #f2c66e, #bd7d24);
  color: #111827;
  box-shadow: 0 12px 24px rgba(189, 125, 36, 0.24);
}

.action-chip:hover {
  transform: translateY(-1px);
}

.action-chip.quiet,
.action-chip.outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.launch-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 32px;
}

.metric-block,
.card,
.info-tile,
.step-tile,
.voice-card,
.answer-tile-grid details,
.mini-route {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.metric-block {
  padding: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.metric-block > strong {
  display: block;
  font-size: 18px;
}

.metric-block > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.metric-block span strong {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}

section {
  padding: 72px 0;
}

.paper-band {
  background: var(--paper-2);
}

.deep-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 13, 22, 0.94), rgba(122, 31, 43, 0.92)),
    url("../photography/vip-lounge-rewards.jpg") center / cover no-repeat;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title h2,
.story-copy h2,
.feature-lane h2,
.reading-note-panel-visual h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p,
.soft-copy,
.reading-note-panel p,
.card p,
.mini-route span,
.featured-title span {
  color: var(--muted);
}

.deep-band .section-title p,
.deep-band .soft-copy,
.deep-band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-title-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-title {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.featured-title img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.featured-title::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.82) 100%);
}

.featured-title strong,
.featured-title span {
  position: relative;
  z-index: 1;
}

.featured-title strong {
  font-size: 22px;
  line-height: 1.1;
}

.featured-title span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.featured-title:hover img {
  transform: scale(1.05);
}

.prize-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 13, 22, 0.95), rgba(36, 59, 115, 0.82)),
    url("../photography/slot-machine-aisle.jpg") center / cover no-repeat;
}

.prize-scene {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.prize-scene img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.prize-meter {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(420px, calc(100% - 56px));
  padding: 24px;
  border-radius: 14px;
  background: rgba(9, 13, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.prize-label {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.prize-meter strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.story-band,
.feature-lane,
.reading-note-panel-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.story-copy p,
.feature-lane p {
  margin-top: 16px;
}

.visual-frame,
.reading-note-panel-visual {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.visual-frame img,
.reading-note-panel-visual img,
.mini-route > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-frame {
  aspect-ratio: 4 / 3;
}

.reading-note-panel-visual {
  padding: 0;
  background: #111827;
  color: #fff;
}

.reading-note-panel-visual > div {
  padding: 34px;
}

.reading-note-panel-visual img {
  min-height: 320px;
}

.reading-note-panel-visual p {
  color: rgba(255, 255, 255, 0.76);
}

.label-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #16110a;
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

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

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

.card,
.info-tile,
.step-tile {
  padding: 22px;
}

.deep-band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.card h3,
.info-tile h3,
.step-tile h3 {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.tile-mark,
.step-badge {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.tick-list,
.copy-list,
.reading-note-panel ul,
.reading-note-panel ol {
  padding-left: 20px;
}

.tick-list li + li,
.copy-list li + li,
.reading-note-panel li + li {
  margin-top: 9px;
}

.keyword-strip,
.topic-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.keyword-strip span,
.topic-ribbon span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.09);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.note-panel,
.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.reading-note-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.reading-note-panel h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--night);
}

.reading-note-panel h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

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

.table-card {
  max-width: 100%;
  overflow-x: auto;
  border-radius: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 12px;
}

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

.table th {
  color: #fff;
  background: var(--night-2);
}

.game-launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 26px;
  align-items: center;
}

.game-poster {
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow);
}

.game-poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.game-poster strong {
  display: block;
  padding: 14px 16px;
}

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

.spec {
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.conversion-note-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 34px 0;
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(122, 31, 43, 0.92), rgba(17, 24, 39, 0.9)),
    url("../photography/casino-floor-hero.jpg") center / cover no-repeat;
}

.related-games {
  margin-top: 36px;
}

.mini-route {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fff;
}

.mini-route > img {
  aspect-ratio: 16 / 10;
}

.mini-route strong,
.mini-route span {
  display: block;
  padding: 0 14px;
}

.mini-route strong {
  padding-top: 14px;
  font-size: 17px;
}

.mini-route span {
  padding-bottom: 16px;
  font-size: 14px;
}

.update-casino-board {
  background:
    linear-gradient(180deg, #fff8ed 0%, #f4f7fb 100%);
}

.update-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(240px, 0.62fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.update-board-lead,
.update-feature-card,
.update-action-list {
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.update-board-lead {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 34px;
  color: #fff;
  background: #101522;
}

.update-board-lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-board-lead::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 21, 34, 0.1), rgba(16, 21, 34, 0.95));
}

.update-board-lead > :not(img) {
  position: relative;
  z-index: 1;
}

.update-board-lead h2 {
  margin: 12px 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
}

.update-board-lead p,
.update-feature-card p,
.update-action-list small {
  color: rgba(255, 255, 255, 0.76);
}

.update-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(122, 31, 43, 0.18), rgba(122, 31, 43, 0.92)),
    url("../ph365-games/fa-cai-shen-2.webp") center / cover no-repeat;
}

.update-feature-card span,
.update-action-list span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-feature-card h3 {
  font-size: 28px;
  line-height: 1.05;
}

.update-feature-card a,
.update-action-list a {
  color: inherit;
  font-weight: 900;
}

.update-action-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: #151d2e;
}

.update-action-list a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--gold-2);
}

.update-action-list strong,
.update-action-list small {
  grid-column: 2;
}

.category-showroom {
  background: #fffaf1;
}

.category-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, auto);
  gap: 16px;
}

.category-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 250px;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.category-panel.wide {
  grid-column: span 2;
}

.category-panel.tall {
  grid-row: span 2;
}

.category-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(5, 9, 18, 0.82));
}

.category-panel:hover img {
  transform: scale(1.05);
}

.category-panel span,
.category-panel strong,
.category-panel small {
  position: relative;
  z-index: 1;
}

.category-panel span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-panel strong {
  font-size: 24px;
  line-height: 1.05;
}

.category-panel small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.game-cover-grid {
  align-items: stretch;
}

.game-list-section .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.game-list-section .tabs a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #111827;
  background: rgba(244, 183, 64, 0.2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.game-list-section h2 {
  margin: 34px 0 18px;
}

.game-card {
  color: inherit;
  text-decoration: none;
}

.game-card.ph365-game-card,
.mini-route.ph365-mini-route {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card.ph365-game-card:hover,
.mini-route.ph365-mini-route:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.game-card.ph365-game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.game-card.ph365-game-card strong,
.game-card.ph365-game-card span {
  display: block;
  padding-inline: 16px;
}

.game-card.ph365-game-card strong {
  padding-top: 14px;
  font-size: 18px;
  line-height: 1.12;
}

.game-card.ph365-game-card > span {
  padding-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 16px 16px;
}

.game-badges em {
  padding: 5px 8px;
  border-radius: 999px;
  color: #111827;
  background: rgba(244, 183, 64, 0.28);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.mini-route.ph365-mini-route > img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mini-route.ph365-mini-route span em {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #111827;
  background: rgba(244, 183, 64, 0.35);
  font-style: normal;
  font-weight: 900;
}

.voice-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  padding: 20px;
}

.voice-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.voice-head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-head span,
.star-score {
  color: var(--muted);
  font-size: 13px;
}

.star-score {
  margin-top: 12px;
  color: var(--gold);
}

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

.answer-tile-grid details {
  padding: 18px;
}

.answer-tile-grid summary {
  cursor: pointer;
  font-weight: 900;
}

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

.download-slide,
.download-app-top,
.benefit-tile-grid,
.update-tile-grid,
.howto-tile-grid {
  display: grid;
  gap: 18px;
}

.download-page {
  background:
    linear-gradient(180deg, rgba(9, 13, 22, 0.06), transparent 440px),
    var(--paper);
}

.download-showcase {
  padding: 58px 0 32px;
}

.download-showcase .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 18px 34px;
  align-items: center;
}

.download-trail {
  grid-column: 1;
  align-self: end;
}

.download-showcase .eyebrow,
.download-showcase h1,
.download-intro-line {
  grid-column: 1;
}

.download-showcase h1 {
  margin: 10px 0 0;
  max-width: 640px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
}

.download-intro-line {
  max-width: 620px;
  margin: 0;
  color: #3f4656;
}

.download-main-action-chip,
.download-now,
.download-apk-action-chip,
.download-ios-action-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #101522;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(215, 169, 75, 0.25);
}

.download-main-action-chip {
  grid-column: 1;
  margin-top: 4px;
}

.download-slider {
  grid-column: 2;
  grid-row: 1 / span 6;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.download-slide {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.download-slide.is-current {
  grid-row: span 2;
}

.download-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(9, 13, 22, 0.78));
}

.download-slide span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
}

.download-dots {
  display: none;
}

.download-narrow {
  width: min(1040px, calc(100% - 36px));
}

.download-app-section,
.download-install-section,
.download-version-section {
  padding: 28px 0;
}

.download-app-card,
.download-install-shell,
.download-version-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--soft-shadow);
}

.download-app-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.download-app-top {
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
}

.download-app-top img {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(13, 17, 29, 0.18);
}

.download-app-top h2,
.download-section-title h2,
.download-version-top h2 {
  margin: 0;
}

.download-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 8px 0;
}

.download-pills span,
.download-bottom-tile-marks span,
.download-safe-footer span,
.download-version-top > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(215, 169, 75, 0.18);
  color: #5f4311;
  font-size: 12px;
  font-weight: 900;
}

.download-secure {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.download-secure span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14b87a;
}

.download-install-shell {
  padding: 28px;
}

.download-section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: 18px 34px;
  align-items: end;
}

.download-section-title .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.download-section-title p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.download-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.download-tabs button {
  min-width: 92px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.download-tabs button.is-current {
  color: #fff;
  background: var(--night-2);
}

.download-process-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.download-process-head h3 {
  margin: 0;
}

.download-process-head span {
  color: var(--teal);
  font-weight: 900;
}

.download-progress {
  height: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.12);
}

.download-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.download-step-tile {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.download-step-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #101522;
  background: var(--gold-2);
  font-weight: 900;
}

.download-step-badge.dark {
  color: #fff;
  background: var(--night-2);
}

.download-code,
.download-preview-box,
.download-file,
.download-game-preview,
.download-ios-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.72);
}

.download-code {
  margin: 12px 0;
  padding: 12px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
}

.download-preview-box,
.download-file {
  display: grid;
  gap: 3px;
  padding: 12px;
}

.download-file {
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  margin-top: 12px;
}

.download-file em {
  display: block;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) 68%, rgba(17, 24, 39, 0.12) 68%);
}

.download-game-preview {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin-top: 12px;
}

.download-game-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.download-game-preview strong {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.download-note,
.download-app-card small,
.download-file small {
  color: var(--muted);
}

.download-ios-setup {
  display: grid;
  gap: 14px;
}

.download-ios-card {
  padding: 18px;
}

.download-ios-card.highlight {
  background: #fff;
}

.download-troubleshooting {
  margin-top: 24px;
}

.download-troubleshooting details {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.download-troubleshooting summary {
  cursor: pointer;
  font-weight: 900;
}

.download-safe-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.download-safe-footer p {
  margin: 0 0 0 auto;
  color: var(--muted);
}

.download-version-card {
  padding: 24px;
}

.download-version-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.download-shield {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--night-2));
  font-weight: 900;
}

.download-version-main,
.download-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.download-version-main > div,
.download-card-grid > div {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.download-version-main strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.download-version-main span,
.download-card-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.download-bottom-tile-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.compact-title {
  margin-bottom: 28px;
}

.reward-market {
  color: #fff;
  background:
    radial-gradient(circle at 14% 16%, rgba(244, 183, 64, 0.24), transparent 28%),
    linear-gradient(145deg, #101522 0%, #1b2338 48%, #331727 100%);
}

.reward-market .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.reward-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.64fr) minmax(250px, 0.72fr);
  grid-template-areas:
    "hero tickets rules"
    "mini mini rules";
  gap: 18px;
}

.reward-hero-card,
.reward-rules-card,
.reward-ticket,
.reward-mini-row a,
.task-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--soft-shadow);
}

.reward-hero-card {
  position: relative;
  grid-area: hero;
  min-height: 500px;
  border-radius: 18px;
  background: #111827;
}

.reward-hero-card img,
.reward-rules-card img,
.task-board-copy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reward-hero-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(9, 13, 22, 0.28) 45%, rgba(9, 13, 22, 0.9) 100%);
}

.reward-hero-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.reward-hero-copy h3,
.reward-rules-card h3,
.task-board-copy h2 {
  margin: 10px 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.reward-hero-copy p,
.reward-rules-card li,
.task-board-copy p,
.task-lane small,
.reward-ticket small,
.reward-mini-row small {
  color: rgba(255, 255, 255, 0.74);
}

.reward-hero-copy a,
.reward-rules-card a,
.reward-ticket,
.reward-mini-row a,
.task-lane {
  color: inherit;
  text-decoration: none;
}

.reward-hero-copy a,
.reward-rules-card a {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold-2);
  font-weight: 900;
}

.reward-ticket-stack {
  grid-area: tickets;
  display: grid;
  gap: 14px;
}

.reward-ticket {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 4px 14px;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.reward-ticket:hover,
.reward-mini-row a:hover,
.task-lane:hover {
  transform: translateY(-3px);
}

.reward-ticket span,
.reward-mini-row span,
.task-lane span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #111827;
  background: var(--gold-2);
  font-weight: 900;
}

.reward-ticket strong,
.reward-ticket small {
  grid-column: 2;
}

.deposit-ticket { background: linear-gradient(135deg, rgba(244, 183, 64, 0.24), rgba(255, 255, 255, 0.07)); }
.rebate-ticket { background: linear-gradient(135deg, rgba(20, 184, 166, 0.24), rgba(255, 255, 255, 0.07)); }
.spins-ticket { background: linear-gradient(135deg, rgba(244, 114, 182, 0.22), rgba(255, 255, 255, 0.07)); }
.live-ticket { background: linear-gradient(135deg, rgba(96, 165, 250, 0.24), rgba(255, 255, 255, 0.07)); }

.reward-rules-card {
  grid-area: rules;
  display: grid;
  grid-template-rows: 220px minmax(0, 1fr);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.reward-rules-card > div {
  padding: 22px;
}

.reward-rules-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.reward-rules-card li + li {
  margin-top: 10px;
}

.reward-mini-row {
  grid-area: mini;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reward-mini-row a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.reward-mini-row strong,
.reward-mini-row small {
  grid-column: 2;
}

.task-guide-band {
  background: #f5f7fb;
}

.task-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  border-radius: 20px;
  color: #fff;
  background: #101522;
}

.task-board-copy {
  position: relative;
  min-height: 560px;
  padding: 36px;
}

.task-board-copy::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 21, 34, 0.18), rgba(16, 21, 34, 0.92));
}

.task-board-copy > :not(img) {
  position: relative;
  z-index: 1;
}

.task-board-copy img {
  position: absolute;
  inset: 0;
}

.task-lanes {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
    #151d2e;
}

.task-lane {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: 16px;
  border-left: 5px solid var(--gold-2);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.task-lane strong,
.task-lane small {
  display: block;
}

.task-lane strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.mobile-lane { border-left-color: #14b8a6; }
.cashier-lane { border-left-color: #60a5fa; }
.reward-lane { border-left-color: #f472b6; }
.game-lane { border-left-color: #a3e635; }
.path-lane { border-left-color: #fb923c; }

.floating-offers {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: min(460px, calc(100vw - 44px));
  padding: 12px;
  border-radius: 16px;
  background: rgba(9, 13, 22, 0.92);
  box-shadow: var(--shadow);
  display: none;
}

.floating-offers[hidden] {
  display: none;
}

.floating-dismiss {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  cursor: pointer;
}

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

.floating-offer-link {
  overflow: hidden;
  border-radius: 10px;
  background: #111827;
}

.floating-offer-link img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.harbor-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #080c18;
}

.footer-lane {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.7fr));
  gap: 30px;
}

.footer-routes {
  display: grid;
  gap: 8px;
}

.footer-routes strong {
  color: #fff;
}

.footer-routes a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

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

@media (max-width: 860px) {
  body.drawer-is-current,
  body.region-is-open {
    overflow: hidden;
  }

  body.drawer-is-current .harbor-header {
    position: fixed;
    inset: 0;
    z-index: 1000;
    height: 100dvh;
    overflow: visible;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .signal-strip {
    display: none;
  }

  .routebar {
    grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
    gap: 12px;
    min-height: 80px;
    padding: 10px 0;
  }

  .routebar-core {
    display: contents;
  }

  .crest-link {
    grid-column: 2;
    justify-self: center;
  }

  .crest-mark {
    width: 58px;
    height: 58px;
  }

  .region-switcher {
    grid-column: 3;
    justify-self: end;
  }

  .route-links {
    display: none;
  }

  .pocket-menu-action-chip {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    grid-column: 1;
    justify-self: start;
  }

  .pocket-menu-action-chip span,
  .pocket-menu-action-chip span::before,
  .pocket-menu-action-chip span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    content: "";
  }

  .pocket-menu-action-chip span::before {
    transform: translateY(-6px);
  }

  .pocket-menu-action-chip span::after {
    transform: translateY(4px);
  }

  .pocket-category-rail {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 7px 12px 10px;
    background: rgba(255, 255, 255, 0.06);
  }

  .pocket-category-rail a {
    display: grid;
    place-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 11px;
  }

  .pocket-category-rail img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
  }

  .drawer-veil {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(4, 7, 14, 0.74);
    backdrop-filter: blur(4px);
  }

  .drawer-is-current .drawer-veil {
    display: block;
  }

  .pocket-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    display: block;
    width: min(420px, calc(100vw - 58px));
    height: 100dvh;
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #111827;
    transform: translateX(-105%);
    transition: transform 180ms ease;
    box-shadow: 22px 0 42px rgba(0, 0, 0, 0.38);
  }

  .drawer-is-current .pocket-drawer {
    transform: translateX(0);
  }

  .drawer-dismiss {
    position: fixed;
    top: 16px;
    right: 10px;
    z-index: 110;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 24, 39, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
    cursor: pointer;
  }

  .drawer-dismiss::before {
    content: "\00d7";
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
  }

  .drawer-is-current .drawer-dismiss {
    display: grid;
  }

  .drawer-finder {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
    margin-bottom: 16px;
  }

  .drawer-finder input {
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    padding: 0 12px;
  }

  .drawer-finder button {
    border: 0;
    border-radius: 10px;
    background: var(--gold);
  }

  .drawer-routes {
    display: grid;
    gap: 6px;
  }

  .drawer-routes a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .drawer-region {
    margin-bottom: 16px;
  }

  .drawer-region p {
    margin: 0 0 8px;
    color: var(--gold-2);
    font-weight: 900;
  }

  .launch-panel {
    min-height: 620px;
  }

  .launch-metrics,
  .section-title,
  .story-band,
  .feature-lane,
  .reading-note-panel-visual,
  .reward-showcase,
  .task-board,
  .update-board,
  .game-launch-panel,
  .conversion-note-panel,
  .footer-lane {
    grid-template-columns: 1fr;
  }

  .reward-showcase {
    grid-template-areas:
      "hero"
      "tickets"
      "rules"
      "mini";
  }

  .reward-hero-card,
  .task-board-copy {
    min-height: 430px;
  }

  .featured-title-tile-grid,
  .tile-grid.three-up,
  .tile-grid.four-up,
  .tile-grid.cols-2,
  .voice-tile-grid,
  .answer-tile-grid,
  .spec-tile-grid,
  .reward-mini-row,
  .category-mosaic,
  .download-showcase .shell,
  .download-section-title,
  .download-version-main,
  .download-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-showcase .shell {
    grid-template-columns: 1fr;
  }

  .download-showcase .eyebrow,
  .download-showcase h1,
  .download-intro-line,
  .download-trail,
  .download-main-action-chip,
  .download-slider {
    grid-column: 1;
    grid-row: auto;
  }

  .download-slider {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 190px;
  }

  .download-section-title {
    grid-template-columns: 1fr;
  }

  .category-panel.wide,
  .category-panel.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .update-board-lead {
    min-height: 430px;
  }

  .featured-title {
    min-height: 250px;
  }

  .reading-note-panel {
    padding: 26px;
  }

  .floating-offers {
    display: none;
  }
}

@media (max-width: 540px) {
  .shell,
  .signal-strip,
  .routebar {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  section {
    padding: 52px 0;
  }

  .region-action-chip span {
    display: none;
  }

  .launch-panel {
    min-height: 640px;
    background-position: 64% center;
    max-width: 100vw;
    overflow: hidden;
  }

  .launch-panel .shell {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 64px 0 48px;
  }

  .launch-copy h1,
  .reading-note-panel h1 {
    font-size: clamp(32px, 9.4vw, 38px);
  }

  .launch-copy .intro-line {
    font-size: 15px;
    line-height: 1.55;
  }

  .launch-copy .eyebrow {
    font-size: 11px;
    line-height: 1.35;
  }

  .launch-copy,
  .launch-copy .intro-line,
  .launch-copy p,
  .launch-copy h1,
  .launch-actions,
  .launch-actions .action-chip {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .launch-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .launch-actions .action-chip {
    width: 100%;
    padding-inline: 12px;
    text-align: center;
  }

  .download-showcase {
    padding: 34px 0 18px;
  }

  .download-showcase h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.02;
  }

  .download-slider {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .download-slide,
  .download-slide.is-current {
    min-height: 220px;
    grid-row: auto;
  }

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

  .download-app-card,
  .download-app-top,
  .download-steps,
  .download-step-tile,
  .download-file,
  .download-version-top,
  .download-version-main,
  .download-card-grid {
    grid-template-columns: 1fr;
  }

  .download-app-card,
  .download-install-shell,
  .download-version-card {
    padding: 18px;
  }

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

  .download-main-action-chip,
  .download-now,
  .download-apk-action-chip,
  .download-ios-action-chip {
    width: 100%;
  }

  .download-process-head,
  .download-safe-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-safe-footer p {
    margin-left: 0;
  }

  .download-game-preview img {
    height: 220px;
  }

  .reward-market .section-title,
  .compact-title {
    margin-bottom: 22px;
  }

  .reward-hero-card,
  .task-board-copy {
    min-height: 380px;
  }

  .reward-ticket-stack,
  .reward-mini-row,
  .task-lanes {
    gap: 10px;
  }

  .reward-mini-row,
  .reward-ticket,
  .task-lane {
    grid-template-columns: 1fr;
  }

  .reward-ticket strong,
  .reward-ticket small,
  .reward-mini-row strong,
  .reward-mini-row small {
    grid-column: auto;
  }

  .reward-ticket span,
  .reward-mini-row span,
  .task-lane span {
    width: 48px;
  }

  .reward-hero-copy,
  .reward-rules-card > div,
  .task-board-copy,
  .task-lanes {
    padding: 20px;
  }

  .reward-rules-card {
    grid-template-rows: 180px minmax(0, 1fr);
  }

  .update-board-lead {
    min-height: 360px;
    padding: 22px;
  }

  .update-action-list a {
    grid-template-columns: 1fr;
  }

  .update-action-list strong,
  .update-action-list small {
    grid-column: auto;
  }

  .table-card .table {
    min-width: 620px;
  }

  .featured-title-tile-grid,
  .tile-grid.three-up,
  .tile-grid.four-up,
  .tile-grid.cols-2,
  .voice-tile-grid,
  .answer-tile-grid,
  .spec-tile-grid,
  .reward-mini-row,
  .category-mosaic {
    grid-template-columns: 1fr;
  }

  .category-panel {
    min-height: 260px;
  }

  .featured-title {
    min-height: 230px;
  }

  .prize-scene img {
    height: 340px;
  }

  .prize-meter {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .reading-note-panel {
    padding: 20px;
    border-radius: 14px;
  }
}
