:root {
  --bg: #061f2d;
  --bg-dark: #03131e;
  --bg-deep: #020b12;

  --panel: rgba(8, 39, 56, 0.94);
  --panel-2: rgba(11, 51, 72, 0.92);
  --panel-soft: rgba(15, 63, 86, 0.72);

  --line: rgba(102, 214, 255, 0.16);
  --line-gold: rgba(255, 211, 80, 0.24);

  --text: #f4fbff;
  --muted: #a9c4d2;

  --cyan: #56d9ff;
  --cyan-2: #13a6d8;
  --blue: #0c6e99;

  --gold: #ffd34d;
  --gold-2: #ffb319;
  --green: #a6ff5c;

  --shadow: 0 22px 54px rgba(0, 0, 0, 0.48);
  --radius-xl: 26px;
  --radius-lg: 20px;

  --container: 1180px;
  --footer-height: 94px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(86, 217, 255, 0.12), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(255, 211, 77, 0.10), transparent 24%),
    radial-gradient(circle at 50% 90%, rgba(19, 166, 216, 0.12), transparent 32%),
    linear-gradient(180deg, #06283a 0%, #041b29 42%, #020b12 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(86, 217, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 217, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.46;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

/* =========================
   WIN TICKER
========================= */

.win-ticker {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 38px;
  background: #082b3e;
  border-bottom: 1px solid rgba(86, 217, 255, 0.12);
  overflow: hidden;
}

.win-ticker-inner {
  width: 100%;
  max-width: var(--container);
  height: 38px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.ticker-badge {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  padding: 5px 12px;
  border-radius: 7px;
  color: #063000;
  background: linear-gradient(180deg, #d9ff8b, #8df04f);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 14px rgba(166, 255, 92, 0.22);
}

.ticker-track {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  color: #d8f7ff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  will-change: transform;
  animation: tickerMove 32s linear infinite;
}

.ticker-track span {
  flex: 0 0 auto;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-70%);
  }
}

/* =========================
   WD RANDOM POPUP
========================= */

.wd-popup {
  position: fixed;
  top: 128px;
  left: 50%;
  z-index: 2147483647;
  width: auto;
  min-width: 360px;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #effbff;
  background:
    linear-gradient(135deg, rgba(4, 25, 38, 0.98), rgba(1, 12, 20, 0.98));
  border: 1px solid rgba(86, 217, 255, 0.24);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(86, 217, 255, 0.10);
  transform: translate(-50%, -14px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.wd-popup.is-show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.wd-popup-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08202b;
  background: linear-gradient(135deg, #f8ffe7, var(--gold));
  font-size: 16px;
  box-shadow: 0 0 16px rgba(255, 211, 77, 0.24);
}

.wd-popup-text {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #eefbff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.wd-popup-text strong {
  color: var(--gold);
  font-weight: 950;
}

.wd-popup-text b {
  color: #a6ff5c;
  font-weight: 950;
}

/* =========================
   HEADER
========================= */

.top-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(4, 27, 42, 0.98), rgba(4, 27, 42, 0.86));
  border-bottom: 1px solid rgba(86, 217, 255, 0.11);
  backdrop-filter: blur(14px);
}

.top-header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 78px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.top-brand-logo {
  width: auto;
  max-width: 214px;
  max-height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(86, 217, 255, 0.28))
    drop-shadow(0 0 12px rgba(255, 211, 77, 0.18));
}

.top-header-chip {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff3bf;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 211, 77, 0.08), rgba(86, 217, 255, 0.04)),
    rgba(1, 12, 20, 0.58);
  border: 1px solid rgba(255, 211, 77, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.android-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  color: var(--gold);
}

.android-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* =========================
   LAYOUT
========================= */

.content-shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 20px 0;
}

.hero-card,
.section-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(86, 217, 255, 0.06), rgba(255, 211, 77, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card::before,
.section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(86, 217, 255, 0.16), transparent),
    radial-gradient(circle at top left, rgba(255, 211, 77, 0.08), transparent 34%);
}

.hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 210px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 211, 77, 0.95), rgba(86, 217, 255, 0.65), transparent);
  box-shadow: 0 0 18px rgba(255, 211, 77, 0.22);
  z-index: 2;
}

/* =========================
   HERO
========================= */

.hero-card {
  padding: 34px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.hero-title {
  margin: 0 0 18px;
  max-width: 580px;
  font-size: 68px;
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -2px;
  text-shadow: 0 14px 28px rgba(0,0,0,0.36);
}

.hero-title span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #e9fbff 0%, #57dfff 28%, #ffd34d 74%, #ffb319 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(86, 217, 255, 0.18));
}

.hero-subtitle {
  margin: 0;
  max-width: 560px;
  color: #e5f8ff;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 800;
}

.hero-note {
  margin: 18px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-download-btn {
  margin-top: 26px;
  max-width: 390px;
}

/* =========================
   HERO VIDEO MINI
========================= */

.hero-video-mini {
  margin-top: 22px;
  max-width: 460px;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(86, 217, 255, 0.07), rgba(255, 211, 77, 0.035)),
    rgba(1, 13, 22, 0.42);
  border: 1px solid rgba(86, 217, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero-video-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-video-copy span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
}

.hero-video-copy strong {
  color: #f4fbff;
  font-size: 15px;
  font-weight: 950;
  text-align: right;
}

.hero-video-btn {
  width: 100%;
  min-height: 44px;
  margin: 0 0 12px;
  border-radius: 14px;
  font-size: 13px;
}

.hero-video-frame {
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.hero-chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip-row span {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #dff8ff;
  background: rgba(1, 13, 22, 0.38);
  border: 1px solid rgba(86, 217, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
}

/* =========================
   HERO APP DISPLAY
========================= */

.hero-visual {
  min-width: 0;
}

.lobby-panel {
  position: relative;
  min-height: 540px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 211, 77, 0.10), transparent 30%),
    radial-gradient(circle at 50% 82%, rgba(86, 217, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(5, 31, 47, 0.98), rgba(2, 13, 22, 0.96));
  border: 1px solid rgba(86, 217, 255, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 48px rgba(0,0,0,0.34);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.jackpot-screen {
  position: relative;
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(1, 10, 16, 0.96), rgba(1, 18, 28, 0.96));
  border: 1px solid rgba(255, 211, 77, 0.22);
  box-shadow:
    inset 0 0 18px rgba(86, 217, 255, 0.08),
    0 12px 24px rgba(0,0,0,0.28);
}

.jackpot-screen::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1px dashed rgba(86, 217, 255, 0.12);
  pointer-events: none;
}

.jackpot-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
}

.jackpot-screen strong {
  display: block;
  color: #f6fbff;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 1px;
  text-shadow:
    0 0 12px rgba(86, 217, 255, 0.30),
    0 0 16px rgba(255, 211, 77, 0.18);
}

.phone-showcase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.phone-stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.phone-device {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 9 / 18.8;
  padding: 10px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(145deg, rgba(86, 217, 255, 0.14), rgba(255, 211, 77, 0.09)),
    #0a1822;
  border: 1px solid rgba(86, 217, 255, 0.22);
  box-shadow:
    0 40px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.28),
    0 0 30px rgba(86, 217, 255, 0.08);
  transform: rotate(-6deg);
  animation: phoneFloat 5.2s ease-in-out infinite;
}

.phone-device::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.phone-side-button {
  position: absolute;
  right: -3px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(13,30,42,0.95));
  box-shadow: 0 0 8px rgba(86, 217, 255, 0.14);
}

.phone-side-button--power {
  top: 124px;
  height: 76px;
}

.phone-side-button--vol-up {
  left: -3px;
  right: auto;
  top: 112px;
  height: 54px;
}

.phone-side-button--vol-down {
  left: -3px;
  right: auto;
  top: 176px;
  height: 54px;
}

.phone-reflection {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  bottom: 14px;
  border-radius: 34px;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 18%, transparent 35%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.phone-camera-dot {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 11px;
  height: 11px;
  margin-left: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2fe1ff, #091219 58%, #02070b 100%);
  box-shadow:
    0 0 10px rgba(47, 225, 255, 0.26),
    inset 0 0 6px rgba(255,255,255,0.15);
  z-index: 4;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 98px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #01060a, #07151d);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
  z-index: 3;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 34px 16px 18px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 211, 77, 0.20), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(86, 217, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #0b354a 0%, #03111b 100%);
  border: 1px solid rgba(86, 217, 255, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px dashed rgba(86, 217, 255, 0.12);
  pointer-events: none;
}

.phone-status-bar {
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 251, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
}

.phone-time {
  letter-spacing: 0.3px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.signal-bars i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: rgba(244, 251, 255, 0.88);
}

.signal-bars i:nth-child(1) {
  height: 4px;
}

.signal-bars i:nth-child(2) {
  height: 6px;
}

.signal-bars i:nth-child(3) {
  height: 9px;
}

.signal-bars i:nth-child(4) {
  height: 12px;
}

.battery-pill {
  width: 22px;
  height: 12px;
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(244, 251, 255, 0.85);
  display: inline-flex;
  align-items: center;
  padding: 1px;
}

.battery-pill::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -3px;
  width: 2px;
  height: 4px;
  border-radius: 1px;
  background: rgba(244, 251, 255, 0.85);
}

.battery-pill b {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #e5ffba, #8fff58);
}

.phone-logo-wrap {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 211, 77, 0.28), rgba(2, 11, 18, 0.82));
  border: 1px solid rgba(255, 211, 77, 0.30);
  box-shadow:
    0 0 30px rgba(255, 211, 77, 0.18),
    0 0 18px rgba(86, 217, 255, 0.10),
    inset 0 0 20px rgba(0,0,0,0.44);
}

.phone-app-logo {
  width: 78%;
  max-height: 74px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(86, 217, 255, 0.34))
    drop-shadow(0 0 10px rgba(255, 211, 77, 0.22));
}

.phone-app-card {
  position: relative;
  z-index: 2;
  padding: 16px 12px;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(2, 12, 20, 0.92), rgba(2, 18, 28, 0.86));
  border: 1px solid rgba(86, 217, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 12px 20px rgba(0,0,0,0.24);
}

.phone-app-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1px;
}

.phone-app-card strong {
  display: block;
  margin-top: 6px;
  color: #f4fbff;
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.phone-pill-row {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.phone-pill-row span {
  min-height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dff8ff;
  background:
    linear-gradient(180deg, rgba(13, 62, 88, 0.96), rgba(8, 41, 60, 0.92));
  border: 1px solid rgba(86, 217, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.phone-bottom-glow {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 52%;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 211, 77, 0.28), transparent 72%);
  filter: blur(6px);
  opacity: 0.74;
}

.android-card {
  width: 100%;
  max-width: 380px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.13), rgba(86, 217, 255, 0.08)),
    rgba(3, 18, 29, 0.96);
  border: 1px solid rgba(255, 211, 77, 0.22);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.android-card-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 211, 77, 0.12);
}

.android-card-text strong {
  display: block;
  color: #fff6c8;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.android-card-text span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* =========================
   SECTION TITLE
========================= */

.section-card {
  margin-top: 22px;
  padding: 30px;
}

.section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.section-title.centered {
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 8px 0 0;
  color: #f4fbff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 950;
}

.section-title p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
   STEPS
========================= */

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-box {
  position: relative;
  overflow: hidden;
  padding: 26px 18px 20px;
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(86, 217, 255, 0.06), rgba(255, 211, 77, 0.035)),
    rgba(2, 13, 22, 0.38);
  border: 1px solid rgba(86, 217, 255, 0.12);
}

.step-box::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08202b;
  background: linear-gradient(135deg, #f8ffe7, var(--gold));
  font-size: 12px;
  font-weight: 950;
}

.step-icon {
  margin: 18px 0 14px;
  font-size: 36px;
  line-height: 1;
}

.step-box h3 {
  margin: 0 0 9px;
  color: #fff6c8;
  font-size: 22px;
  font-weight: 950;
}

.step-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* =========================
   VIDEO
========================= */

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(86, 217, 255, 0.17);
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.video-frame::after {
  content: "\25B6";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  margin-left: -36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08202b;
  background: linear-gradient(135deg, #f8ffe7, var(--gold));
  font-size: 26px;
  box-shadow: 0 0 24px rgba(255, 211, 77, 0.28);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-frame.is-playing::after {
  opacity: 0;
}

.tutorial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   FEATURES / TRUST
========================= */

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-box {
  padding: 22px 16px;
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(86, 217, 255, 0.06), rgba(255, 211, 77, 0.03)),
    rgba(2, 13, 22, 0.36);
  border: 1px solid rgba(86, 217, 255, 0.12);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 15px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background:
    radial-gradient(circle, rgba(255, 211, 77, 0.18), rgba(86, 217, 255, 0.08));
  border: 1px solid rgba(255, 211, 77, 0.18);
}

.feature-box h3 {
  margin: 0 0 10px;
  color: #fff6c8;
  font-size: 18px;
  font-weight: 950;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(86, 217, 255, 0.06), rgba(255, 211, 77, 0.03)),
    rgba(2, 13, 22, 0.36);
  border: 1px solid rgba(86, 217, 255, 0.12);
}

.trust-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background:
    radial-gradient(circle, rgba(255, 211, 77, 0.18), rgba(86, 217, 255, 0.08));
  border: 1px solid rgba(255, 211, 77, 0.18);
}

.trust-text h3 {
  margin: 2px 0 8px;
  color: #fff6c8;
  font-size: 21px;
  font-weight: 950;
}

.trust-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */

.tutorial-download-btn,
.download-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 64px;
  padding: 0 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #062130;
  background:
    linear-gradient(135deg, #fffbe1 0%, var(--gold) 48%, var(--gold-2) 100%);
  font-size: 20px;
  font-weight: 950;
  box-shadow:
    0 14px 28px rgba(255, 179, 25, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.55);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.tutorial-download-btn::before,
.download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.22) 45%,
    rgba(255,255,255,0.78) 50%,
    rgba(255,255,255,0.22) 55%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: downloadShine 4s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.tutorial-download-btn span,
.download-btn span,
.tutorial-download-btn,
.download-btn {
  z-index: 2;
}

.tutorial-download-btn:hover,
.download-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.tutorial-download-btn.is-clicked,
.download-btn.is-clicked {
  transform: scale(0.97);
}

.video-fullscreen-btn {
  margin-top: 18px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  color: #e8f9ff;
  background: rgba(1, 13, 22, 0.42);
  border: 1px solid rgba(86, 217, 255, 0.14);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.video-fullscreen-btn:hover {
  background: rgba(86, 217, 255, 0.08);
  transform: translateY(-1px);
}

@keyframes downloadShine {
  0% {
    left: -75%;
  }

  100% {
    left: 130%;
  }
}

@keyframes phoneFloat {
  0% {
    transform: rotate(-6deg) translateY(4px);
  }

  50% {
    transform: rotate(-4deg) translateY(-10px);
  }

  100% {
    transform: rotate(-6deg) translateY(4px);
  }
}

/* =========================
   STICKY FOOTER
========================= */

.bottom-space {
  height: calc(var(--footer-height) + 42px + var(--safe-bottom));
}

.sticky-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 12px 20px calc(12px + var(--safe-bottom));
  background:
    linear-gradient(180deg, rgba(2, 11, 18, 0), rgba(2, 11, 18, 0.80) 34%, rgba(2, 11, 18, 0.98) 100%);
  backdrop-filter: blur(14px);
}

.sticky-footer-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--footer-height);
  padding: 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(86, 217, 255, 0.08), rgba(255, 211, 77, 0.035)),
    var(--panel-2);
  border: 1px solid rgba(86, 217, 255, 0.18);
  box-shadow:
    0 -10px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.sticky-copy {
  min-width: 0;
  flex: 1;
}

.sticky-label {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.9px;
}

.sticky-copy strong {
  display: block;
  color: #f4fbff;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 950;
}

.sticky-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #dff8ff;
  font-size: 13px;
  font-weight: 800;
}

.cta-note,
.app-version {
  display: block;
  margin-top: 4px;
  color: rgba(244, 251, 255, 0.50);
  font-size: 11px;
  font-weight: 700;
}

.download-btn {
  min-width: 300px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
    font-size: 56px;
  }

  .hero-subtitle,
  .hero-note {
    max-width: 100%;
  }

  .lobby-panel {
    min-height: auto;
  }

  .download-btn {
    min-width: 240px;
  }

  .steps-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy strong {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --footer-height: 88px;
  }

  .win-ticker {
    height: 34px;
  }

  .win-ticker-inner {
    height: 34px;
    min-height: 34px;
    padding: 0 14px;
  }

  .ticker-badge {
    padding: 5px 10px;
    font-size: 10px;
  }

  .ticker-track {
    gap: 44px;
    font-size: 11px;
    animation-duration: 28s;
  }

  .wd-popup {
    top: 108px;
    width: calc(100vw - 28px);
    min-width: 0;
    max-width: calc(100vw - 28px);
    padding: 10px 12px;
    border-radius: 18px;
  }

  .wd-popup-text {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
  }

  .top-header-inner {
    min-height: 66px;
    padding: 12px 16px;
    justify-content: center;
  }

  .top-header-chip {
    display: none;
  }

  .top-brand-logo {
    max-width: 174px;
    max-height: 48px;
  }

  .content-shell {
    padding: 16px 16px 0;
  }

  .hero-card,
  .section-card {
    border-radius: 22px;
    padding: 18px;
  }

  .hero-card::after {
    left: 18px;
    width: 140px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-title {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-note {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.75;
  }

  .tutorial-download-btn,
  .download-btn {
    min-height: 52px;
    width: 100%;
    border-radius: 16px;
    font-size: 16px;
  }

  .hero-download-btn {
    max-width: none;
    margin-top: 18px;
  }

  .hero-video-mini {
    max-width: none;
    margin-top: 18px;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-video-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-video-copy strong {
    text-align: left;
    font-size: 14px;
  }

  .hero-video-btn {
    min-height: 42px;
  }

  .hero-chip-row {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-chip-row span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }

  .lobby-panel {
    min-height: auto;
    padding: 16px;
    border-radius: 22px;
    gap: 16px;
  }

  .jackpot-screen {
    padding: 14px 12px;
    border-radius: 15px;
  }

  .jackpot-label {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .jackpot-screen strong {
    font-size: 22px;
  }

  .phone-showcase {
    gap: 16px;
  }

  .phone-device {
    width: min(100%, 230px);
    border-radius: 34px;
    padding: 8px;
    transform: rotate(-4deg);
  }

  .phone-device::before {
    border-radius: 30px;
  }

  .phone-notch {
    top: 12px;
    width: 84px;
    height: 20px;
  }

  .phone-camera-dot {
    top: 16px;
    width: 10px;
    height: 10px;
  }

  .phone-screen {
    padding: 30px 14px 16px;
    border-radius: 28px;
  }

  .phone-screen::before {
    inset: 12px;
    border-radius: 22px;
  }

  .phone-status-bar {
    top: 10px;
    left: 14px;
    right: 14px;
    font-size: 11px;
  }

  .phone-logo-wrap {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .phone-app-card {
    padding: 14px 10px;
    border-radius: 16px;
  }

  .phone-app-card span {
    font-size: 10px;
  }

  .phone-app-card strong {
    font-size: 22px;
  }

  .phone-pill-row {
    margin-top: 12px;
    gap: 8px;
  }

  .phone-pill-row span {
    min-height: 32px;
    font-size: 11px;
  }

  .android-card {
    max-width: none;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
  }

  .android-card-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .android-card-text strong {
    font-size: 18px;
  }

  .android-card-text span {
    font-size: 12px;
  }

  .section-card {
    margin-top: 16px;
  }

  .section-kicker {
    font-size: 11px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p:last-child {
    font-size: 13px;
  }

  .steps-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-box {
    padding: 22px 14px 16px;
    border-radius: 18px;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .step-icon {
    margin: 16px 0 12px;
    font-size: 30px;
  }

  .step-box h3,
  .feature-box h3,
  .trust-text h3 {
    font-size: 18px;
  }

  .step-box p,
  .feature-box p,
  .trust-text p {
    font-size: 13px;
  }

  .feature-box {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    border-radius: 16px;
    font-size: 24px;
  }

  .trust-item {
    padding: 16px;
    border-radius: 18px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
    font-size: 22px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .video-frame::after {
    width: 58px;
    height: 58px;
    margin-top: -29px;
    margin-left: -29px;
    font-size: 22px;
  }

  .video-fullscreen-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    font-size: 14px;
  }

  .sticky-footer {
    padding: 10px 16px calc(10px + var(--safe-bottom));
  }

  .sticky-footer-inner {
    padding: 10px;
    gap: 10px;
    border-radius: 20px;
  }

  .sticky-label {
    font-size: 10px;
  }

  .sticky-copy strong {
    font-size: 16px;
    line-height: 1.15;
  }

  .sticky-platform {
    margin-top: 4px;
    font-size: 11px;
  }

  .cta-note,
  .app-version {
    font-size: 9px;
  }

  .download-btn {
    min-width: 130px;
    width: auto;
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }

  .bottom-space {
    height: calc(var(--footer-height) + 28px + var(--safe-bottom));
  }
}

@media (max-width: 359px) {
  .content-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-card,
  .section-card {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 30px;
  }

  .jackpot-screen strong {
    font-size: 19px;
  }

  .phone-device {
    width: min(100%, 205px);
  }

  .tutorial-download-btn,
  .download-btn {
    min-height: 46px;
    font-size: 14px;
  }

  .sticky-footer {
    padding: 8px 12px calc(8px + var(--safe-bottom));
  }

  .sticky-copy strong {
    font-size: 14px;
  }
}