:root {
  --bg-deep: #0a0318;
  --bg-purple: #1a0a2e;
  --bg-card: rgba(30, 10, 50, 0.75);
  --gold: #ffd700;
  --gold-dark: #b8860b;
  --gold-light: #ffe566;
  --pink: #ff00cc;
  --magenta: #cc00ff;
  --neon-red: #ff2d55;
  --neon-blue: #00d4ff;
  --neon-green: #00ff88;
  --neon-purple: #a855f7;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --radius: 20px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
}

/* Starry background */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 204, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-purple) 50%, #0d0520 100%);
}

.stars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 10%, rgba(255, 215, 0, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255, 0, 204, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(0, 212, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: rgba(10, 3, 24, 0.85);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
  letter-spacing: 2px;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(184, 134, 11, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.header-cta {
  display: inline-flex;
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* Mobile sticky download bar */
.mobile-download-bar {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-gold {
  background: linear-gradient(135deg, #ffe566, var(--gold), #c9a000);
  color: #1a0a00;
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  box-shadow:
    0 0 50px rgba(255, 215, 0, 0.6),
    0 6px 30px rgba(0, 0, 0, 0.5);
}

.btn-neon {
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: #fff;
  box-shadow:
    0 0 30px rgba(255, 0, 204, 0.5),
    0 0 60px rgba(204, 0, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-neon:hover {
  box-shadow:
    0 0 50px rgba(255, 0, 204, 0.7),
    0 0 80px rgba(204, 0, 255, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  border: 2px solid rgba(255, 215, 0, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 45, 85, 0.15);
  border: 1px solid rgba(255, 45, 85, 0.4);
  color: #ff6b8a;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-title .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
}

.bonus-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bonus-amount {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.play-notice {
  width: 100%;
  text-align: center;
}

.play-notice a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.45);
  color: var(--neon-green);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.play-notice a:hover {
  background: rgba(0, 255, 136, 0.18);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(320px, 90%);
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(168, 85, 247, 0.2));
  box-shadow:
    0 0 60px rgba(255, 0, 204, 0.3),
    0 0 100px rgba(255, 215, 0, 0.2),
    0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-frame img {
  width: 100%;
  height: 125px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(ellipse, rgba(255, 0, 204, 0.2) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.floating-coin {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.floating-coin.c1 { top: 10%; left: -5%; animation-delay: 0s; }
.floating-coin.c2 { top: 60%; right: -8%; animation-delay: 1s; font-size: 1.5rem; }
.floating-coin.c3 { bottom: 15%; left: 5%; animation-delay: 2s; font-size: 1.8rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

/* Section */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: var(--neon-purple);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
}

.section-title .gold {
  background: linear-gradient(90deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card.red {
  border-color: rgba(255, 45, 85, 0.4);
  box-shadow: 0 0 30px rgba(255, 45, 85, 0.15);
}
.feature-card.red:hover { box-shadow: 0 0 50px rgba(255, 45, 85, 0.35); }

.feature-card.blue {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}
.feature-card.blue:hover { box-shadow: 0 0 50px rgba(0, 212, 255, 0.35); }

.feature-card.green {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}
.feature-card.green:hover { box-shadow: 0 0 50px rgba(0, 255, 136, 0.35); }

.feature-card.purple {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}
.feature-card.purple:hover { box-shadow: 0 0 50px rgba(168, 85, 247, 0.35); }

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.feature-card.red .feature-title { color: var(--neon-red); text-shadow: 0 0 15px rgba(255, 45, 85, 0.5); }
.feature-card.blue .feature-title { color: var(--neon-blue); text-shadow: 0 0 15px rgba(0, 212, 255, 0.5); }
.feature-card.green .feature-title { color: var(--neon-green); text-shadow: 0 0 15px rgba(0, 255, 136, 0.5); }
.feature-card.purple .feature-title { color: var(--neon-purple); text-shadow: 0 0 15px rgba(168, 85, 247, 0.5); }

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Screenshots - horizontal mockup row */
#screenshots .screenshots-wrapper {
  margin-left: -16px;
  margin-right: -16px;
  width: calc(100% + 32px);
}

.screenshots-wrapper {
  overflow-x: auto;
  padding: 10px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 215, 0, 0.4) transparent;
}

.screenshots-wrapper::-webkit-scrollbar {
  height: 6px;
}

.screenshots-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.4);
  border-radius: 10px;
}

.screenshots {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 0;
}

.screenshot-card {
  flex: 1;
  min-width: 0;
  width: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.25);
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
}

.screenshot-phone {
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(168, 85, 247, 0.15));
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.screenshot-phone img {
  width: 100%;
  height: 165px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.screenshot-phone img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
}

/* Image modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.image-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 15, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  z-index: 1;
  max-width: min(95vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.image-modal.is-open .image-modal-content {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  background: rgba(30, 10, 50, 0.95);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.image-modal-close:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: scale(1.1);
}

.image-modal-img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.35);
  box-shadow:
    0 0 60px rgba(255, 0, 204, 0.25),
    0 0 100px rgba(255, 215, 0, 0.15);
  display: block;
}

.image-modal-caption {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
}

.screenshot-label {
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* Download section */
.download-section {
  padding: 80px 0;
}

.download-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 10, 50, 0.9), rgba(15, 5, 29, 0.95));
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow:
    0 0 80px rgba(255, 0, 204, 0.15),
    0 0 120px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.download-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 204, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.download-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.download-info h2 .gold {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

.download-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.download-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0a00;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
  transform: translateY(-3px);
}

.download-btn.android {
  background: linear-gradient(135deg, #1a472a, #0d2818);
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.25);
}

.download-btn.android:hover {
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.45);
}

.download-btn.ios {
  background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
  opacity: 0.7;
  cursor: not-allowed;
}

.download-btn-icon {
  font-size: 2.2rem;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
}

.download-btn-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.download-btn-text strong {
  font-size: 1.1rem;
  color: var(--text);
}

.app-version {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Jackpot bar */
.jackpot-bar {
  margin: 40px 0;
  padding: 20px 32px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 45, 85, 0.15), rgba(255, 215, 0, 0.1), rgba(255, 45, 85, 0.15));
  border: 2px solid rgba(255, 45, 85, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(255, 45, 85, 0.2);
}

.jackpot-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.jackpot-amount {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  letter-spacing: 2px;
}

/* Footer */
.footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  text-align: center;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 0 48px;
    gap: 28px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-subtitle {
    margin: 0 auto;
    font-size: 0.95rem;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .screenshots {
    justify-content: stretch;
    gap: 10px;
    padding: 0;
  }

  .screenshot-card {
    flex: 1;
    min-width: 0;
    width: auto;
  }

  .download-box {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    text-align: center;
  }

  .download-steps li {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .logo {
    font-size: 1.35rem;
    letter-spacing: 1px;
    flex-shrink: 0;
  }

  .vip-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
    margin-left: auto;
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .hero {
    padding: 20px 0 36px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .bonus-card {
    width: 100%;
    padding: 16px 18px;
  }

  .phone-frame {
    width: min(240px, 72vw);
    padding: 8px;
    border-radius: 24px;
  }

  .phone-frame img {
    border-radius: 10px;
  }

  .floating-coin {
    display: none;
  }

  .phone-glow {
    inset: -10px;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .jackpot-bar {
    padding: 14px 16px;
    margin: 20px 0;
    gap: 8px;
  }

  .jackpot-label {
    font-size: 0.78rem;
  }

  .jackpot-amount {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  #screenshots .container {
    padding-left: 0;
    padding-right: 0;
  }

  #screenshots .section-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  #screenshots .screenshots-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .screenshots-wrapper {
    scroll-snap-type: none;
    padding: 8px 0 20px;
    width: 100%;
    max-width: 100%;
  }

  .screenshot-card {
    flex: 1;
    min-width: 0;
    width: auto;
    scroll-snap-align: none;
  }

  .screenshot-phone {
    padding: 8px;
  }

  .screenshot-label {
    font-size: 0.72rem;
    padding: 10px 6px;
    white-space: normal;
    line-height: 1.3;
  }

  .download-section {
    padding: 44px 0 90px;
  }

  .download-box {
    padding: 22px 16px;
    border-radius: 20px;
    gap: 24px;
  }

  .download-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .download-steps {
    margin-bottom: 0;
  }

  .download-steps li {
    font-size: 0.85rem;
    gap: 12px;
  }

  .download-btn {
    padding: 14px 16px;
  }

  .download-btn-icon {
    font-size: 1.8rem;
  }

  .download-btn-text strong {
    font-size: 1rem;
  }

  .footer {
    padding: 32px 0 24px;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .mobile-download-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(10, 3, 24, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  }

  .mobile-download-bar .btn {
    flex: 1;
    padding: 13px 10px;
    font-size: 0.82rem;
    white-space: normal;
    line-height: 1.2;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .vip-badge {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-card {
    padding: 16px 10px;
  }

  .feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .feature-title {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
  }

  .feature-desc {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .screenshots {
    gap: 8px;
  }

  .screenshot-card {
    flex: 1;
    min-width: 0;
  }

  .btn-lg {
    padding: 15px 20px;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 8px;
  }

  .stat-item {
    flex: 1;
  }

  .jackpot-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .section-tag {
    font-size: 0.68rem;
    letter-spacing: 1px;
    padding: 5px 12px;
  }

  .disclaimer {
    font-size: 0.7rem;
    padding: 0 8px;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 1.2rem;
  }

  .header-cta {
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .bonus-amount {
    font-size: 1.5rem;
  }

  .mobile-download-bar .btn {
    font-size: 0.75rem;
    padding: 12px 8px;
  }
}
