:root {
  --bg: #0f1417;
  --surface: #1b2328;
  --surface-2: #242e34;
  --text: #e8eef2;
  --muted: #8a9aa4;
  --accent: #f4b400;
  --accent-2: #ffd34e;
  --success: #00c853;
  --danger: #e53935;
  --link: #4fc3f7;
  --border: #2a353b;
  --nav-h: 60px;
  --footer-h: 44px;

  --radius: 14px;
  --radius-sm: 8px;

  color-scheme: dark;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

body {
  /* Body reserves space for the always-visible legal footer (and, when
     logged in, the bottom nav above it). Both elements are `position:
     fixed` so they don't take part in the flex flow, but the padding
     keeps content from being covered.
     Override the inherited `height: 100%` so the body grows with its
     content; otherwise overflow (e.g. the Place bet button at the end of
     the bet form on shorter viewports) escapes the padding-bottom area
     and ends up hidden behind the fixed chrome at the bottom. */
  height: auto;
  min-height: 100vh;
  padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom));
}
body.has-nav {
  padding-bottom: calc(var(--footer-h) + var(--nav-h) + env(safe-area-inset-bottom));
}

#app {
  /* No min-height: 100vh anymore — that pushed the footer below the visible
     viewport on short pages (Home, Profil etc.) because the footer is the
     next sibling. With the footer fixed-positioned, the natural content
     height plus body padding-bottom keeps everything in view. */
  padding: 20px 18px;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

body.map-view #app {
  padding: 0;
  max-width: none;
}

/* ----- Typography ----- */
h1, h2, h3 { margin: 0 0 12px; line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
/* Section spacing: give h2/h3 room above unless they're the first child.
   Prevents glowing chips (e.g. "Price will rise") from colliding with the
   next section heading on the bet screen. */
h2 + *, h3 + * { margin-top: 0; }
h2, h3 { margin-top: 22px; }
h1:first-child, h2:first-child, h3:first-child,
.card > h1:first-child, .card > h2:first-child, .card > h3:first-child,
.station-hero + h3 { margin-top: 0; }
h1 { font-size: 26px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
p { margin: 0 0 12px; color: var(--text); }
.muted { color: var(--muted); }
.danger { color: var(--danger); }
.success { color: var(--success); }
.accent { color: var(--accent); }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----- Forms & buttons ----- */
input, select, button, textarea {
  font: inherit;
  color: inherit;
}

input[type=email], input[type=password], input[type=text],
input[type=number], input[type=datetime-local], select, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  outline: none;
  transition: border-color .15s, background .15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn {
  display: inline-block;
  width: 100%;
  background: var(--accent);
  color: #1b1400;
  font-weight: 700;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .05s, background .15s;
  text-align: center;
  margin-top: 16px;
}
.btn:hover { background: var(--accent-2); }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn.secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn.secondary:hover { background: #2e3a41; }

.btn.danger {
  background: var(--danger);
  color: #fff;
}

.row { display: flex; gap: 10px; }
.row > * { flex: 1; }

.stack > * + * { margin-top: 16px; }
.stack-sm > * + * { margin-top: 8px; }

/* ----- Cards & lists ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.list { display: flex; flex-direction: column; gap: 8px; }
.list-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  transition: border-color .1s, background .1s;
}
.list-item:hover { border-color: var(--accent); }
.list-item .meta { font-size: 13px; color: var(--muted); }
.list-item .right { margin-left: auto; text-align: right; }
.list-item .brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex: 0 0 10px;
}

/* ----- Price pills ----- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.price-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color .1s, background .1s;
}
.price-pill:hover, .price-pill:focus { border-color: var(--accent); }
.price-pill .label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.price-pill .value {
  font-size: 18px; font-weight: 700; margin-top: 2px;
  color: var(--accent);
}
.price-pill .unit {
  font-size: 11px; color: var(--muted); margin-left: 2px;
}

/* ----- Credit header ----- */
.credits-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.credits-bar .name { font-weight: 600; }
.credits-bar .credits {
  font-weight: 800;
  color: var(--accent);
  font-size: 18px;
}

/* ----- Bet outcome tags ----- */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag.open { background: #243240; color: #7ec9ff; }
.tag.won  { background: #123627; color: #5be39a; }
.tag.lost { background: #3a1d1d; color: #ff8e8e; }
.tag.draw { background: #2e2a17; color: var(--accent); }
.tag.void { background: #2a2a2a; color: var(--muted); }

.direction-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 999px; font-size: 12px;
  font-weight: 700;
}
.direction-pill.up   { background: #123627; color: #5be39a; }
.direction-pill.down { background: #3a1d1d; color: #ff8e8e; }
.direction-pill.exact{ background: #2e2a17; color: var(--accent); }

/* ----- Map ----- */
#map {
  position: fixed;
  inset: 0;
  /* Leave room for both the bottom nav (when present) and the always-visible
     legal footer. body.has-nav is always set on the map route. */
  bottom: calc(var(--nav-h) + var(--footer-h) + env(safe-area-inset-bottom));
  z-index: 1;
}
.map-overlay {
  position: fixed;
  top: calc(14px + env(safe-area-inset-top));
  left: 14px;
  right: calc(14px + 44px + 8px); /* leave room for Leaflet zoom control on the right */
  max-width: 420px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.map-overlay > * { pointer-events: auto; }
.map-top-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.map-top-row .map-credits { flex: 1; }
.map-top-row .map-fab { flex: 0 0 auto; }
.map-search {
  position: relative;
  display: flex;
  background: rgba(15,20,23,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 2px 2px 14px;
  align-self: stretch;
}
.map-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 6px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  width: 100%;
  min-width: 0;
}
.map-search input::placeholder { color: var(--muted); }
.map-search .plz-go {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #1b1400;
  border: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  flex: 0 0 auto;
}
.map-search .plz-go:hover { background: var(--accent-2); }
.plz-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: rgba(15,20,23,0.95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  max-height: 260px;
  overflow-y: auto;
  z-index: 10;
}
.plz-suggest li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
}
.plz-suggest li:hover,
.plz-suggest li.active {
  background: rgba(255,255,255,0.06);
}
.plz-suggest .s-main {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.plz-suggest .s-sub {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-credits {
  background: rgba(15,20,23,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  color: var(--accent);
  font-size: 15px;
}
.map-fab {
  background: rgba(15,20,23,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--accent);
  font-size: 18px;
}

.leaflet-tile { filter: brightness(0.85) contrast(1.05); }
.leaflet-container { background: #222; }

/* Marker label */
.station-marker {
  background: var(--accent);
  color: #1b1400;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  border: 2px solid var(--bg);
}
/* Stations that already have at least one bet placed on them — extra
   ring + glow so they stand out on the map without changing the color
   scale users read for prices. */
.station-marker.has-bets {
  outline: 2px solid var(--accent-2);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px rgba(255, 211, 78, 0.18), 0 2px 8px rgba(0,0,0,0.55);
}
.station-marker.is-focused {
  outline-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35),
              0 0 18px rgba(255, 211, 78, 0.7),
              0 2px 10px rgba(0,0,0,0.6);
  animation: focus-pulse 1.6s ease-out 0s 2;
}
@keyframes focus-pulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ----- Bottom nav ----- */
[hidden] { display: none !important; }
#nav {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(15,20,23,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 1000;
}
#nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
  gap: 2px;
}
#nav a .ic {
  font-size: 20px; line-height: 1;
}
#nav a.active { color: var(--accent); }

/* ----- Misc ----- */
.center { text-align: center; }
.sep {
  height: 1px; background: var(--border);
  margin: 18px 0;
}
.hero {
  padding: 28px 0 12px;
  text-align: center;
}
.hero .logo {
  display: inline-block;
  width: 72px; height: 72px;
  background: var(--accent);
  color: #1b1400;
  border-radius: 22px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -2px;
  box-shadow: 0 10px 30px rgba(244,180,0,0.25);
  margin-bottom: 14px;
}
.hero .subtitle { color: var(--muted); margin-top: 4px; }

.alert {
  background: #3a1d1d;
  border: 1px solid #7a2b2b;
  color: #ffbaba;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.alert.info { background: #1a2a3a; border-color: #2e4f74; color: #cfe6ff; }
.alert.success { background: #123627; border-color: #1e6a48; color: #a9efc7; }

.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}
.loader {
  display: inline-block;
  width: 22px; height: 22px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-center { display: grid; place-items: center; padding: 60px 0; }
@keyframes spin { to { transform: rotate(360deg); } }

.station-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}
.station-hero h1 { margin-bottom: 4px; }
.station-hero .addr { color: var(--muted); font-size: 14px; }

.segmented {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.segmented button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
  transition: background .1s, color .1s;
}
.segmented button.active {
  background: var(--accent);
  color: #1b1400;
}

/* Leaderboard */
.lb-row { display: flex; align-items: center; gap: 12px; }
.lb-row .rank {
  width: 32px;
  font-weight: 800;
  color: var(--muted);
  text-align: right;
}
.lb-row.me { border: 1px solid var(--accent); }
.lb-row .credits { font-weight: 800; color: var(--accent); }

.dt-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

/* ---------- Bet direction squares (new Wette platzieren layout) ---------- */
.bet-squares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.bet-square {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 8px;
  min-height: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease;
}
.bet-square .bet-sq-icon { font-size: 30px; line-height: 1; }
.bet-square:hover { transform: translateY(-1px); }
.bet-square.up.active {
  background: rgba(0, 200, 83, 0.18);
  border-color: var(--success);
  color: var(--success);
}
.bet-square.down.active {
  background: rgba(229, 57, 53, 0.18);
  border-color: var(--danger);
  color: var(--danger);
}
.bet-square.exact.active {
  background: rgba(244, 180, 0, 0.18);
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Stake stepper ---------- */
.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px;
}
.stepper input {
  flex: 1;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  min-width: 0;
  padding: 8px 0;
  outline: none;
  -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.step-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.step-btn:hover {
  background: var(--accent); color: #1b1400; border-color: var(--accent);
}
.stepper-unit {
  padding-right: 10px;
  color: var(--muted);
  font-size: 13px;
}
.dt-row .chip {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
}
.dt-row .chip.active {
  background: var(--accent); color: #1b1400; border-color: var(--accent);
}

.big-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.big-price .unit { font-size: 18px; color: var(--muted); font-weight: 500; margin-left: 4px; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--muted);
  cursor: pointer;
  background: none; border: none;
  padding: 4px 0;
  font-size: 14px;
}
.back:hover { color: var(--text); }

/* ----- Station popup (over map) ----- */
.station-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 17, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 800;
  display: grid;
  place-items: end center;
  padding: 0 14px calc(var(--nav-h) + 16px + env(safe-area-inset-bottom)) 14px;
  animation: fadeIn 0.15s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.station-popup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  animation: slideUp 0.2s ease-out;
  position: relative;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: none; opacity: 1; } }

.station-popup .popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 0;
}
.station-popup .popup-header h2 { margin: 0; font-size: 18px; flex: 1; }
.station-popup .popup-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  display: grid; place-items: center;
  flex: 0 0 auto;
  margin-left: 10px;
}
.station-popup .popup-close:hover { color: var(--text); background: var(--border); }

.station-popup .popup-body {
  padding: 12px 18px 18px;
}
.station-popup .popup-addr {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 14px;
}
.station-popup .popup-status {
  font-size: 13px;
  margin-bottom: 14px;
}

.station-popup .fuel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.station-popup .fuel-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  color: var(--text);
  transition: border-color .1s, background .1s;
}
.station-popup .fuel-btn:hover { border-color: var(--accent); }
.station-popup .fuel-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.station-popup .fuel-btn .fuel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex: 0 0 10px;
}
.station-popup .fuel-btn .fuel-name { font-weight: 600; flex: 1; text-align: left; }
.station-popup .fuel-btn .fuel-price {
  font-weight: 800; font-size: 18px;
  color: var(--accent);
}

.station-popup .popup-loading {
  text-align: center;
  padding: 30px 0;
  color: var(--muted);
}

/* ----- User-bets popup (opens from leaderboard click) ----- */
.user-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 17, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 800;
  display: grid;
  place-items: center;
  padding: 16px;
  animation: fadeIn .15s ease-out;
}
.user-popup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp .2s ease-out;
}
.user-popup .popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 0;
}
.user-popup .popup-header h2 { margin: 0; font-size: 18px; flex: 1; }
.user-popup .popup-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
}
.user-popup .popup-close:hover { color: var(--text); background: var(--border); }
.user-popup .popup-body { padding: 12px 18px 18px; }
.user-popup .popup-loading {
  text-align: center;
  padding: 30px 0;
  color: var(--muted);
}
.user-popup-intro { font-size: 13px; margin: 4px 0 14px; }
.user-popup-stations { display: flex; flex-direction: column; gap: 12px; }
.user-popup-station {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.user-popup-station-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 0 0 8px;
  margin: 0 0 4px;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.user-popup-station-link:hover .user-popup-station-name { color: var(--accent); }
.user-popup-station-link:hover .user-popup-station-go { color: var(--accent); transform: translateX(2px); }
.user-popup-station-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.user-popup-station-name {
  font-weight: 700;
  font-size: 14px;
  transition: color .1s;
}
.user-popup-station-go {
  color: var(--muted);
  font-size: 16px;
  transition: color .1s, transform .1s;
}
.user-popup-fuels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.user-popup-fuel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.user-popup-fuel-name { font-weight: 600; color: var(--accent); }
.user-popup-fuel-count { font-size: 12px; }

/* ----- Station-popup bettors section (over map) ----- */
.station-bettors {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.station-bettors-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.station-bettor {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.station-bettor-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.station-bettor-name { font-weight: 700; font-size: 14px; }
.station-bettor-total { font-size: 12px; }
.station-bettor-fuels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.station-bettor-fuel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}
.station-bettor-fuel-name { font-weight: 600; color: var(--accent); }
.station-bettor-fuel-count { font-size: 12px; }

/* Leaderboard rows are clickable buttons — reset native button styling
   so they look identical to the previous div-based rows. */
button.lb-row {
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
button.lb-row:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
button.lb-row:active { transform: scale(0.997); }

.toast {
  position: fixed;
  bottom: calc(var(--nav-h) + 24px + env(safe-area-inset-bottom));
  left: 50%; transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  z-index: 2000;
  max-width: 90vw;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.toast.success { border-color: var(--success); color: var(--success); }
.toast.error   { border-color: var(--danger); color: var(--danger); }

/* ============================================================
   CASINO BENZOL THEME
   Activated by adding class `theme-casino` to <body>.
   Toggled from Profile → "Casino Benzol mode".
   All rules below are scoped under body.theme-casino so the
   default theme remains 100% untouched when the flag is off.
   ============================================================ */

body.theme-casino {
  /* Re-map the design tokens the rest of the app consumes. */
  --bg:        #0A0A0A;
  --surface:   #121212;
  --surface-2: #1E1E1E;
  --text:      #FFFFFF;
  --muted:     #C9B98A;
  --accent:    #D4AF37;   /* gold-primary */
  --accent-2:  #FFD700;   /* gold-highlight */
  --success:   #00C853;
  --danger:    #D50000;
  --link:      #1BC5B3;
  --border:    #3A2E0A;   /* warm gold-ish border */
  --radius:    12px;
  --radius-sm: 8px;

  --cb-gold-dark:  #B8962E;
  --cb-green:      #0F5E5B;
  --cb-green-mid:  #0A3F3D;
  --cb-green-acc:  #1BC5B3;
  --cb-glow-gold:  0 0 12px rgba(255, 215, 0, .6);
  --cb-glow-green: 0 0 10px rgba(27, 197, 179, .6);

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto,
               "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 50% -10%,
      rgba(15, 94, 91, 0.35) 0%,
      rgba(15, 94, 91, 0.12) 35%,
      rgba(0, 0, 0, 0) 70%),
    #0A0A0A;
}

body.theme-casino h1,
body.theme-casino h2,
body.theme-casino h3 {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  text-shadow: var(--cb-glow-gold);
}

body.theme-casino .muted { color: var(--muted); opacity: 0.85; }

/* ---------- Buttons ---------- */
body.theme-casino .btn,
body.theme-casino button.btn,
body.theme-casino .plz-go {
  background: linear-gradient(180deg, #FFE27A 0%, #D4AF37 55%, #8A6A17 100%);
  color: #1a1000;
  border: 1px solid #8A6A17;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 0 0 2px rgba(0,0,0,0.3),
    0 4px 18px rgba(212, 175, 55, 0.35);
  transition: transform 120ms ease, box-shadow 200ms ease;
}
body.theme-casino .btn:hover:not(:disabled),
body.theme-casino .plz-go:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 0 0 2px rgba(0,0,0,0.3),
    var(--cb-glow-gold),
    0 6px 22px rgba(212, 175, 55, 0.5);
  transform: translateY(-1px);
}
body.theme-casino .btn:disabled {
  filter: grayscale(0.4) brightness(0.7);
  box-shadow: none;
}
body.theme-casino .btn.secondary {
  background: linear-gradient(180deg, #1E1E1E 0%, #121212 100%);
  color: var(--accent-2);
  border: 1px solid var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  text-shadow: var(--cb-glow-gold);
}

/* ---------- Chips (direction + duration) ---------- */
body.theme-casino .chip {
  background: linear-gradient(180deg, #1E1E1E 0%, #0F0F0F 100%);
  border: 1px solid var(--cb-gold-dark);
  color: var(--accent-2);
  border-radius: 999px;
  font-weight: 700;
}
body.theme-casino .chip.active {
  background: linear-gradient(180deg, #FFE27A 0%, #D4AF37 100%);
  color: #1a1000;
  border-color: #8A6A17;
  box-shadow: var(--cb-glow-gold);
}
/* Direction chips color cues */
body.theme-casino #direction .chip[data-dir="up"].active {
  background: linear-gradient(180deg, #26d46a 0%, #00973e 100%);
  color: #062410;
  border-color: #00973e;
  box-shadow: var(--cb-glow-green);
}
body.theme-casino #direction .chip[data-dir="down"].active {
  background: linear-gradient(180deg, #ff5b5b 0%, #b70000 100%);
  color: #1a0000;
  border-color: #b70000;
  box-shadow: 0 0 10px rgba(213, 0, 0, 0.55);
}

/* ---------- Cards / surfaces ---------- */
body.theme-casino .card,
body.theme-casino .station-hero,
body.theme-casino .station-popup,
body.theme-casino .user-popup,
body.theme-casino #summary,
body.theme-casino #credits-pill,
body.theme-casino .map-fab,
body.theme-casino .map-search {
  background:
    linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid var(--cb-gold-dark);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 28px rgba(0,0,0,0.6);
}
body.theme-casino .card,
body.theme-casino .station-hero,
body.theme-casino .station-popup,
body.theme-casino .user-popup,
body.theme-casino #summary {
  border-radius: 14px;
  position: relative;
}
body.theme-casino .card::before,
body.theme-casino .station-hero::before,
body.theme-casino .station-popup::before,
body.theme-casino .user-popup::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255, 226, 122, 0.55),
    rgba(184, 150, 46, 0.1) 40%,
    rgba(27, 197, 179, 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
body.theme-casino .user-popup-station,
body.theme-casino .station-bettor {
  background: linear-gradient(180deg, #181818 0%, #0c0c0c 100%);
  border-color: var(--cb-gold-dark);
}
body.theme-casino .user-popup-fuel-name,
body.theme-casino .station-bettor-fuel-name {
  color: var(--accent-2);
  text-shadow: var(--cb-glow-gold);
}
body.theme-casino .user-popup-station-name { color: var(--accent-2); }
body.theme-casino .station-bettor-name { color: var(--accent-2); text-shadow: var(--cb-glow-gold); }
body.theme-casino .station-marker.has-bets {
  outline-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25), var(--cb-glow-gold);
}

/* ---------- Prices / numbers ---------- */
body.theme-casino .big-price,
body.theme-casino #price,
body.theme-casino .station-marker,
body.theme-casino input[type="number"] {
  font-family: "Orbitron", "Inter", system-ui, sans-serif;
  letter-spacing: 0.02em;
}
body.theme-casino .big-price,
body.theme-casino #price,
body.theme-casino .sc-price {
  /* Casino Benzol style frame: current prices are neon green (Orbitron),
     gold is reserved for labels, buttons, and frames. */
  color: #26d46a;
  text-shadow: var(--cb-glow-green);
}
body.theme-casino .success { color: #26d46a; text-shadow: var(--cb-glow-green); }
body.theme-casino .danger  { color: #ff5b5b; }

/* ---------- Inputs ---------- */
body.theme-casino input[type="text"],
body.theme-casino input[type="number"],
body.theme-casino input[type="email"],
body.theme-casino input[type="password"] {
  background: #0c0c0c;
  border: 1px solid var(--cb-gold-dark);
  color: var(--accent-2);
  border-radius: 10px;
}
body.theme-casino input:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: var(--cb-glow-gold);
}
body.theme-casino input::placeholder { color: rgba(201,185,138,0.55); }

/* ---------- Map overlay tweaks ---------- */
body.theme-casino.map-view .map-credits {
  color: var(--accent-2);
  text-shadow: var(--cb-glow-gold);
}
body.theme-casino .station-marker {
  /* Matches in-app price color (green) instead of gold so drivers can
     scan prices at a glance on the map. */
  background: linear-gradient(180deg, #2de77a 0%, #00a344 100%);
  color: #042b14;
  border: 1px solid #8A6A17;
  box-shadow: var(--cb-glow-gold);
}
body.theme-casino .plz-suggest {
  background: rgba(10,10,10,0.97);
  border: 1px solid var(--cb-gold-dark);
}
body.theme-casino .plz-suggest li.active,
body.theme-casino .plz-suggest li:hover {
  background: linear-gradient(180deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.08) 100%);
}

/* ---------- Bottom nav ---------- */
body.theme-casino #nav {
  background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%);
  border-top: 1px solid var(--cb-gold-dark);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.5);
}
body.theme-casino #nav a { color: var(--muted); }
body.theme-casino #nav a.active {
  color: var(--accent-2);
  text-shadow: var(--cb-glow-gold);
}

/* ---------- Fuel buttons in station popup ---------- */
body.theme-casino .fuel-btn {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid var(--cb-gold-dark);
  color: var(--accent-2);
  border-radius: 12px;
}
body.theme-casino .fuel-btn:not(:disabled):hover {
  box-shadow: var(--cb-glow-gold);
  border-color: var(--accent-2);
}

/* ---------- Toasts ---------- */
body.theme-casino .toast {
  background: #111;
  border: 1px solid var(--cb-gold-dark);
  color: var(--accent-2);
  box-shadow: var(--cb-glow-gold);
}
body.theme-casino .toast.success {
  border-color: #26d46a; color: #26d46a;
  box-shadow: var(--cb-glow-green);
}
body.theme-casino .toast.error {
  border-color: #ff5b5b; color: #ff5b5b;
  box-shadow: 0 0 10px rgba(213,0,0,0.55);
}

/* ---------- Theme-toggle switch (used in Profile) ---------- */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.theme-toggle-label {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
}
.theme-toggle-label small { font-size: 12px; color: var(--muted); }
.switch {
  --w: 48px;
  --h: 26px;
  position: relative;
  width: var(--w); height: var(--h);
  flex: 0 0 auto;
  display: inline-block;
}
.switch input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0;
}
.switch .slider {
  position: absolute; inset: 0;
  background: #2a353b;
  border-radius: 999px;
  transition: background 200ms ease;
}
.switch .slider::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: calc(var(--h) - 6px);
  height: calc(var(--h) - 6px);
  background: #e8eef2;
  border-radius: 50%;
  transition: transform 200ms ease, background 200ms ease;
}
.switch input:checked + .slider {
  background: linear-gradient(180deg, #FFE27A 0%, #D4AF37 100%);
  box-shadow: var(--cb-glow-gold);
}
.switch input:checked + .slider::before {
  transform: translateX(calc(var(--w) - var(--h)));
  background: #1a1000;
}

/* ============================================================
   HOME FEED
   ============================================================ */
.home { display: flex; flex-direction: column; gap: 16px; }
.home-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 0 0;
}
.home-topbar .brand-wordmark {
  flex: 1; text-align: center;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800; letter-spacing: 0.12em;
  font-size: 18px;
  color: var(--accent);
}
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

.list-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0;
}
.list-head a { text-decoration: none; font-size: 13px; }

/* ---------- Jackpot card ---------- */
.jackpot-card {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 18px;
  border-radius: 18px;
  background:
    radial-gradient(400px 200px at 30% 120%, rgba(15,94,91,0.5) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 96px;
}
.jackpot-card .jp-main { flex: 1; }
.jackpot-card .jp-label {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.jackpot-card .jp-amount {
  font-family: "Orbitron", "Inter", system-ui, sans-serif;
  font-size: 30px; font-weight: 800;
  color: var(--accent);
  margin-top: 2px;
}
.jackpot-card .jp-reset { font-size: 11px; margin-top: 2px; }
.jackpot-card .jp-slot {
  display: flex; gap: 4px;
  background: #0a0a0a;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 6px 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 22px; font-weight: 800;
  color: #ff5b5b;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.6);
}
.jackpot-card .jp-slot .reel {
  min-width: 22px; text-align: center;
  background: linear-gradient(180deg, #222 0%, #111 100%);
  border-radius: 4px;
  padding: 0 4px;
  text-shadow: 0 0 6px currentColor;
}

/* ---------- Station cards (home feed) ---------- */
.station-list { display: flex; flex-direction: column; gap: 10px; }
.station-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font: inherit;
}
.station-card:hover { border-color: var(--accent); }
.station-card .sc-body { min-width: 0; }
.station-card .sc-name {
  font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.station-card .sc-meta {
  font-size: 12px; color: var(--muted);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.station-card .sc-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.station-card .sc-price {
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}
.station-card .sc-hint {
  font-size: 11px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
}
.station-card .sc-hint.up      { color: var(--success); border-color: var(--success); background: rgba(0,200,83,0.12); }
.station-card .sc-hint.down    { color: var(--danger);  border-color: var(--danger);  background: rgba(229,57,53,0.12); }
.station-card .sc-hint.neutral { color: var(--accent);  border-color: var(--accent);  background: rgba(244,180,0,0.14); }

/* ---------- Brand tile (rounded square) ----------
   Layered: a full-bleed <img> (drop-in at /icons/brands/<key>.svg) sits
   on top; if it fails to load (onerror="this.remove()" in brands.js),
   the inline-SVG fallback underneath becomes visible. Either layer
   paints its own background, so the tile never looks half-painted.
*/
.brand-tile {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--bt-bg, #1a1a1a);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
}
.brand-tile .bt-fallback,
.brand-tile .bt-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brand-tile .bt-fallback { z-index: 1; }
.brand-tile .bt-img      { z-index: 2; object-fit: contain; background: var(--bt-bg); }
.brand-tile .bt-svg      { display: block; width: 100%; height: 100%; }

/* ---------- Sparkline ---------- */
.hero-spark {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.spark-body { margin-top: 6px; }
.spark-wrap { position: relative; }
.spark { display: block; }
.spark-hit { cursor: crosshair; }
.spark-pt { transition: r 120ms ease-out; }
.spark-pt.hi { filter: drop-shadow(0 0 6px currentColor); }
.spark-tip {
  position: absolute;
  transform: translate(-50%, -100%);
  pointer-events: none;
  display: none;
  background: rgba(10, 10, 10, 0.96);
  color: #fff;
  font-family: "Orbitron", "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  z-index: 10;
}
.spark-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 8px; height: 8px;
  background: inherit;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: translate(-50%, 0) rotate(45deg);
}
body.theme-casino .spark-tip {
  border-color: var(--cb-gold-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6), var(--cb-glow-gold);
  color: var(--accent-2);
}
.spark text.spark-ax {
  fill: var(--muted);
  font-size: 10px;
  font-family: "Orbitron", "Inter", sans-serif;
}
.spark-delta {
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800; font-size: 13px; margin-top: 4px;
}
.spark-delta.up   { color: var(--success); }
.spark-delta.down { color: var(--danger); }
.station-hero-lux .hero-top {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}
.station-hero-lux .hero-top h1 { margin: 0 0 2px; font-size: 22px; }
.station-hero-lux .hero-top .addr { font-size: 13px; color: var(--muted); }

/* ============================================================
   RESULT OVERLAY (win / lose)
   ============================================================ */
.result-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: grid; place-items: center;
  padding: 20px;
  overflow: hidden;
}
.result-card {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 30px 24px 22px;
  max-width: 380px; width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 0 3px rgba(0,0,0,0.4);
  animation: resultPop 350ms cubic-bezier(.17,.89,.32,1.28) both;
}
.result-card.lost   { border-color: var(--danger);  animation: resultShake 450ms ease-out both; }
.result-card.void   { border-color: var(--border); }
.result-card.draw   { border-color: var(--border); }
@keyframes resultPop {
  0%   { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes resultShake {
  0%   { transform: translateX(0); opacity: 0; }
  20%  { transform: translateX(-14px); opacity: 1; }
  40%  { transform: translateX(12px); }
  60%  { transform: translateX(-8px); }
  80%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}
.result-close {
  position: absolute; top: 8px; right: 10px;
  background: transparent; border: none;
  color: var(--muted); font-size: 18px; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
}
.result-close:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.result-title {
  font-family: "Cinzel", Georgia, serif;
  font-size: 44px; font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.6);
  margin-top: 6px;
}
.result-card.lost .result-title { color: var(--danger); text-shadow: 0 0 12px rgba(213, 0, 0, 0.55); }
.result-card.void .result-title,
.result-card.draw .result-title { color: var(--muted); text-shadow: none; font-size: 26px; }

.result-sub {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.result-tag {
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800; font-size: 16px;
  color: var(--success);
  margin-top: 14px;
}
.result-card.lost .result-tag { color: var(--danger); }

.result-price {
  margin-top: 14px;
  padding: 14px 18px;
  background: #0a0a0a;
  border: 2px solid var(--accent);
  border-radius: 14px;
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800; font-size: 28px;
  color: var(--accent);
  box-shadow: inset 0 0 12px rgba(255, 215, 0, 0.2);
}
.result-card.lost .result-price {
  border-color: var(--danger);
  color: var(--danger);
  box-shadow: inset 0 0 12px rgba(213, 0, 0, 0.25);
}

.result-payout {
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800; font-size: 22px;
  margin-top: 10px;
}
.result-payout.won  { color: var(--success); }
.result-payout.lost { color: var(--danger); }
.result-payout.void, .result-payout.draw { color: var(--muted); }

.result-meta { font-size: 12px; margin: 10px 0 14px; }
.result-again { width: 100%; }

/* ---------- Confetti (win only) ---------- */
.confetti {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute; top: -20px;
  width: 8px; height: 12px;
  background: hsl(var(--cf-hue, 48), 90%, 55%);
  opacity: 0.9;
  transform: rotate(0deg);
  animation: confettiFall 1.6s ease-in forwards;
  border-radius: 1px;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.8; }
}

/* ============================================================
   CASINO-theme overrides for the new components
   ============================================================ */

/* Bet direction squares — mockup colors */
body.theme-casino .bet-square {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid var(--cb-gold-dark);
  color: var(--accent-2);
}
body.theme-casino .bet-square .bet-sq-icon {
  filter: drop-shadow(0 0 6px currentColor);
}
body.theme-casino .bet-square.up.active {
  background: linear-gradient(180deg, rgba(38,212,106,0.28) 0%, rgba(0,151,62,0.12) 100%);
  border-color: #26d46a;
  color: #26d46a;
  box-shadow: var(--cb-glow-green);
}
body.theme-casino .bet-square.down.active {
  background: linear-gradient(180deg, rgba(255,91,91,0.26) 0%, rgba(183,0,0,0.12) 100%);
  border-color: #ff5b5b;
  color: #ff5b5b;
  box-shadow: 0 0 10px rgba(213,0,0,0.55);
}
body.theme-casino .bet-square.exact.active {
  background: linear-gradient(180deg, rgba(255,215,0,0.25) 0%, rgba(212,175,55,0.1) 100%);
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: var(--cb-glow-gold);
}

/* Stepper */
body.theme-casino .stepper {
  background: #0c0c0c;
  border: 1px solid var(--cb-gold-dark);
}
body.theme-casino .stepper input {
  color: var(--accent-2);
  font-family: "Orbitron", "Inter", sans-serif;
}
body.theme-casino .step-btn {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: var(--accent-2);
  border: 1px solid var(--cb-gold-dark);
}
body.theme-casino .step-btn:hover {
  background: linear-gradient(180deg, #FFE27A 0%, #D4AF37 100%);
  color: #1a1000;
  border-color: #8A6A17;
  box-shadow: var(--cb-glow-gold);
}

/* Home topbar */
body.theme-casino .home-topbar .brand-wordmark {
  color: var(--accent-2);
  text-shadow: var(--cb-glow-gold);
}
body.theme-casino .icon-btn {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-color: var(--cb-gold-dark);
  color: var(--accent-2);
}
body.theme-casino .icon-btn:hover {
  box-shadow: var(--cb-glow-gold);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* Jackpot card */
body.theme-casino .jackpot-card {
  background:
    radial-gradient(500px 240px at 30% 120%, rgba(15,94,91,0.6) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, #141414 0%, #050505 100%);
  border: 2px solid var(--cb-gold-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--cb-glow-green);
}
body.theme-casino .jackpot-card::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0%,
    rgba(255,215,0,0.08), transparent 55%);
}
body.theme-casino .jackpot-card .jp-label {
  color: var(--accent-2);
  letter-spacing: 0.14em;
  text-shadow: var(--cb-glow-gold);
}
body.theme-casino .jackpot-card .jp-amount {
  color: var(--accent-2);
  text-shadow: var(--cb-glow-gold);
}

/* Station cards */
body.theme-casino .station-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid var(--cb-gold-dark);
}
body.theme-casino .station-card:hover { box-shadow: var(--cb-glow-gold); }
body.theme-casino .station-card .sc-price {
  color: #26d46a;
  text-shadow: var(--cb-glow-green);
  font-family: "Orbitron", "Inter", sans-serif;
}
body.theme-casino .station-card .sc-hint.up {
  color: #26d46a; border-color: #26d46a;
  background: rgba(38,212,106,0.16);
  box-shadow: var(--cb-glow-green);
}
body.theme-casino .station-card .sc-hint.down {
  color: #ff5b5b; border-color: #ff5b5b;
  background: rgba(255,91,91,0.14);
}
body.theme-casino .station-card .sc-hint.neutral {
  color: var(--accent-2); border-color: var(--accent-2);
  background: linear-gradient(180deg, rgba(255,215,0,0.22), rgba(212,175,55,0.1));
  box-shadow: var(--cb-glow-gold);
}

/* Hero sparkline */
body.theme-casino .hero-spark {
  background: #0a0a0a;
  border: 1px solid var(--cb-gold-dark);
  --spark-up: #26d46a;
  --spark-down: #ff5b5b;
}

/* Brand tile: prominent gold shadow when casino */
body.theme-casino .brand-tile {
  box-shadow: 0 4px 10px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.25),
              var(--cb-glow-gold);
}

/* Result overlay polish */
body.theme-casino .result-card {
  border-color: var(--accent-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), var(--cb-glow-gold);
}
body.theme-casino .result-card.lost {
  border-color: #ff5b5b;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 16px rgba(213,0,0,0.55);
}
body.theme-casino .result-title { font-family: "Cinzel", Georgia, serif; }
body.theme-casino .result-tag,
body.theme-casino .result-payout,
body.theme-casino .result-price {
  font-family: "Orbitron", "Inter", sans-serif;
}

/* ============================================================
   Legal pages + global footer (Impressum, Datenschutz, Kontakt)
   ============================================================ */

/* Footer is fixed at the bottom of the viewport on every view — including
   the map. That meets the "always visible" requirement for Impressum,
   Datenschutz, AGB, Kontakt. When the bottom nav is also visible (logged-in
   views) it sits one nav-height higher. */
#legal-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom);
  z-index: 400; /* below station-popup-backdrop (1000+) so popups still cover it */
  height: var(--footer-h);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  border-top: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
}
body.has-nav #legal-footer {
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
}
#legal-footer a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}
#legal-footer a:hover { color: var(--text); border-bottom-color: var(--muted); }
#legal-footer .legal-note {
  opacity: 0.7;
  font-style: italic;
}
/* On narrow viewports the legal-note would force-wrap or overflow; hide it
   there. The same hint is still in the profile page and the legal pages. */
@media (max-width: 520px) {
  #legal-footer .legal-note { display: none; }
}

/* Legal page (Impressum, Datenschutz, Kontakt) — readable long-form text. */
.legal-page {
  max-width: 560px;
  margin: 0 auto;
}
.legal-page h1 { margin-top: 12px; }
.legal-page h2 { margin-top: 28px; font-size: 18px; color: var(--text); text-transform: none; letter-spacing: 0; }
.legal-page h3 { margin-top: 18px; font-size: 14px; color: var(--text); text-transform: none; letter-spacing: 0; }
.legal-page section { margin-bottom: 22px; }
.legal-page p { font-size: 15px; line-height: 1.55; }
.legal-page ul { padding-left: 22px; margin: 0 0 12px; }
.legal-page li { margin-bottom: 4px; }
.legal-page a { color: var(--link); }
.legal-page code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.legal-page .back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  margin-bottom: 12px;
}

/* Consent checkbox (registration form) */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
  margin-top: 4px;
}
.consent-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.consent-row a { color: var(--link); }

/* Honeypot for the contact form — must be off-screen, not display:none, so
   that bots that ignore CSS still fill it in. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Profile-page legal section (mirrors the footer; reachable from the map view
   via Bottom-Nav → Profil → Link, satisfying the two-click rule). */
.profile-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 6px;
}
.profile-legal-links a {
  color: var(--link);
  text-decoration: none;
  font-size: 14px;
}
.profile-legal-links a:hover { text-decoration: underline; }

/* =============================================================================
   LANDING PAGE — Casino-Benzol-Look
   Bewusst kitschig: gold + green glow, big shadows, animations, Cinzel/Orbitron.
   Alle Selektoren mit .landing geprefixt, damit nichts in andere Views leakt.
   ============================================================================ */

.landing {
  --gold-primary: #D4AF37;
  --gold-highlight: #FFD700;
  --gold-dark: #B8962E;
  --green-primary: #0F5E5B;
  --green-accent: #1BC5B3;
  --landing-bg: #0A0A0A;
  --landing-card: #121212;
  --landing-card-2: #1E1E1E;
  --glow-gold: 0 0 24px rgba(255, 215, 0, 0.45);
  --glow-gold-soft: 0 0 14px rgba(255, 215, 0, 0.28);
  --glow-green: 0 0 22px rgba(27, 197, 179, 0.42);
  --shadow-deep: 0 24px 50px rgba(0, 0, 0, 0.65);

  position: relative;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  color: #f1eddf;
  background: var(--landing-bg);
  overflow-x: clip;
}

/* Override #app's max-width specifically for the landing view. */
body:has(> #app > .landing) #app,
#app:has(> .landing) {
  max-width: none;
  padding: 0;
  width: 100%;
}

/* ----- Animated background gradient + subtle radial spotlight ----- */
.landing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 50% 0%, rgba(212, 175, 55, 0.18), transparent 70%),
    radial-gradient(900px 500px at 50% 38%, rgba(27, 197, 179, 0.12), transparent 70%),
    radial-gradient(1200px 700px at 50% 100%, rgba(212, 175, 55, 0.10), transparent 70%),
    var(--landing-bg);
}

/* ----- Floating coins decoration ----- */
.landing-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  opacity: 0.55;
}
.landing-coins .coin {
  position: absolute;
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
  animation: coinFloat 9s ease-in-out infinite;
}
.landing-coins .coin-1 { top:  8%; left:  6%; animation-delay: 0s;   font-size: 22px; }
.landing-coins .coin-2 { top: 22%; right:  9%; animation-delay: 1.4s; font-size: 30px; }
.landing-coins .coin-3 { top: 46%; left: 11%; animation-delay: 2.8s; font-size: 26px; }
.landing-coins .coin-4 { top: 60%; right:  6%; animation-delay: 0.7s; font-size: 24px; }
.landing-coins .coin-5 { top: 78%; left:  8%; animation-delay: 3.5s; font-size: 28px; }
.landing-coins .coin-6 { top: 88%; right: 13%; animation-delay: 5.2s; font-size: 20px; }
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.4; }
  50%      { transform: translateY(-18px) rotate(8deg); opacity: 0.85; }
}

/* ----- Landing section base ----- */
.landing > section {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
}
.landing .section-eyebrow {
  font-family: "Orbitron", "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-primary);
  opacity: 0.85;
  margin-bottom: 6px;
}
.landing h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin: 0 0 32px;
  text-shadow:
    0 0 18px rgba(255, 215, 0, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}
.landing h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin: 8px 0 6px;
}
.landing p {
  color: #c8c5b8;
  font-size: 15px;
  line-height: 1.55;
}
.landing strong { color: var(--gold-highlight); }
.landing .link { color: var(--gold-highlight); text-decoration: none; }
.landing .link:hover { text-decoration: underline; }

/* ===================== HERO ===================== */
.landing-hero {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 72px;
}
.cb-logo-wrap { margin-bottom: 34px; }
.cb-logo {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.06em;
  background:
    linear-gradient(180deg, #FFE680 0%, #FFD700 35%, #D4AF37 60%, #8C6F1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 36px rgba(255, 215, 0, 0.35),
    0 4px 0 rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.45));
  animation: logoPulse 3.4s ease-in-out infinite;
}
.cb-tagline {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--green-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
  text-shadow: 0 0 12px rgba(27, 197, 179, 0.55);
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.45)); }
  50%      { filter: drop-shadow(0 0 28px rgba(255, 215, 0, 0.7)); }
}

/* ----- Jackpot card ----- */
.landing .jackpot-card {
  max-width: 520px;
  margin: 0 auto 38px;
  padding: 22px 28px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 215, 0, 0.08), rgba(15, 94, 91, 0.08)),
    var(--landing-card);
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    var(--glow-gold-soft),
    inset 0 0 32px rgba(212, 175, 55, 0.08),
    var(--shadow-deep);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px 18px;
  align-items: center;
}
.landing .jp-eyebrow {
  grid-column: 1; grid-row: 1;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  text-align: left;
}
.landing .jp-amount {
  grid-column: 1; grid-row: 2;
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 48px);
  color: #FFD700;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
  text-align: left;
  letter-spacing: 0.04em;
}
.landing .jp-reset {
  grid-column: 1; grid-row: 3;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
}
.landing .jp-reels {
  grid-column: 2; grid-row: 1 / span 3;
  display: flex;
  gap: 6px;
}
.landing .reel {
  width: 38px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a1408, #0a0703);
  color: #FF0033;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  text-shadow: 0 0 10px rgba(255, 0, 51, 0.8);
  box-shadow:
    inset 0 2px 0 rgba(255, 215, 0, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.5);
  animation: reelPulse 1.6s ease-in-out infinite;
}
.landing .reel:nth-child(2) { animation-delay: 0.2s; }
.landing .reel:nth-child(3) { animation-delay: 0.4s; }
@keyframes reelPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* ----- Primary CTA ----- */
.landing .cta-primary {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 38px;
  margin: 6px auto;
  text-decoration: none;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #FFE680 0%, #FFD700 50%, #D4AF37 100%);
  color: #1a1208;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 215, 0, 0.9);
  box-shadow:
    var(--glow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    var(--shadow-deep);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  isolation: isolate;
}
.landing .cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 36px rgba(255, 215, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    var(--shadow-deep);
}
.landing .cta-primary:active { transform: translateY(0) scale(0.99); }
.landing .cta-primary .cta-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(26, 18, 8, 0.85);
}
/* Glanz-Schimmer-Effekt, der sanft über den Button wandert. */
.landing .cta-primary .cta-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  animation: ctaShimmer 3.6s linear infinite;
}
@keyframes ctaShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.landing .cta-primary.huge {
  font-size: 22px;
  padding: 22px 48px;
}

.landing .cta-secondary {
  display: inline-block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}
.landing .cta-secondary strong { color: var(--gold-highlight); }
.landing .cta-secondary:hover { color: #fff; }

/* ===================== HOW IT WORKS ===================== */
.landing-how {
  text-align: center;
}
.landing-how .how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 10px;
}
.landing-how .how-step {
  position: relative;
  padding: 26px 20px 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.04), transparent), var(--landing-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow-deep);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.landing-how .how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--glow-gold-soft), var(--shadow-deep);
}
.landing-how .how-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFE680, #D4AF37);
  color: #1a1208;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
  border: 2px solid #1a1208;
  box-shadow: var(--glow-gold-soft);
}
.landing-how .how-icon {
  font-size: 44px;
  filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.4));
  margin-top: 6px;
}

/* ===================== SHOWCASE CARDS ===================== */
.landing-showcase { text-align: center; }
.landing-showcase .showcase-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.landing-showcase .showcase-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 215, 0, 0.04), transparent), var(--landing-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-deep);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.landing-showcase .showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(360px 200px at 50% 0%, rgba(255, 215, 0, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.landing-showcase .showcase-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow: var(--glow-gold-soft), var(--shadow-deep);
}
.landing-showcase .showcase-card:hover::before { opacity: 1; }
.sc-brand-tag {
  display: inline-block;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.sc-aral .sc-brand-tag { background: linear-gradient(180deg, #0067b5, #002654); color: #fff; }
.sc-shell .sc-brand-tag { background: linear-gradient(180deg, #ffd000, #d40000); color: #1a0000; }
.sc-jet .sc-brand-tag { background: linear-gradient(180deg, #fff200, #cc9900); color: #1a0000; }
.landing .sc-name { color: #fff; font-weight: 700; font-size: 16px; }
.landing .sc-meta { color: rgba(255, 255, 255, 0.5); font-size: 12px; margin-bottom: 14px; }
.landing .sc-price {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--green-accent);
  text-shadow: var(--glow-green);
  margin-bottom: 10px;
}
.landing .sc-trend {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 5px 11px;
  border-radius: 999px;
}
.trend-up    { background: rgba(0, 200, 83, 0.16); color: #4dffa1; border: 1px solid rgba(0, 200, 83, 0.45); }
.trend-down  { background: rgba(213, 0, 0, 0.18); color: #ff6b6b; border: 1px solid rgba(213, 0, 0, 0.45); }
.trend-neutral {
  background: linear-gradient(180deg, #FFE680, #D4AF37);
  color: #1a1208;
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: var(--glow-gold-soft);
  font-weight: 800;
}

/* ===================== TONE-OF-VOICE RAIL ===================== */
.landing-rail {
  max-width: none !important;
  padding: 24px 0 !important;
  background: linear-gradient(180deg, rgba(15, 94, 91, 0.18), rgba(15, 94, 91, 0.02));
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  white-space: nowrap;
}
.rail-track {
  display: inline-flex;
  gap: 56px;
  animation: railScroll 22s linear infinite;
  padding-left: 56px;
}
.rail-track .rail-item {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--gold-highlight);
  text-shadow:
    0 0 14px rgba(255, 215, 0, 0.55),
    0 2px 0 rgba(0, 0, 0, 0.4);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@keyframes railScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== FEATURES ===================== */
.landing-features { text-align: center; }
.landing-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.landing-features .feature {
  padding: 24px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(27, 197, 179, 0.04), transparent), var(--landing-card);
  border: 1px solid rgba(27, 197, 179, 0.2);
  box-shadow: var(--shadow-deep);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.landing-features .feature:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 197, 179, 0.6);
  box-shadow: var(--glow-green), var(--shadow-deep);
}
.landing-features .feature-icon {
  font-size: 40px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 12px rgba(27, 197, 179, 0.6));
}

/* ===================== TRUST BANNER ===================== */
.landing-trust .trust-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.06), rgba(27, 197, 179, 0.04)),
    var(--landing-card);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: var(--glow-gold-soft), var(--shadow-deep);
  text-align: center;
}
.landing-trust .trust-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-accent);
}
.landing-trust h2 { margin: 8px 0 14px; }

/* ===================== FINAL CTA ===================== */
.landing-final {
  text-align: center;
  position: relative;
  padding-top: 80px !important;
  padding-bottom: 110px !important;
}
.final-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at 50% 60%, rgba(255, 215, 0, 0.18), transparent 70%);
}

/* ===================== MOBILE TUNING ===================== */
@media (max-width: 640px) {
  .landing > section { padding: 44px 18px; }
  .landing-hero { padding-top: 56px; padding-bottom: 52px; }
  .landing .jackpot-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }
  .landing .jp-eyebrow,
  .landing .jp-amount,
  .landing .jp-reset { text-align: center; }
  .landing .jp-reels {
    grid-column: 1; grid-row: 4;
    justify-content: center;
    margin-top: 8px;
  }
  .landing .cta-primary { padding: 14px 26px; font-size: 16px; }
  .landing .cta-primary.huge { font-size: 18px; padding: 18px 30px; }
}

/* The landing has its own (very dark) background. When the route is active,
   the body's default bg shows through any gaps; force it to match. */
body:has(> #app > .landing) { background: #0A0A0A; }

/* =============================================================================
   LANDING — Bling-Modus
   Mehr Animation, mehr Neon, mehr Sarkasmus.
   ============================================================================ */

.landing {
  --magenta: #FF3DAA;
  --hotpink: #FF5151;
}

/* ===== Disco spotlight sweeping across the page ===== */
.disco-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    conic-gradient(from 0deg at 50% 30%,
      transparent 0deg,
      rgba(255, 215, 0, 0.10) 30deg,
      transparent 60deg,
      transparent 180deg,
      rgba(255, 61, 170, 0.08) 210deg,
      transparent 240deg,
      transparent 360deg);
  mix-blend-mode: screen;
  animation: discoRotate 14s linear infinite;
  filter: blur(40px);
  opacity: 0.85;
}
@keyframes discoRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== Scanlines overlay (retro CRT touch) ===== */
.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 2px,
    rgba(255, 215, 0, 0.025) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  mix-blend-mode: overlay;
}

/* ===== Top live-ticker strip ===== */
.bling-bar {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, #ff0040 0%, #ffd700 25%, #1bc5b3 50%, #ffd700 75%, #ff0040 100%);
  background-size: 300% 100%;
  animation: bbBgShift 8s linear infinite;
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
  padding: 6px 0;
  overflow: hidden;
}
@keyframes bbBgShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
.bling-bar-track {
  display: inline-flex;
  gap: 42px;
  white-space: nowrap;
  animation: bbScroll 38s linear infinite;
  padding-left: 100%;
}
.bling-bar .bling-item {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0a0703;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
@keyframes bbScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Sparkles field ===== */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #FFD700 0%, #FFD700 35%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleTwinkle 3s ease-in-out infinite;
}
.sparkle::before, .sparkle::after {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(90deg, transparent, #FFE680, transparent);
  height: 1px;
  top: 50%;
}
.sparkle::after { transform: rotate(90deg); }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%      { opacity: 1; transform: scale(1.2); }
}

/* ===== Confetti rain on load ===== */
.confetti-rain {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFall 5s ease-in forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ===== Hero badges (flashing) ===== */
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.badge-blink {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
  animation: blinkPulse 1.4s ease-in-out infinite;
}
.badge-red {
  background: rgba(255, 0, 64, 0.18);
  color: #ff6088;
  box-shadow: 0 0 16px rgba(255, 0, 64, 0.55), inset 0 0 12px rgba(255, 0, 64, 0.25);
  animation-delay: 0s;
}
.badge-gold {
  background: rgba(255, 215, 0, 0.18);
  color: #FFD700;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.55), inset 0 0 12px rgba(255, 215, 0, 0.25);
  animation-delay: 0.4s;
}
.badge-green {
  background: rgba(27, 197, 179, 0.18);
  color: #1BC5B3;
  box-shadow: 0 0 16px rgba(27, 197, 179, 0.55), inset 0 0 12px rgba(27, 197, 179, 0.25);
  animation-delay: 0.8s;
}
@keyframes blinkPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.06); filter: brightness(1.35); }
}

/* ===== Glitch logo ===== */
.cb-logo.glitch {
  position: relative;
  animation: logoPulse 3.4s ease-in-out infinite, glitchShake 6s infinite;
}
.cb-logo.glitch::before,
.cb-logo.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #FFE680 0%, #FFD700 35%, #D4AF37 60%, #8C6F1E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}
.cb-logo.glitch::before {
  text-shadow: 2px 0 #FF3DAA;
  animation: glitchA 4.2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.cb-logo.glitch::after {
  text-shadow: -2px 0 #1BC5B3;
  animation: glitchB 3.7s infinite linear alternate-reverse;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
@keyframes glitchA {
  0%, 92%   { transform: translate(0, 0); opacity: 0; }
  93%, 95%  { transform: translate(-2px, 1px); opacity: 0.7; }
  96%, 100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes glitchB {
  0%, 90%   { transform: translate(0, 0); opacity: 0; }
  91%, 94%  { transform: translate(2px, -1px); opacity: 0.7; }
  95%, 100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes glitchShake {
  0%, 97%, 100% { transform: translate(0, 0); }
  98%           { transform: translate(-1px, 1px); }
  99%           { transform: translate(1px, -1px); }
}

.cb-tagline-sub {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0;
}

/* ===== Jackpot starbursts ===== */
.starburst {
  position: absolute;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #FFD700;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
  animation: starSpin 7s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}
.starburst::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 61, 170, 0.85);
  transform: rotate(20deg) scale(1.6);
  font-size: 28px;
}
.starburst-tl { top: -16px; left: -16px; }
.starburst-br { bottom: -16px; right: -16px; animation-direction: reverse; }
@keyframes starSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mark the jackpot-card relative so starbursts can position absolutely */
.landing .jackpot-card { position: relative; }

/* ===== CTA mega ===== */
.landing .cta-primary.mega {
  position: relative;
  animation: ctaPulse 2.2s ease-in-out infinite;
}
.landing .cta-primary.mega::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  background: linear-gradient(90deg, #FFD700, #FF3DAA, #1BC5B3, #FFD700);
  background-size: 300% 100%;
  animation: rainbowBorder 5s linear infinite;
  z-index: -2;
  filter: blur(8px);
  opacity: 0.7;
}
@keyframes ctaPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@keyframes rainbowBorder {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
.cta-flash {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #FF5151 55%, #b30015 100%);
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 18px rgba(255, 0, 64, 0.65);
  animation: flashBounce 1.1s ease-in-out infinite;
}
@keyframes flashBounce {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50%      { transform: rotate(8deg) scale(1.15); }
}

.cta-stack { display: flex; flex-direction: column; align-items: center; gap: 8px; }

/* ===== Hero shoutbox (rainbow shimmer text) ===== */
.hero-shoutbox {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.rainbow-text {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #FFD700, #FF3DAA, #1BC5B3, #FFD700);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbowShift 3.5s linear infinite;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.0);
}
@keyframes rainbowShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

/* ===== Live winners feed ===== */
.landing-winners {
  text-align: center;
  padding: 36px 24px !important;
}
.winners-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #1BC5B3;
  margin-bottom: 14px;
  animation: blinkPulse 1.8s ease-in-out infinite;
}
.winners-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto;
}
.winner-line {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #f1eddf;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.07), rgba(27, 197, 179, 0.07));
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 10px 14px;
  border-radius: 999px;
  text-align: left;
}
.winner-line strong { color: #FFD700; }
.winner-line-new {
  animation: winnerSlide 0.5s ease-out;
}
@keyframes winnerSlide {
  0%   { transform: translateY(-10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.winners-footnote {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ===== Spin-slow helper ===== */
.spin-slow { animation: spinSlow 9s linear infinite; display: inline-block; }
@keyframes spinSlow {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(0deg); } /* pause */
  100% { transform: rotate(360deg); }
}

/* ===== Stats section ===== */
.landing-stats { text-align: center; }
.landing-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.stat-card {
  padding: 22px 18px;
  border-radius: 14px;
  background: var(--landing-card);
  box-shadow: var(--shadow-deep);
  text-align: center;
  border: 2px solid transparent;
  position: relative;
}
.stat-card.stat-bad {
  border-color: rgba(213, 0, 0, 0.55);
  box-shadow: 0 0 22px rgba(213, 0, 0, 0.3), var(--shadow-deep);
}
.stat-card.stat-meh {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.3), var(--shadow-deep);
}
.stat-card.stat-good {
  border-color: rgba(27, 197, 179, 0.6);
  box-shadow: 0 0 22px rgba(27, 197, 179, 0.35), var(--shadow-deep);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-val {
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 0 16px currentColor;
}
.stat-bad  .stat-val { color: #ff6b6b; }
.stat-meh  .stat-val { color: #FFD700; }
.stat-good .stat-val { color: #1BC5B3; }
.stat-trend {
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 6px 0;
}
.stat-bad  .stat-trend { color: #ff6b6b; animation: blinkPulse 1.3s ease-in-out infinite; }
.stat-meh  .stat-trend { color: #FFD700; }
.stat-good .stat-trend { color: #1BC5B3; animation: blinkPulse 1.6s ease-in-out infinite; }
.stat-foot {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}
.trend-flat { color: #FFD700; }

/* ===== Showcase stickers ===== */
.card-sticker {
  position: absolute;
  top: -14px;
  right: -10px;
  background: radial-gradient(circle at 30% 30%, #FFEE7A, #FFD700 55%, #C09000 100%);
  color: #1a1208;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 50%;
  transform: rotate(15deg);
  border: 2px solid #1a1208;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 215, 0, 0.6);
  animation: stickerWobble 2s ease-in-out infinite;
}
.sticker-green {
  background: radial-gradient(circle at 30% 30%, #6bffe1, #1BC5B3 60%, #0F5E5B 100%);
}
.sticker-magenta {
  background: radial-gradient(circle at 30% 30%, #ffaee0, #FF3DAA 55%, #b3007a 100%);
  color: #fff;
  font-size: 11px;
}
@keyframes stickerWobble {
  0%, 100% { transform: rotate(15deg) scale(1); }
  50%      { transform: rotate(-12deg) scale(1.1); }
}
.showcase-foot {
  margin-top: 14px;
  font-size: 11px;
  text-align: center;
  font-style: italic;
}

/* ===== Testimonials ===== */
.landing-testimonials { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.testimonial {
  margin: 0;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 61, 170, 0.06), rgba(212, 175, 55, 0.04)), var(--landing-card);
  border: 1px solid rgba(255, 61, 170, 0.25);
  box-shadow: 0 0 18px rgba(255, 61, 170, 0.18), var(--shadow-deep);
  text-align: left;
  font-size: 14px;
}
.testimonial blockquote {
  margin: 0 0 12px;
  color: #f1eddf;
  font-style: italic;
  line-height: 1.5;
  font-size: 15px;
}
.testimonial blockquote::before {
  content: "„";
  font-family: "Cinzel", Georgia, serif;
  font-size: 36px;
  line-height: 0.3;
  color: #FFD700;
  margin-right: 4px;
  vertical-align: -8px;
}
.testimonial figcaption {
  font-size: 12px;
  color: rgba(255, 215, 0, 0.85);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.testimonials-foot {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  text-align: center;
}

/* ===== VIP strip ===== */
.landing-vip {
  text-align: center;
  padding: 30px 24px !important;
}
.vip-card {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 22px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 215, 0, 0.08), rgba(255, 61, 170, 0.06), rgba(27, 197, 179, 0.08));
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 26px rgba(255, 215, 0, 0.18), var(--shadow-deep);
  max-width: 800px;
  margin: 0 auto;
}
.vip-badge {
  font-size: 44px;
  filter: drop-shadow(0 0 12px rgba(27, 197, 179, 0.7));
  animation: vipFloat 3s ease-in-out infinite;
}
.vip-badge:last-child { animation-delay: 1.5s; }
@keyframes vipFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-6px) rotate(8deg); }
}
.vip-content { flex: 1 1 260px; text-align: left; }
.vip-content h3 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
  margin: 0 0 6px;
}
.vip-content p {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 480px) {
  .vip-content { text-align: center; }
}

/* ===== Features footnote ===== */
.features-foot {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ===== Final footnote ===== */
.final-footnote {
  margin-top: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}
.final-footnote em { font-style: italic; color: #FFD700; }
.final-footnote a { color: #1BC5B3; }

/* ===== Extra coins ===== */
.landing-coins .coin-7  { top: 14%; left: 50%; animation-delay: 1.1s; font-size: 22px; }
.landing-coins .coin-8  { top: 36%; right: 30%; animation-delay: 2.0s; font-size: 26px; }
.landing-coins .coin-9  { top: 56%; right: 24%; animation-delay: 4.4s; font-size: 24px; }
.landing-coins .coin-10 { top: 72%; left: 30%; animation-delay: 3.0s; font-size: 22px; }

/* Make showcase cards relative for sticker positioning */
.landing-showcase .showcase-card { position: relative; }

/* =============================================================================
   LANDING — Casino-Tropes (Modal, Spieler-Online, Slot-Lobby, VIP-Ladder,
   Bonus-Code, Roulette, Zahlungsarten, Floating Chat, Flyby-Toasts).
   ============================================================================ */

/* ===== Auto-Welcome-Modal ===== */
.cb-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: modalIn 0.4s ease-out;
}
.cb-modal[hidden] { display: none; }
.cb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}
.cb-modal-card {
  position: relative;
  max-width: 460px;
  width: 100%;
  padding: 28px 26px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.18), transparent 70%),
    linear-gradient(180deg, #1c1306, #0a0703);
  border: 2px solid #FFD700;
  box-shadow:
    0 0 50px rgba(255, 215, 0, 0.55),
    0 30px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 30px rgba(255, 215, 0, 0.1);
  text-align: center;
  animation: modalPop 0.55s cubic-bezier(.18, .9, .35, 1.4);
}
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cb-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  color: rgba(255, 215, 0, 0.65);
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}
.cb-modal-close:hover {
  color: #fff;
  background: rgba(255, 215, 0, 0.18);
}
.cb-modal-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #FF6088;
  margin-bottom: 6px;
  animation: blinkPulse 1.3s ease-in-out infinite;
}
.cb-modal-card h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 26px;
  margin: 0 0 12px;
  text-shadow: none;
}
.cb-bonus-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 8px;
}
.bonus-num {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 64px;
  background: linear-gradient(180deg, #FFE680, #FFD700 60%, #C09000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  line-height: 1;
}
.bonus-cur {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #FFD700;
}
.bonus-plus {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  background: #FF3DAA;
  color: #fff;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: rotate(-6deg);
  box-shadow: 0 0 16px rgba(255, 61, 170, 0.7);
}
.cb-modal-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}
.cb-modal-sub small { color: rgba(255, 255, 255, 0.45); font-style: italic; }
.cb-timer-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(213, 0, 0, 0.18);
  border: 1px solid rgba(213, 0, 0, 0.45);
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #ff8e8e;
  box-shadow: 0 0 14px rgba(213, 0, 0, 0.35);
  animation: blinkPulse 1.2s ease-in-out infinite;
}
.cb-timer {
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.cb-modal-decline {
  display: block;
  margin: 14px auto 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  letter-spacing: 0.02em;
  font-style: italic;
}
.cb-modal-decline:hover { color: rgba(255, 255, 255, 0.6); }

/* ===== Players-Online-Strip ===== */
.players-online-strip {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  background: #050708;
  color: #d8d8d8;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  border-bottom: 1px solid rgba(27, 197, 179, 0.25);
}
.players-online-strip strong {
  font-family: "Orbitron", sans-serif;
  color: #1BC5B3;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(27, 197, 179, 0.55);
}
.players-online-strip em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00C853;
  box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  animation: dotPulse 1.6s ease-out infinite;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* ===== Hero row layout (jackpot + roulette side by side) ===== */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 auto 28px;
}

/* ===== Bonus-Code-Box ===== */
.bonus-code-box {
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 61, 170, 0.08), rgba(27, 197, 179, 0.06)),
    var(--landing-card);
  border: 1px dashed rgba(255, 215, 0, 0.5);
  max-width: 460px;
  text-align: center;
  box-shadow: var(--glow-gold-soft);
}
.bcb-label {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #FF3DAA;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bcb-code {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.55);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.4);
}
.bcb-code code {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #FFD700;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.08);
  border-right: 1px solid rgba(255, 215, 0, 0.4);
}
.bcb-copy {
  background: linear-gradient(180deg, #FFE680, #D4AF37);
  color: #1a1208;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border: 0;
  cursor: pointer;
  transition: filter 0.2s;
}
.bcb-copy:hover { filter: brightness(1.15); }
.bcb-copy.copied {
  background: linear-gradient(180deg, #6bffe1, #1BC5B3);
  color: #062926;
}
.bcb-foot {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ===== Roulette-Rad ===== */
.roulette-wheel {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.rw-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    #FFD700 0deg 22.5deg, #1a1208 22.5deg 45deg,
    #b3001a 45deg 67.5deg, #1a1208 67.5deg 90deg,
    #FFD700 90deg 112.5deg, #1a1208 112.5deg 135deg,
    #b3001a 135deg 157.5deg, #1a1208 157.5deg 180deg,
    #FFD700 180deg 202.5deg, #1a1208 202.5deg 225deg,
    #b3001a 225deg 247.5deg, #1a1208 247.5deg 270deg,
    #FFD700 270deg 292.5deg, #1a1208 292.5deg 315deg,
    #b3001a 315deg 337.5deg, #1a1208 337.5deg 360deg
  );
  box-shadow:
    inset 0 0 25px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 60px rgba(255, 61, 170, 0.25);
  animation: rouletteSpin 12s linear infinite;
}
@keyframes rouletteSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.rw-frame {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 4px solid #D4AF37;
  box-shadow:
    inset 0 0 12px rgba(0, 0, 0, 0.65),
    0 0 22px rgba(255, 215, 0, 0.5);
  pointer-events: none;
}
.rw-ball {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #b9b9b9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
  animation: ballOrbit 12s linear infinite reverse;
  transform-origin: 6px 92px;
}
@keyframes ballOrbit {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.rw-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 38px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
  z-index: 2;
}

/* ===== Slot-Games-Lobby ===== */
.landing-games { text-align: center; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.game-tile {
  position: relative;
  padding: 18px 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: linear-gradient(160deg, rgba(255, 61, 170, 0.08), rgba(27, 197, 179, 0.06)), var(--landing-card);
  box-shadow: var(--shadow-deep);
  text-align: center;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.game-tile::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(90deg, #FFD700, #FF3DAA, #1BC5B3, #FFD700);
  background-size: 300% 100%;
  z-index: -1;
  filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rainbowBorder 5s linear infinite;
}
.game-tile:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.4), var(--shadow-deep);
}
.game-tile:hover::before { opacity: 0.7; }
.game-tile.hot {
  border-color: rgba(255, 61, 170, 0.55);
  box-shadow: 0 0 18px rgba(255, 61, 170, 0.3), var(--shadow-deep);
}
.game-sticker {
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 999px;
  transform: rotate(8deg);
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.sticker-hot {
  background: linear-gradient(180deg, #ff8b3a, #d50000);
  color: #fff;
  animation: stickerWobble 2s ease-in-out infinite;
  box-shadow: 0 0 14px rgba(213, 0, 0, 0.6);
}
.sticker-new {
  background: linear-gradient(180deg, #6bffe1, #1BC5B3);
  color: #062926;
  animation: stickerWobble 2s ease-in-out infinite 0.5s;
  box-shadow: 0 0 14px rgba(27, 197, 179, 0.6);
}
.sticker-fire {
  background: linear-gradient(180deg, #FFE680, #FFD700);
  color: #1a1208;
  animation: stickerWobble 2s ease-in-out infinite 1s;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.6);
}
.game-reels {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  padding: 10px 6px;
  border-radius: 8px;
  background: #050708;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.7);
}
.game-reels span {
  width: 36px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(180deg, #1a1408, #0a0703);
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}
@keyframes reelFlip {
  0%   { transform: rotateX(0deg) scale(1); }
  50%  { transform: rotateX(90deg) scale(0.85); }
  100% { transform: rotateX(0deg) scale(1); }
}
.game-name {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  line-height: 1.2;
  min-height: 2.4em;
}
.game-sub {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.games-foot {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.games-foot strong { color: rgba(255, 215, 0, 0.85); font-style: normal; }

/* ===== VIP-Ladder ===== */
.landing-ladder { text-align: center; }
.ladder-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.tier {
  position: relative;
  padding: 18px 12px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent), var(--landing-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-deep);
  text-align: center;
  overflow: hidden;
}
.tier-bronze   { --tier-color: #C77B45; }
.tier-silver   { --tier-color: #C0C0C0; }
.tier-gold     { --tier-color: #FFD700; }
.tier-platinum { --tier-color: #E5E4E2; }
.tier-diamond  { --tier-color: #B9F2FF; }
.tier { border-color: color-mix(in srgb, var(--tier-color) 40%, transparent); }
.tier.highlight {
  box-shadow: 0 0 22px rgba(185, 242, 255, 0.45), var(--shadow-deep);
  transform: translateY(-4px);
}
.tier-icon {
  font-size: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 8px var(--tier-color));
}
.tier-name {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--tier-color);
  margin-bottom: 4px;
}
.tier-perks {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}
.tier-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 8px;
}
.tier-progress .pf {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--tier-color), color-mix(in srgb, var(--tier-color) 30%, white));
  animation: pfShimmer 2.5s linear infinite;
  background-size: 200% 100%;
}
@keyframes pfShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.tier-status {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--tier-color);
  text-transform: uppercase;
}
.ladder-foot {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.ladder-foot strong { color: #FFD700; }

/* ===== Zahlungsarten-Persiflage ===== */
.landing-payments { text-align: center; }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.pay-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 10px;
  background: var(--landing-card);
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: var(--shadow-deep);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pay-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.5);
}
.pay-icon { font-size: 30px; filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4)); }
.pay-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-align: center;
}
.pay-tile.pay-no {
  opacity: 0.4;
  text-decoration: line-through;
  border-color: rgba(213, 0, 0, 0.4);
}
.pay-tile.pay-no .pay-icon { filter: drop-shadow(0 0 6px rgba(213, 0, 0, 0.5)); }
.payments-foot {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}
.payments-foot strong { color: #FFD700; font-style: normal; }

/* ===== Magenta Hero-Badge ===== */
.badge-magenta {
  background: rgba(255, 61, 170, 0.18);
  color: #FF7AC8;
  box-shadow: 0 0 16px rgba(255, 61, 170, 0.55), inset 0 0 12px rgba(255, 61, 170, 0.25);
  animation-delay: 1.2s !important;
}

/* ===== Floating Chat-Widget ===== */
.chat-widget {
  position: fixed;
  bottom: calc(var(--nav-h) + var(--footer-h) + 18px + env(safe-area-inset-bottom));
  right: 18px;
  z-index: 800;
}
body:not(.has-nav) .chat-widget {
  bottom: calc(var(--footer-h) + 18px + env(safe-area-inset-bottom));
}
.chat-bubble {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.7);
  background: linear-gradient(180deg, #FFE680, #D4AF37);
  color: #1a1208;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.55);
  animation: chatBounce 2.4s ease-in-out infinite;
  display: grid;
  place-items: center;
}
@keyframes chatBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.chat-bubble-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF0040;
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(255, 0, 64, 0.9);
  animation: blinkPulse 1.1s ease-in-out infinite;
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 280px;
  background: #121212;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 26px rgba(255, 215, 0, 0.25), 0 18px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  animation: chatPanelIn 0.25s ease-out;
}
@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-panel[hidden] { display: none; }
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(180deg, #2a1f08, #1a1208);
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #FFD700;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}
.chat-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
}
.chat-close:hover { color: #fff; }
.chat-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  max-height: 280px;
  overflow-y: auto;
}
.chat-msg {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 90%;
}
.chat-msg.bot {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #f1eddf;
  align-self: flex-start;
}
.chat-msg.bot a { color: #1BC5B3; }
.chat-msg.system {
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  align-self: center;
  background: transparent;
  padding: 4px 0;
}

/* ===== Flyby-Toasts (bottom-left) ===== */
.flyby-container {
  position: fixed;
  bottom: calc(var(--nav-h) + var(--footer-h) + 18px + env(safe-area-inset-bottom));
  left: 18px;
  z-index: 700;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
body:not(.has-nav) .flyby-container {
  bottom: calc(var(--footer-h) + 18px + env(safe-area-inset-bottom));
}
.flyby-toast {
  min-width: 240px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2a1f08, #1a1208);
  border: 2px solid #FFD700;
  box-shadow: 0 0 26px rgba(255, 215, 0, 0.45), 0 10px 24px rgba(0, 0, 0, 0.7);
  animation: flyIn 0.55s cubic-bezier(.18, .9, .35, 1.4);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.flyby-toast.leaving {
  transform: translateX(-120%);
  opacity: 0;
}
@keyframes flyIn {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.ft-eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #FF6088;
  margin-bottom: 4px;
  animation: blinkPulse 1.2s ease-in-out infinite;
}
.ft-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.ft-amount {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
  letter-spacing: 0.02em;
  margin: 2px 0;
}
.ft-foot {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ===== Reduced motion fallback (combined for old + new) ===== */
@media (prefers-reduced-motion: reduce) {
  .landing *,
  .landing *::before,
  .landing *::after,
  .cb-modal *,
  .chat-widget *,
  .flyby-container * {
    animation: none !important;
    transition: none !important;
  }
  .disco-spotlight, .scanlines, .confetti-rain, .sparkles { display: none; }
  .flyby-container { display: none; }
}
