:root {
  --bg: #f4f6fb;
  --fg: #0f1a33;
  --muted: #4b5b7a;
  --surface: #ffffff;
  --border: #c9d4ea;
  --primary: #c1121f;
  --blue: #1d4ed8;
  --navy: #0b1f4b;
  --cream: #e8c9a0;
  --danger: #c1121f;
  --ticket: #f3e6d4;
  --ticket-fg: #2a1216;
  color-scheme: light;
}
html.dark {
  --bg: #070d1c;
  --fg: #eef3ff;
  --muted: #9db0d4;
  --surface: #121a33;
  --border: #2a3d6e;
  --ticket: #1a2240;
  --ticket-fg: #eef3ff;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--fg);
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(193,18,31,0.28), transparent 55%),
    radial-gradient(800px 380px at -10% 0%, rgba(29,78,216,0.28), transparent 50%),
    var(--bg);
}
a { color: var(--blue); }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  padding-top: max(10px, env(safe-area-inset-top));
  background: linear-gradient(90deg, var(--navy), #c1121f);
  color: #fff;
}
.brand {
  font-family: "Bebas Neue", "Impact", sans-serif;
  font-size: 28px;
  letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  text-shadow: 0 2px 0 rgba(0,0,0,0.25);
}
.nav { display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; align-items: center; justify-content: flex-end; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.nav a { color: #fff; text-decoration: none; }
.wrap { max-width: 920px; margin: 0 auto; padding: 16px 12px 72px; }
h1, .display {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 8vw, 46px);
  margin: 8px 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  background: linear-gradient(90deg, #c1121f, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 17px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 34rem;
  font-weight: 600;
}
.muted { color: var(--muted); font-size: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  font-size: 15px;
}
.btn.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn.cream, .btn.blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.grid { display: grid; gap: 12px; }
.partners { display: grid; gap: 10px; }
.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 14px;
}
input, select {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  padding: 0 12px;
  font-size: 16px;
}
label { display: block; font-size: 13px; margin-bottom: 6px; }
.wheel-stage { position: relative; width: min(94vw, 520px); margin: 16px auto 20px; padding: 8px; }
.wheel-stage canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  background: #0b1f4b;
  box-shadow:
    0 0 0 7px #0b1f4b,
    0 0 0 11px #e8c9a0,
    0 0 0 14px #c1121f,
    0 18px 36px rgba(11, 31, 75, 0.3);
}
html.dark .wheel-stage canvas {
  box-shadow:
    0 0 0 7px #e8c9a0,
    0 0 0 11px #0b1f4b,
    0 0 0 14px #c1121f,
    0 18px 36px rgba(0, 0, 0, 0.45);
}
.wheel-pointer {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 30px solid var(--primary);
  z-index: 2;
}
.kicker { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); font-weight: 700; font-family: "DM Sans", sans-serif; }
.err { color: var(--danger); font-size: 14px; }
footer {
  border-top: 1px solid var(--border);
  padding: 20px 12px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  text-align: center;
  background: var(--navy);
  color: #fff;
}
footer img { height: 52px; border-radius: 12px; max-width: 90%; }
.hidden { display: none !important; }
.pack { display: flex; flex-direction: column; gap: 8px; }
.disclaimer { font-size: 12px; line-height: 1.45; color: var(--muted); }
.ticket { background: var(--ticket); color: var(--ticket-fg); border-radius: 16px; overflow: hidden; }
.ticket img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.linkish { background: none; border: none; color: var(--blue); text-decoration: underline; cursor: pointer; font-size: 14px; padding: 0; }
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tabs .btn.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.cheer {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 28, 0.78);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 16px;
}
.partners { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .partners { grid-template-columns: 1fr; } }
.stall {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(11,31,75,0.08);
}
.stall-logo, .stall-mark {
  grid-row: 1 / span 2;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}
svg.stall-logo { display: block; background: transparent; }
.stall-mark {
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.stall-name {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.stall-tag { font-size: 12px; color: var(--muted); font-weight: 600; }
.stall-shoprite { border-color: #e31e24; }
.stall-shoprite .stall-mark { background: #e31e24; }
.stall-shoprite .stall-name { color: #c1121f; }
.stall-ebeano { border-color: #1b7a3d; }
.stall-ebeano .stall-mark { background: #1b7a3d; color: #ffffff; }
.stall-ebeano .stall-name { color: #166534; }
.stall-phil-hallmark { border-color: #e8c9a0; }
.stall-phil-hallmark .stall-mark { background: #0b1f4b; color: #e8c9a0; }
.stall-phil-hallmark .stall-name { color: #0b1f4b; font-family: "Bebas Neue", Impact, sans-serif; letter-spacing: 0.1em; font-size: 22px; font-weight: 400; }
html.dark .stall-phil-hallmark .stall-name { color: #e8c9a0; }
.stall-marketsquare { border-color: #0f766e; }
.stall-marketsquare .stall-mark { background: #0f766e; }
.stall-marketsquare .stall-name { color: #0f766e; }
.stall-spar { border-color: #007a33; }
.stall-spar .stall-mark { background: #007a33; }
.stall-spar .stall-name { color: #007a33; letter-spacing: 0.18em; }
.stall-justrite { border-color: #b91c1c; }
.stall-justrite .stall-mark { background: #b91c1c; }
.stall-justrite .stall-name { color: #b91c1c; }
.stall-hero { display: flex; justify-content: center; margin: 8px 0 4px; }
.nj-lockup { text-align: center; margin: 0 auto 6px; }
.nj-seal {
  width: 112px;
  height: 112px;
  margin: 0 auto 10px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 200deg, #e8c9a0, #ffffff, #c1121f, #1d4ed8, #e8c9a0);
  box-shadow:
    0 14px 36px rgba(193, 18, 31, 0.38),
    0 0 0 4px rgba(232, 201, 160, 0.35);
}
.nj-seal img { display: none; }
.nj-clock {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background:
    repeating-conic-gradient(from -1.2deg, #c1121f 0 2.2deg, transparent 2.2deg 30deg),
    radial-gradient(circle at 50% 50%, #fff9f5 0 58%, #0b1f4b 59% 100%);
}
.nj-clock i {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 50% 100%;
  border-radius: 3px;
  background: #0b1f4b;
}
.nj-clock i.h { width: 5px; height: 26%; margin-left: -2.5px; }
.nj-clock i.m { width: 3px; height: 36%; margin-left: -1.5px; }
.nj-clock i.s { width: 2px; height: 40%; margin-left: -1px; background: #c1121f; }
.nj-clock b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: #c1121f;
  border: 2px solid #e8c9a0;
  z-index: 2;
}
.nj-word {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(40px, 12vw, 56px);
  letter-spacing: 0.28em;
  line-height: 0.9;
  background: linear-gradient(90deg, #c1121f, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html.dark .nj-word {
  background: linear-gradient(90deg, #ff6b73, #7aa2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nj-sub {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.stall-title {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(28px, 8vw, 42px);
  letter-spacing: 0.14em;
  text-align: center;
  margin: 10px 0 8px;
}
.stall-title:after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #c1121f, #e8c9a0, #1d4ed8);
}
.stall-title.is-phil {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.12em;
  font-style: normal;
  text-transform: uppercase;
}
.how-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 7vw, 38px);
  margin: 36px 0 14px;
}
.how {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.how li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 16px 16px;
  box-shadow: 0 8px 20px rgba(11,31,75,0.08);
}
.how span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
}
.how h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  margin: 8px 0 6px;
}
.how p { margin: 0; color: var(--muted); font-weight: 600; line-height: 1.45; }
.play-any { margin: 22px 0 8px; }
.play-any h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 6px 0 8px;
}
.play-any .btn { margin: 6px 8px 0 0; }
.soon-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 520px) { .soon-grid { grid-template-columns: 1fr; } }
.soon {
  border-radius: 22px;
  border: 1px dashed var(--border);
  background:
    linear-gradient(180deg, rgba(193,18,31,0.08), transparent 40%),
    var(--surface);
}
.soon h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 6px 0 8px;
}
.soon p { margin: 0; color: var(--muted); font-weight: 600; line-height: 1.45; }
.soon .kicker {
  display: inline-block;
  background: linear-gradient(90deg, #c1121f, #1d4ed8);
  color: #fff;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
}
.rail-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #0b1f4b;
}
.rail-banner img,
.rail-banner svg {
  height: 28px;
  width: auto;
  max-width: 32%;
  object-fit: contain;
}
.refer-hero {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  margin: -14px -14px 12px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,201,160,0.45), transparent 40%),
    linear-gradient(135deg, #0b1f4b 0%, #c1121f 55%, #1d4ed8 100%);
  color: #fff;
  text-align: center;
}
.refer-hero-copy { padding: 12px; text-shadow: 0 2px 14px rgba(0,0,0,0.65); }
.refer-hero h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(28px, 8vw, 48px);
  letter-spacing: 0.14em;
  color: #fff;
}
.refer-hero p {
  margin: 6px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 4vw, 22px);
  color: #e8c9a0;
}
.care-box {
  margin: 16px auto 0;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(232, 201, 160, 0.35);
  background: #071428;
  color: #e8c9a0;
  text-align: left;
}
.care-box .kicker { color: #e8c9a0; }
.care-box .muted { color: rgba(232, 201, 160, 0.75); }
.care-box .care-actions { margin-top: 10px; }
.care-box .btn { margin-right: 8px; }
.dash-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.dash-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 118px;
  padding: 16px;
  border-radius: 22px;
  text-decoration: none;
}
.dash-tile b {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.mega-box {
  margin-top: 16px;
  padding: 18px 16px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #7a0b14 0%, #c1121f 42%, #0b1f4b 100%);
  box-shadow: 0 14px 32px rgba(193, 18, 31, 0.4);
}
.mega-count {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
  letter-spacing: 0.08em;
  color: #e8c9a0;
}

footer.site-foot {
  padding: 0;
  border-top: 0;
  background: #0b1f4b;
  color: #fff;
  text-align: center;
}
footer.site-foot .muted { color: #d5deef; }
footer.site-foot .kicker { color: #e8c9a0; }
footer.site-foot .opay,
footer.site-foot .palm,
footer.site-foot .runner,
footer.site-foot .mc-discs,
footer.site-foot .droid,
footer.site-foot .apple { display: none; }
footer.site-foot .verve {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
}
.pay-band { padding: 22px 16px 4px; background: #0b1f4b; }
.pay-row {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}
.pay-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
}
@media (min-width: 720px) {
  .pay-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 201, 160, 0.35);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.pay-badge:has(.opay)::before { content: "O"; }
.pay-badge.visa { font-style: italic; font-size: 18px; letter-spacing: 0.06em; }
.pay-badge.mc { font-size: 13px; letter-spacing: 0.02em; text-transform: lowercase; }
.pay-next {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #e8c9a0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.app-band { padding: 8px 16px 22px; background: #0b1f4b; }
.app-band h2 {
  margin: 8px 0 0;
  color: #e8c9a0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.app-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.app-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #c1121f;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
}
.app-rule { width: 1px; height: 36px; background: rgba(232, 201, 160, 0.45); }
footer.site-foot .store {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
  cursor: pointer;
  font-family: "DM Sans", system-ui, sans-serif;
}
footer.site-foot .store small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; }
footer.site-foot .store b { display: block; font-size: 15px; font-weight: 700; }
#store-note {
  min-height: 1.2em;
  margin: 10px auto 0;
  max-width: 28rem;
  color: #d5deef;
  font-size: 13px;
}
.settle {
  background: #071433;
  color: #fff;
  padding: 28px 16px max(24px, env(safe-area-inset-bottom));
}
.settle-label { margin-top: 22px; }
.settle-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  max-width: 720px;
  margin: 12px auto 22px;
  padding: 0;
}
@media (min-width: 720px) {
  .settle-grid { grid-template-columns: repeat(4, 1fr); }
}
.settle-grid b { display: block; color: #fff; font-size: 15px; }
.settle-grid span { display: block; margin-top: 4px; color: #d5deef; font-size: 13px; }
