:root {
  --bg: #06070b;
  --bg-soft: #0f1118;
  --panel: rgba(18, 20, 29, 0.78);
  --panel-solid: #141720;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f2e8;
  --muted: #aaa8a1;
  --gold: #d5ad5b;
  --gold-bright: #f5d58a;
  --red: #bd2f3b;
  --blue: #5f98ff;
  --green: #39c889;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(rgba(6, 7, 11, 0.74), rgba(6, 7, 11, 0.95)),
    url("https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1800&q=80") center top / cover fixed,
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 34px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 12, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo {
  display: flex;
  width: 150px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

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

.nav-links a,
.nav-cta,
.button,
.filter {
  min-height: 42px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.button-primary {
  border-color: rgba(245, 213, 138, 0.52);
  color: #1d1205;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #946b2e);
  box-shadow: 0 12px 34px rgba(213, 173, 91, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 28px 40px;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding-bottom: 42px;
}

.hero-banner {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 213, 138, 0.28);
  border-radius: 8px;
  background: rgba(8, 10, 15, 0.68);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
}

.hero-banner img {
  display: block;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 21 / 6;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.hero-copy p,
.jackpot-band p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy .hero-description {
  max-width: 520px;
  margin-top: -4px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero-panel {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 15, 0.82);
  box-shadow: var(--shadow);
}

.panel-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  top: -80px;
  background: radial-gradient(circle, rgba(245, 213, 138, 0.3), transparent 62%);
}

.lux-card,
.ticket,
.stats-grid article,
.proof-card,
.jackpot-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.main-prize {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.main-prize span,
.ticket span,
.stats-grid span,
.proof-top small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-prize strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--gold-bright);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.main-prize small {
  color: var(--green);
  font-weight: 700;
}

.ticket-stack {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  gap: 14px;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 18px;
}

.ticket strong {
  font-size: 1.15rem;
}

.ticket em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 800;
}

.ticket-accent {
  margin-left: 42px;
  border-color: rgba(189, 47, 59, 0.45);
}

.ticker {
  overflow: hidden;
  margin: 10px 0 26px;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 16px 28px;
  color: var(--gold-bright);
  font-weight: 800;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0 90px;
}

.stats-grid article {
  padding: 22px;
}

.stats-grid strong {
  display: block;
  margin: 10px 0 4px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.stats-grid small {
  color: var(--muted);
}

.section-head {
  max-width: 820px;
  margin: 0 0 24px;
}

.compact {
  margin-bottom: 0;
}

.proof-controls {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter {
  cursor: pointer;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter.active {
  color: #211505;
  background: var(--gold-bright);
}

.sort-filter .filter {
  min-height: 30px;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 0.76rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 88px;
}

.proof-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  overflow: hidden;
  padding: 0 12px 14px;
}

.proof-card.hidden {
  display: none;
}

.proof-media {
  position: relative;
  min-height: 124px;
  margin: 0 -12px 14px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56) 55%, rgba(15, 17, 24, 0.9)),
    repeating-linear-gradient(135deg, rgba(213, 173, 91, 0.2) 0 1px, transparent 1px 14px);
}

.proof-media::before {
  content: "Transfer Successful";
  position: absolute;
  top: 40px;
  left: 14px;
  right: 14px;
  color: rgba(8, 10, 15, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
}

.proof-media::after {
  content: "Nomor Rekening  ****  ****  ****";
  position: absolute;
  top: 62px;
  left: 14px;
  right: 14px;
  color: rgba(8, 10, 15, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
}

.proof-media-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(226, 232, 240, 0.54) 55%, rgba(15, 17, 24, 0.9)),
    repeating-linear-gradient(135deg, rgba(96, 165, 250, 0.18) 0 1px, transparent 1px 14px);
}

.proof-media-blue {
  background:
    linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(191, 219, 254, 0.54) 55%, rgba(15, 17, 24, 0.9)),
    repeating-linear-gradient(135deg, rgba(95, 152, 255, 0.22) 0 1px, transparent 1px 14px);
}

.proof-media-red {
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(254, 215, 170, 0.5) 55%, rgba(15, 17, 24, 0.9)),
    repeating-linear-gradient(135deg, rgba(189, 47, 59, 0.18) 0 1px, transparent 1px 14px);
}

.proof-media .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.paid-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid rgba(57, 200, 137, 0.34);
  border-radius: 7px;
  color: #064e3b;
  background: rgba(167, 243, 208, 0.84);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-media strong {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.proof-media.has-image {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 17, 24, 0.82)),
    var(--proof-image);
  background-position: center;
  background-size: cover;
}

.proof-media.has-image::before,
.proof-media.has-image::after {
  display: none;
}

.proof-upload {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(245, 213, 138, 0.46);
  border-radius: 6px;
  color: #211505;
  background: rgba(255, 217, 112, 0.92);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.proof-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.proof-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 6px;
  color: #fff8df;
  background: rgba(213, 173, 91, 0.24);
  border: 1px solid rgba(245, 213, 138, 0.38);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-muted {
  background: rgba(57, 200, 137, 0.14);
  border-color: rgba(57, 200, 137, 0.32);
}

.badge-orange {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.36);
}

.badge-red {
  background: rgba(189, 47, 59, 0.16);
  border-color: rgba(189, 47, 59, 0.42);
}

.badge-blue {
  background: rgba(95, 152, 255, 0.15);
  border-color: rgba(95, 152, 255, 0.34);
}

.proof-card h3 {
  margin: 0;
  min-height: 42px;
  font-size: 0.92rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-card p {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.proof-link {
  position: relative;
  display: flex;
  margin-top: auto;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff0ff;
  background-color: #141720;
  background:
    linear-gradient(#141720, #141720) padding-box,
    conic-gradient(from var(--shine-angle), transparent 0deg, rgba(245, 213, 138, 0.22) 72deg, #ffd970 110deg, rgba(245, 213, 138, 0.22) 150deg, transparent 230deg, transparent 360deg) border-box,
    linear-gradient(135deg, rgba(213, 173, 91, 0.12), rgba(168, 85, 247, 0.16)) padding-box;
  box-shadow: 0 0 0 rgba(245, 213, 138, 0);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: ctaPulse 1.8s ease-in-out infinite, borderSpin 2.8s linear infinite;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.proof-link::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 44%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: ctaShine 2.4s ease-in-out infinite;
}

.proof-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(213, 173, 91, 0.22);
}

@property --shine-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(245, 213, 138, 0);
  }

  50% {
    box-shadow: 0 0 18px rgba(245, 213, 138, 0.26);
  }
}

@keyframes borderSpin {
  to {
    --shine-angle: 360deg;
  }
}

@keyframes ctaShine {
  0% {
    left: -55%;
  }

  55%,
  100% {
    left: 115%;
  }
}

.proof-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  padding: 28px 18px;
}

.proof-modal.open {
  display: block;
}

.proof-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.proof-detail {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--text);
}

.proof-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  float: right;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(15, 17, 24, 0.86);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.proof-detail-image {
  clear: both;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-detail-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
}

.proof-detail h2 {
  margin: 20px 0 10px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-detail-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.proof-detail-amount strong {
  color: var(--gold-bright);
  font-size: 1.45rem;
}

.proof-detail-amount span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.proof-detail-grid div,
.proof-testimony,
.proof-alert {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-detail-grid div {
  padding: 12px;
}

.proof-detail-grid span,
.proof-testimony span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-detail-grid strong {
  font-size: 0.86rem;
}

.proof-rating {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-testimony {
  padding: 14px;
  border-left-color: var(--gold-bright);
}

.proof-testimony p {
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.7;
}

.proof-alert {
  margin-top: 18px;
  padding: 16px;
  border-color: rgba(245, 213, 138, 0.32);
  color: var(--t2);
  font-size: 0.82rem;
  line-height: 1.7;
}

.proof-alert strong {
  color: var(--gold-bright);
}

.proof-alert strong:last-child {
  color: var(--green);
}

.jackpot-band {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 28px;
  align-items: center;
  margin-bottom: 88px;
  padding: 36px;
  background:
    linear-gradient(120deg, rgba(189, 47, 59, 0.18), rgba(213, 173, 91, 0.09)),
    var(--panel);
}

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

.leaderboard li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.leaderboard span {
  color: var(--gold-bright);
  font-weight: 800;
}

.leaderboard em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.faq-section {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(12, 14, 20, 0.78);
  backdrop-filter: blur(16px);
}

.faq-highlight {
  border-color: rgba(245, 213, 138, 0.42);
  box-shadow: inset 0 0 0 1px rgba(245, 213, 138, 0.08);
}

.faq-card h2 {
  margin: 0 0 14px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.faq-card p {
  margin: 0;
  max-width: none;
  color: var(--t2, #e8e8e8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(130px, 1fr));
  gap: 44px;
  align-items: start;
  margin-top: 24px;
  padding: 54px 0 72px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 2px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-logo::before {
  content: "";
  width: 28px;
  height: 20px;
  margin-right: 4px;
  background:
    radial-gradient(circle at 50% 20%, var(--gold-bright) 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 18%, var(--gold) 20% 34%, transparent 36%),
    linear-gradient(45deg, transparent 18%, var(--gold) 20% 34%, transparent 36%),
    linear-gradient(var(--gold), var(--gold));
  background-size: 100% 100%, 36% 75%, 36% 75%, 100% 24%;
  background-position: center, left bottom, right bottom, center bottom;
  background-repeat: no-repeat;
}

.footer-crown {
  color: var(--text);
}

.footer-logo strong {
  color: var(--gold-bright);
}

.footer-logo img {
  display: block;
  width: min(180px, 100%);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p,
.footer-column a {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
}

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

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  font-weight: 900;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
}

.footer-column a:hover,
.footer-socials a:hover {
  color: var(--gold-bright);
  border-color: rgba(245, 213, 138, 0.5);
}

.floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(57, 200, 137, 0.46);
  border-radius: 999px;
  color: #05150d;
  background: linear-gradient(135deg, #74f0b4, var(--green));
  box-shadow: 0 18px 46px rgba(57, 200, 137, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 138px;
    height: 44px;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .jackpot-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-banner img {
    min-height: 210px;
    aspect-ratio: 16 / 7;
  }

  .hero-panel {
    min-height: 460px;
  }

  .main-prize strong {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .topbar {
    top: 8px;
    margin-top: 8px;
  }

  .nav-cta,
  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .hero-banner img {
    min-height: 170px;
    aspect-ratio: 4 / 2.15;
  }

  .hero-panel,
  .jackpot-band {
    padding: 20px;
  }

  .faq-card {
    padding: 22px 18px;
  }

  .main-prize {
    padding: 22px 18px;
  }

  .main-prize strong {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .ticket-accent {
    margin-left: 0;
  }

  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .leaderboard li {
    grid-template-columns: auto 1fr;
  }

  .leaderboard em {
    grid-column: 2;
  }
}
