/* Ice Fishing - Tower Rush inspired casino interface */
:root {
  --bg: #05070d;
  --bg-2: #071321;
  --panel: rgba(9, 18, 31, .88);
  --panel-2: rgba(14, 26, 44, .82);
  --line: rgba(255, 255, 255, .13);
  --line-hot: rgba(255, 182, 70, .38);
  --text: #f4fbff;
  --muted: #aec5d8;
  --ice: #6ee8ff;
  --blue: #2f9cff;
  --amber: #ffbd4a;
  --orange: #ff7438;
  --red: #ff385c;
  --violet: #9c7cff;
  --green: #6fff9a;
  --shadow: 0 18px 48px rgba(0, 0, 0, .44);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.64;
  background:
    linear-gradient(90deg, rgba(110, 232, 255, .06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 189, 74, .055) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #05070d 0%, #071321 46%, #180e18 75%, #091717 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(47, 156, 255, .18), transparent 34%),
    linear-gradient(250deg, rgba(255, 56, 92, .13), transparent 36%),
    linear-gradient(180deg, rgba(255, 189, 74, .08), transparent 48%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(5, 7, 13, .20), rgba(5, 7, 13, .68));
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: var(--ice); text-decoration: none; }
a:hover { color: #fff; }
p { margin: 0 0 14px; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(34px, 5.2vw, 70px); max-width: 980px; }
h2 { font-size: clamp(25px, 3vw, 42px); }
h3 { font-size: clamp(19px, 2vw, 25px); }
h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  min-width: 0;
}

p,
.lead,
.hero-subtitle {
  overflow-wrap: normal;
  word-break: normal;
  min-width: 0;
}

.cta-band,
.feature-card,
.step-card,
.tower-widget,
.slot-machine,
.payout-tile {
  overflow-wrap: break-word;
  min-width: 0;
}
ul, ol { margin: 0; padding-left: 22px; }
li + li { margin-top: 8px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #fff;
  color: #05070d;
}
.skip-link:focus { left: 10px; }

.legal-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 56, 92, .10);
  color: rgba(244, 251, 255, .84);
  font-size: 12px;
  text-align: center;
  padding: 7px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(5, 7, 13, .80);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(110, 232, 255, .34);
  box-shadow: 0 0 0 3px rgba(110, 232, 255, .08);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1;
}

.brand span span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
}

.nav a,
.tiny-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.nav a:hover,
.nav a.is-active,
.tiny-link:hover {
  color: #fff;
  border-color: rgba(110, 232, 255, .40);
  background: rgba(110, 232, 255, .08);
  transform: translateY(-1px);
}

.header-cta {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: var(--radius);
  color: #150b05;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 0 10px 28px rgba(255, 116, 56, .22);
}
.header-cta:hover { color: #150b05; filter: brightness(1.05); }

.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 54px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media { z-index: 0; }
.hero-media img { object-fit: cover; object-position: center; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, .96) 0%, rgba(5, 7, 13, .78) 44%, rgba(5, 7, 13, .22) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, .10) 0%, rgba(5, 7, 13, .95) 96%);
  pointer-events: none;
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 92px 18px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .58fr);
  gap: 28px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(110, 232, 255, .34);
  border-radius: var(--radius);
  background: rgba(110, 232, 255, .08);
  color: #ddfbff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-subtitle,
.lead {
  color: rgba(244, 251, 255, .86);
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 900px;
}
.hero-subtitle { margin-top: 18px; }
.mobile-heading-line { display: inline; }

.hero-actions,
.button-row,
.inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 1000;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  color: #150b05;
  background: linear-gradient(90deg, var(--amber), var(--orange) 58%, var(--red));
  box-shadow: 0 16px 36px rgba(255, 116, 56, .28);
}
.btn-primary:hover { color: #150b05; filter: brightness(1.06); transform: translateY(-1px); }

.btn-secondary {
  color: #041113;
  background: linear-gradient(90deg, var(--ice), var(--blue));
  box-shadow: 0 16px 36px rgba(110, 232, 255, .18);
}
.btn-secondary:hover { color: #041113; filter: brightness(1.06); transform: translateY(-1px); }

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
}
.btn-ghost:hover { color: #fff; border-color: rgba(110, 232, 255, .44); background: rgba(110, 232, 255, .08); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 860px;
}

.slot-machine {
  margin-top: 18px;
  max-width: 860px;
  border: 1px solid rgba(255, 189, 74, .30);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(5, 7, 13, .68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 18px 38px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.slot-machine-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 189, 74, .08);
  color: rgba(244, 251, 255, .88);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.slot-symbol {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04)),
    rgba(10, 18, 31, .82);
  color: #fff;
  text-align: center;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px rgba(110, 232, 255, .08);
}

.slot-symbol.leaf { color: var(--ice); }
.slot-symbol.multi { color: var(--amber); }
.slot-symbol.blue { color: #8cecff; }
.slot-symbol.orange { color: var(--orange); }
.slot-symbol.red { color: var(--red); }

.slot-payline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 10px 10px;
}

.payline-item {
  min-height: 50px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
}
.payline-item b {
  display: block;
  color: #fff;
  line-height: 1.1;
}
.payline-item span {
  color: var(--muted);
  font-size: 12px;
}

.stat-tile,
.metric {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(3, 8, 16, .58);
  padding: 12px;
}

.stat-tile b,
.metric b {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1;
}
.stat-tile span,
.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 7px;
}

.tower-widget {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 15, 27, .94), rgba(11, 18, 32, .88)),
    repeating-linear-gradient(90deg, rgba(255, 189, 74, .11) 0 1px, transparent 1px 14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tower-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 11px 12px;
  background: rgba(255, 255, 255, .05);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.tower-screen {
  padding: 16px;
}

.tower-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

.tower-title strong {
  color: var(--amber);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 189, 74, .38);
}

.tower-title span {
  color: var(--muted);
  font-size: 12px;
}

.tower-levels {
  display: grid;
  gap: 8px;
}

.tower-floor {
  min-height: 44px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tower-floor.is-active {
  transform: translateX(4px);
  border-color: rgba(255, 189, 74, .45);
  background: rgba(255, 189, 74, .11);
}

.tower-floor b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: #081018;
  background: var(--ice);
  font-size: 13px;
}

.tower-floor small {
  color: var(--muted);
  font-size: 12px;
}
.tower-floor strong { color: #fff; }
.tower-floor strong,
.tower-floor .win { min-width: 0; }
.tower-floor .win { color: var(--amber); font-weight: 1000; }
.tower-floor.red .win { color: var(--red); }
.tower-floor.orange .win { color: var(--orange); }
.tower-floor.blue .win { color: var(--ice); }

.content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 34px 18px 92px;
  min-width: 0;
}

.band {
  margin: 0 calc(50% - 50vw);
  padding: 58px max(18px, calc((100vw - var(--max)) / 2 + 18px));
  border-top: 1px solid rgba(255, 255, 255, .09);
  min-width: 0;
}

.band:nth-child(even) {
  background: rgba(255, 255, 255, .032);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-bottom: 26px;
  min-width: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 900px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.payout-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.payout-tile {
  min-height: 130px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035)),
    rgba(9, 18, 31, .78);
}

.payout-tile b {
  display: block;
  color: var(--amber);
  font-size: 24px;
  line-height: 1;
}
.payout-tile strong {
  display: block;
  margin-top: 9px;
  color: #fff;
}
.payout-tile span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.feature-card,
.step-card,
.faq-card,
.tool-panel,
.notice {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 23, 39, .84), rgba(8, 14, 25, .74));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
}

.feature-card,
.step-card,
.faq-card,
.notice {
  padding: 18px;
}

.feature-card p,
.step-card p,
.faq-card p,
.notice p {
  color: var(--muted);
  margin-bottom: 0;
}

.tag {
  width: fit-content;
  padding: 4px 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(110, 232, 255, .30);
  border-radius: 6px;
  color: #ddfbff;
  background: rgba(110, 232, 255, .08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.steps { counter-reset: steps; }
.step-card {
  position: relative;
  min-height: 210px;
}
.step-card::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 6px;
  color: #140c05;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 1000;
}

.table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, .48);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th, td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

td { color: var(--muted); }
td:first-child { color: var(--amber); font-weight: 950; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .54fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
}

.band > *,
.split > *,
.header-inner > * {
  min-width: 0;
  max-width: 100%;
}

.side-panel {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 12px;
}

.tool-panel { padding: 16px; }
.tool-panel h3 { margin-bottom: 10px; }
.tool-panel p { color: var(--muted); }

.image-frame {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 74, .30);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(47, 156, 255, .18), rgba(255, 189, 74, .14) 44%, rgba(255, 56, 92, .16)),
    rgba(7, 12, 22, .90);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(244, 251, 255, .86); max-width: 860px; margin-top: 10px; }

.faq-list { display: grid; gap: 10px; }
details.faq-card { padding: 0; overflow: hidden; }
details.faq-card summary {
  cursor: pointer;
  padding: 17px 18px;
  color: #fff;
  font-weight: 1000;
  list-style: none;
}
details.faq-card summary::-webkit-details-marker { display: none; }
details.faq-card p { padding: 0 18px 18px; }

.page-hero {
  position: relative;
  padding: 74px max(18px, calc((100vw - var(--max)) / 2 + 18px)) 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, .96), rgba(5, 7, 13, .58)),
    url("images/ice-fishing-preview.png") center / cover no-repeat;
}
.page-hero h1 { margin-top: 12px; }
.page-hero .lead { margin-top: 16px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0 0;
}
.breadcrumbs a { color: rgba(244, 251, 255, .78); font-weight: 850; }

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  width: min(620px, calc(100% - 28px));
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #150b05;
  background: linear-gradient(90deg, var(--amber), var(--orange), var(--red));
  font-weight: 1000;
  box-shadow: 0 18px 44px rgba(255, 56, 92, .34);
}

#scrollTopBtn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 91;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, .72);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
#scrollTopBtn.is-visible { opacity: 1; pointer-events: auto; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 30px 18px 86px;
  color: var(--muted);
  background: rgba(0, 0, 0, .20);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mirror-layout {
  min-height: calc(100vh - 96px);
  display: grid;
  place-items: center;
  padding: 44px 18px 74px;
}

.mirror-console {
  width: min(980px, 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 156, 255, .18), transparent 36%),
    linear-gradient(225deg, rgba(255, 56, 92, .14), transparent 38%),
    rgba(8, 14, 27, .94);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mirror-console main { padding: 24px; }
.mirror-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.mirror-note {
  margin-top: 16px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, .045);
}

.small-muted { color: var(--muted); font-size: 13px; }
.mt-16 { margin-top: 16px; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav { grid-column: 1 / -1; justify-content: flex-start; max-width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { flex: 0 0 auto; }
  .hero-inner,
  .split { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .grid,
  .grid.four,
  .payout-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  h1 { font-size: clamp(27px, 7.8vw, 32px); line-height: 1.14; }
  h2 { font-size: clamp(23px, 7vw, 32px); }
  .mobile-heading-line { display: block; }
  .hero-subtitle,
  .lead { font-size: 16px; }
  .legal-strip { text-align: left; font-size: 11px; line-height: 1.45; }
  .header-inner { padding: 10px 14px; gap: 10px; }
  .brand span span { display: none; }
  .header-cta { padding-inline: 10px; }
  .hero { min-height: auto; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, .78) 0%, rgba(5, 7, 13, .94) 48%, rgba(5, 7, 13, .98) 100%),
      linear-gradient(90deg, rgba(5, 7, 13, .92), rgba(5, 7, 13, .52));
  }
  .hero-media img { object-position: center top; }
  .hero-inner { padding: 42px 14px 28px; }
  .hero-stats,
  .grid,
  .grid.two,
  .grid.four,
  .payout-grid,
  .mirror-actions { grid-template-columns: 1fr; }
  .slot-reels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slot-symbol { min-height: 58px; }
  .slot-payline { grid-template-columns: 1fr; }
  .tower-title { align-items: stretch; flex-direction: column; }
  .tower-floor { grid-template-columns: 34px minmax(0, 1fr); }
  .tower-floor .win { grid-column: 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: stretch; flex-direction: column; }
  .tiny-link { width: 100%; }
  .content { padding-inline: 0; }
  .band { margin-inline: 0; padding-inline: 18px; }
  .band { padding-top: 42px; padding-bottom: 42px; }
  .btn-primary,
  .btn-secondary,
  .btn-ghost { width: 100%; white-space: normal; text-align: center; }
  #scrollTopBtn { display: none; }
}
