/* =============================================
   ZOCCER — Core Stylesheet
   Midnight Teal + Copper edition (ca-zoccercasino.ca)
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* =============================================
   RESET & DESIGN TOKENS
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Accent palette — deep teal primary, warm copper secondary */
  --brand-teal: #0FB5A6;
  --brand-copper: #C9772F;
  --brand-amber: #E0A93B;
  --brand-flow: linear-gradient(135deg, #0FB5A6 0%, #12A3B8 45%, #1E7F9E 100%);
  --brand-glow: #35D0E0;
  --brand-mint: #23C9A0;
  --brand-plum: #6C5CE0;

  /* Surfaces — soft cool paper against deep marine ink */
  --bg-page: #EEF3F4;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F3F7F8;
  --bg-input: #E7EEEF;
  --bg-dark: #0B1E24;
  --bg-dark-alt: #102A32;

  /* Type */
  --text-primary: #0C2029;
  --text-secondary: #3E545C;
  --text-muted: #7C939B;

  /* Lines */
  --border: #D2DEE0;
  --border-light: #E4ECED;

  /* Ink button */
  --ink-btn: #0B1E24;

  /* Shape & depth — softer, rounder, warmer shadows than the source */
  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 26px;
  --shadow-1: 0 6px 20px rgba(11, 30, 36, 0.08);
  --shadow-2: 0 14px 40px rgba(11, 30, 36, 0.14);
  --shadow-glow: 0 10px 30px rgba(15, 181, 166, 0.28);
}

/* =============================================
   BASE STYLES
   ============================================= */
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background:
    radial-gradient(900px 500px at 100% -5%, rgba(15, 181, 166, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-page) 0%, #E9F1F0 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4,
.banner-head, .intro-head, .flow-name, .block-name,
.vault-hero-head, .reward-lead-head, .close-head,
.elite-head, .app-head, .story-head, .pot-name {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* =============================================
   HEADER
   ============================================= */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
}

.topbar-lead {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger-key {
  width: 38px;
  height: 38px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.burger-key:hover {
  border-color: var(--brand-glow);
  background: rgba(0, 212, 255, 0.08);
}

.burger-key svg {
  width: 16px;
  height: 16px;
  color: var(--text-primary);
}

/* Logo */
.mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mark-glyph {
  width: 36px;
  height: 36px;
  background: var(--brand-flow);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  box-shadow: 0 4px 14px rgba(228, 0, 43, 0.35);
}

.mark-glyph svg {
  transform: none;
}

.mark-word {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  }

.mark-word .hl {
  background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header Search */
.topbar-find {
  flex: 1;
  max-width: 320px;
  margin: 0 32px;
}

.find-shell {
  position: relative;
}

.topbar-find input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}

.topbar-find input:focus {
  border-color: var(--brand-glow);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.topbar-find input::placeholder {
  color: var(--text-muted);
}

.find-shell svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}

/* Header Actions */
.topbar-acts {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.pill {
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-ink {
  background: var(--ink-btn);
  color: #FFFFFF;
}

.pill-ink:hover {
  background: #2a2a36;
}

.pill-glow {
  background: var(--brand-flow);
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(228, 0, 43, 0.3);
}

.pill-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(228, 0, 43, 0.4);
}

/* =============================================
   SECTION (CRUMB) NAV
   ============================================= */
.crumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.crumb-nav::-webkit-scrollbar { display: none; }

.crumb-link {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.15s;
}

.crumb-link:hover {
  background: var(--bg-input);
  color: var(--text-primary);
}

.crumb-link.on {
  background: var(--brand-flow);
  color: #fff;
}

/* =============================================
   LAYOUT
   ============================================= */
body {
  padding-top: 60px;
}

.frame {
  display: flex;
}

/* =============================================
   SIDEBAR
   ============================================= */
.rail {
  width: 240px;
  background: var(--bg-card);
  min-height: calc(100vh - 60px);
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}

.rail-list {
  padding: 10px 0;
}

/* Promo Badge */
.deal-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 6px 12px 14px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.08) 0%, rgba(199, 36, 177, 0.05) 100%);
  border-radius: 26px;
  border: 1px solid rgba(228, 0, 43, 0.15);
}

.deal-tag .spot {
  width: 36px;
  height: 36px;
  background: var(--brand-flow);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
}

.deal-tag .spot svg {
  transform: none;
}

.deal-tag .lede {
  font-size: 12px;
  font-weight: 800;
    background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deal-tag .lede-sub {
  font-size: 9px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Menu Items */
.rail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.15s;
  cursor: pointer;
  position: relative;
}

.rail-row:hover {
  background: var(--bg-input);
}

.rail-row.on {
  background: linear-gradient(90deg, rgba(228, 0, 43, 0.1) 0%, transparent 100%);
  color: var(--brand-teal);
  font-weight: 600;
}

.rail-row.on::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-flow);
}

.rail-row svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.rail-row.on svg {
  color: var(--brand-teal);
}

.rail-split {
  height: 1px;
  background: var(--border);
  margin: 10px 14px;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.stage {
  margin-left: 240px;
  flex: 1;
  min-height: calc(100vh - 60px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.banner {
  background: var(--bg-dark);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

/* Hero Geometric Elements */
.banner-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.banner-mesh .streak {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  height: 1px;
}

.banner-mesh .streak:nth-child(1) { top: 20%; left: 0; width: 40%; }
.banner-mesh .streak:nth-child(2) { top: 50%; left: 10%; width: 30%; }
.banner-mesh .streak:nth-child(3) { top: 75%; left: 5%; width: 25%; }

.banner-mesh .ring {
  position: absolute;
  border: 1px solid rgba(228, 0, 43, 0.25);
  border-radius: 50%;
}

.banner-mesh .ring:nth-child(4) { width: 300px; height: 300px; top: -100px; right: 20%; }
.banner-mesh .ring:nth-child(5) { width: 150px; height: 150px; bottom: -50px; right: 40%; border-color: rgba(0, 212, 255, 0.2); }

/* Hero Image */
.banner-art {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 200px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.banner-art span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
}

/* Hero Lights */
.banner-glints {
  position: absolute;
  top: 16px;
  right: 80px;
  display: flex;
  gap: 40px;
  z-index: 3;
}

.glint {
  width: 5px;
  height: 5px;
  background: #ff4466;
  border-radius: 50%;
  box-shadow: 0 0 10px 4px rgba(255, 68, 102, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}

.glint:nth-child(2) { animation-delay: 0.4s; }
.glint:nth-child(3) { animation-delay: 0.8s; }

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Hero Toggle */
.banner-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-switch button {
  padding: 7px 20px;
  border: none;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}

.banner-switch button.on {
  background: #FFFFFF;
  color: var(--text-primary);
}

/* Hero Content */
.banner-body {
  position: relative;
  z-index: 4;
}

.banner-kicker {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  font-weight: 500;
}

.banner-head {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 22px;
  line-height: 1;
  color: #FFFFFF;
  }

.banner-head span {
  background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero CTA Button */
.cta-hug {
  position: relative;
  display: inline-block;
}

.cta-halo {
  position: absolute;
  top: -8px;
  left: -12px;
  right: -12px;
  bottom: -8px;
  border: 2px solid var(--brand-glow);
  border-radius: 999px;
  opacity: 0.5;
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 0.7; }
}

.cta-key {
  padding: 14px 42px;
  font-size: 13px;
  font-weight: 800;
    border-radius: 999px;
  background: var(--brand-flow);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(228, 0, 43, 0.4);
  display: inline-block;
}

.cta-key:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(228, 0, 43, 0.5);
}

/* =============================================
   SEO HERO INTRO SECTION
   ============================================= */
.intro-wrap {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
}

.intro-body {
  max-width: 900px;
}

.intro-head {
  font-size: 26px;
  font-weight: 900;
    color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.intro-copy {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-copy strong {
  color: var(--text-primary);
  font-weight: 600;
}

.intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.2s;
}

.intro-chip:hover {
  border-color: var(--brand-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 0, 43, 0.1);
}

.intro-chip-mark {
  font-size: 18px;
}

.intro-chip-word {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

/* =============================================
   MAIN AREA GRID
   ============================================= */
.grid-zone {
  display: grid;
  grid-template-columns: 220px minmax(400px, 1fr) 280px;
  gap: 16px;
  padding: 16px;
  align-items: start;
}

/* =============================================
   CARDS
   ============================================= */
.panel {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

/* =============================================
   LEFT COLUMN
   ============================================= */
.flank-l {
  position: sticky;
  top: 76px;
}

.find-box {
  padding: 12px;
  position: relative;
}

.find-box input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-size: 12px;
  color: var(--text-primary);
  outline: none;
}

.find-box input:focus {
  border-color: var(--brand-glow);
}

.find-box svg {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* Upcoming Header */
.soon-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}

.soon-head svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

.soon-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Time Filters */
.span-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
}

.span-tab {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}

.span-tab:hover {
  background: var(--bg-input);
}

.span-tab.on {
  background: var(--brand-teal);
  color: #fff;
}

/* League Items */
.comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s;
  border-bottom: 1px solid var(--border-light);
}

.comp-row:hover {
  background: var(--bg-input);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-lead {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comp-mark {
  width: 24px;
  height: 24px;
  background: var(--bg-input);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.comp-word {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.comp-row > svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* =============================================
   CENTER COLUMN
   ============================================= */
.flank-c {
  min-width: 0;
}

/* Tabs Navigation */
.switch-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-light);
}

.switch-tab {
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.switch-tab:hover {
  color: var(--text-primary);
}

.switch-tab.on {
  color: var(--brand-teal);
  border-bottom-color: var(--brand-teal);
}

.switch-flag {
  padding: 2px 6px;
  background: var(--brand-teal);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
}

/* Sports Row */
.disc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.disc-row::-webkit-scrollbar {
  display: none;
}

.disc-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 64px;
}

.disc-chip:hover {
  background: var(--bg-input);
}

.disc-chip.on {
  background: rgba(228, 0, 43, 0.1);
}

.disc-chip svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
}

.disc-chip.on svg {
  color: var(--brand-teal);
}

.disc-chip span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.disc-chip.on span {
  color: var(--brand-teal);
}

/* =============================================
   FEATURED SECTION
   ============================================= */
.pick-block {
  padding: 16px;
}

.block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.block-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.block-name svg {
  width: 18px;
  height: 18px;
  color: var(--brand-teal);
}

.view-more {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-glow);
  cursor: pointer;
}

.view-more:hover {
  text-decoration: underline;
}

/* League Cards */
.comp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.comp-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: 26px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.comp-card:hover {
  border-color: var(--brand-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.1);
}

.comp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-flow);
  opacity: 0;
  transition: opacity 0.2s;
}

.comp-card:hover::before {
  opacity: 1;
}

.comp-card-mark {
  width: 40px;
  height: 40px;
  background: var(--bg-input);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.comp-card-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.comp-card-tally {
  font-size: 10px;
  color: var(--text-secondary);
}

.comp-card-live {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: var(--brand-teal);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* =============================================
   LIVE SECTION
   ============================================= */
.hot-block {
  padding: 16px;
  border-top: 1px solid var(--border-light);
}

.hot-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-teal);
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
}

/* Live Grid */
.hot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  transition: all 0.2s;
}

.hot-card:hover {
  border-color: var(--brand-teal);
  box-shadow: 0 4px 16px rgba(228, 0, 43, 0.1);
}

.hot-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hot-flag {
  padding: 3px 8px;
  background: var(--brand-teal);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  animation: live-pulse 1.5s ease-in-out infinite;
}

.hot-clock {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

.hot-sides {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.hot-side {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.side-mark {
  font-size: 14px;
}

.hot-score {
  font-size: 18px;
  font-weight: 900;
  color: var(--brand-teal);
  text-align: center;
  padding: 6px 0;
  }

.hot-card-foot {
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.hot-mkt {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.hot-lines {
  display: flex;
  gap: 6px;
}

.hot-line {
  flex: 1;
  padding: 8px 6px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 26px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.hot-line:hover {
  border-color: var(--brand-glow);
  background: rgba(0, 212, 255, 0.08);
}

/* =============================================
   RIGHT COLUMN - BETSLIP
   ============================================= */
.flank-r {
  position: sticky;
  top: 76px;
}

.code-field {
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
}

.code-field input {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 26px;
  font-size: 11px;
  color: var(--text-primary);
  outline: none;
}

.slip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
}

.slip-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.slip-name span {
  color: var(--brand-teal);
}

.slip-void {
  padding: 40px 20px;
  text-align: center;
}

.slip-void svg {
  width: 48px;
  height: 48px;
  color: var(--border);
  margin-bottom: 12px;
}

.slip-void p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.slip-deal {
  margin: 12px;
  padding: 14px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border-radius: 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.slip-deal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-flow);
}

.slip-deal-name {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  }

.slip-deal-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.slip-deal-key {
  padding: 8px 16px;
  background: var(--brand-flow);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.flow {
  padding: 0 16px 16px;
  margin-left: 240px;
}

.flow-block {
  margin-bottom: 24px;
}

.flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.flow-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  }

.flow-name svg {
  width: 20px;
  height: 20px;
  color: var(--brand-teal);
}

/* =============================================
   PROMO GRID
   ============================================= */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  transition: all 0.2s;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.deal-card-lead {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border: none;
}

.deal-card-lead .deal-card-name,
.deal-card-lead .deal-card-figure {
  color: #fff;
}

.deal-card-lead .deal-card-copy {
  color: rgba(255, 255, 255, 0.6);
}

.deal-card-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  background: var(--brand-glow);
  color: var(--bg-dark);
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
}

.deal-card-mark {
  font-size: 28px;
  margin-bottom: 12px;
}

.deal-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.deal-card-figure {
  font-size: 18px;
  font-weight: 900;
    background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.deal-card-lead .deal-card-figure {
  -webkit-text-fill-color: #fff;
}

.deal-card-copy {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.deal-card-key {
  width: 100%;
  padding: 10px;
  background: var(--brand-flow);
  border: none;
  border-radius: 26px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  text-align: center;
}

.deal-card-key:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(228, 0, 43, 0.3);
}

.deal-card-key-ghost {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 26px;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  text-align: center;
}

.deal-card-key-ghost:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}

/* =============================================
   STEPS GRID
   ============================================= */
.path-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px 24px;
}

.path-node {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.path-num {
  width: 28px;
  height: 28px;
  background: var(--brand-flow);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.path-mark {
  width: 56px;
  height: 56px;
  background: var(--bg-input);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.path-mark svg {
  width: 26px;
  height: 26px;
  color: var(--brand-teal);
}

.path-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.path-copy {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.path-link {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-amber));
  margin-top: 42px;
  flex-shrink: 0;
}

/* =============================================
   STATS SECTION
   ============================================= */
.tally-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
  border-radius: 26px;
  padding: 32px;
  margin-bottom: 24px;
}

.tally-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.tally-cell {
  text-align: center;
}

.tally-figure {
  font-size: 32px;
  font-weight: 900;
    background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.tally-word {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.tally-split {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   WHY CHOOSE SECTION
   ============================================= */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.edge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  transition: all 0.2s;
}

.edge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.edge-mark {
  font-size: 32px;
  margin-bottom: 14px;
}

.edge-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.edge-copy {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   CONTENT DIVIDER
   ============================================= */
.flow-split {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  position: relative;
}

.flow-split::before,
.flow-split::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.flow-split span {
  padding: 8px 24px;
  background: var(--brand-flow);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
    border-radius: 999px;
  text-transform: uppercase;
}

/* =============================================
   CASINO HERO
   ============================================= */
.vault-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.vault-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(199, 36, 177, 0.2) 0%, transparent 50%);
}

.vault-hero-body {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.vault-hero-flag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vault-hero-head {
  font-size: 36px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 12px;
}

.vault-hero-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vault-hero-keys {
  display: flex;
  gap: 12px;
}

.pill-ghost {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vault-hero-art {
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.2) 0%, rgba(110, 58, 255, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vault-hero-art span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
}

/* =============================================
   CASINO STATS
   ============================================= */
.vault-tally {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.vault-tally-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.vault-tally-figure {
  font-size: 28px;
  font-weight: 900;
    background: linear-gradient(135deg, var(--brand-copper), var(--brand-plum));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.vault-tally-word {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* =============================================
   GAMES GRID
   ============================================= */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s;
}

.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.slot-card:hover .slot-card-veil {
  opacity: 1;
}

.slot-card-art {
  height: 100px;
  background: linear-gradient(135deg, var(--bg-input) 0%, var(--bg-page) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.slot-card-flag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
}

.slot-card-flag.blaze {
  background: var(--brand-teal);
}

.slot-card-flag.fresh {
  background: var(--brand-glow);
  color: var(--bg-dark);
}

.slot-card-veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.slot-card-key {
  padding: 10px 20px;
  background: var(--brand-flow);
  border: none;
  border-radius: 26px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.slot-card-meta {
  padding: 12px;
}

.slot-card-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card-maker {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
   JACKPOT SECTION
   ============================================= */
.pot-band {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 26px;
  padding: 24px;
  margin-bottom: 24px;
}

.pot-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pot-mark {
  font-size: 36px;
}

.pot-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  }

.pot-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.pot-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pot-cell {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 16px;
  text-align: center;
}

.pot-cell.blaze {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-color: rgba(228, 0, 43, 0.3);
}

.pot-flag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--brand-teal);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}

.pot-game {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.pot-figure {
  font-size: 20px;
  font-weight: 900;
  color: #ffd700;
    margin-bottom: 4px;
}

.pot-maker {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   LIVE CASINO SECTION
   ============================================= */
.deal-live-band {
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.deal-live-body {
  max-width: 500px;
}

.deal-live-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(228, 0, 43, 0.2);
  border: 1px solid rgba(228, 0, 43, 0.3);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 12px;
}

.deal-live-head {
  font-size: 28px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 12px;
}

.deal-live-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.deal-live-art {
  width: 200px;
  height: 140px;
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-live-art span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
}

.deal-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.deal-live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}

.deal-live-card:hover {
  border-color: var(--brand-glow);
}

.deal-live-card.lead {
  background: linear-gradient(135deg, rgba(228, 0, 43, 0.05) 0%, rgba(199, 36, 177, 0.05) 100%);
  border-color: rgba(228, 0, 43, 0.2);
}

.deal-live-card-mark {
  font-size: 32px;
  margin-bottom: 12px;
}

.deal-live-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.deal-live-card-tables {
  font-size: 11px;
  color: var(--brand-teal);
  font-weight: 600;
  margin-bottom: 4px;
}

.deal-live-card-caps {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
   CASINO DEEP DIVE
   ============================================= */
.cz-vaultintro-intro {
  display: flex;
  gap: 32px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 26px;
  padding: 32px;
  margin-bottom: 20px;
}

.cz-vaultintro-content {
  flex: 1;
}

.cz-vaultintro-title {
  font-size: 24px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 16px;
}

.cz-vaultintro-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}

.cz-vaultintro-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cz-vaultintro-stat {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 16px 24px;
  text-align: center;
}

.cz-vval {
  display: block;
  font-size: 24px;
  font-weight: 900;
    background: linear-gradient(135deg, var(--brand-copper), var(--brand-plum));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cz-vlabel {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.cz-vaultset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cz-vaultcard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition: all 0.2s;
}

.cz-vaultcard-card:hover {
  border-color: var(--brand-copper);
}

.cz-vaultcard-card.large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cz-vaultcard-card.large .cz-vaultcard-header {
  grid-column: span 2;
}

.cz-vaultcard-card.large .cz-vaultcard-features {
  grid-column: span 2;
}

.cz-vaultcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cz-vaultcard-icon {
  font-size: 32px;
}

.cz-vaultcard-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.cz-vaultcard-count {
  font-size: 11px;
  color: var(--brand-copper);
  font-weight: 600;
}

.cz-vaultcard-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.cz-vaultcard-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.cz-vaultcard-features span {
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(199, 36, 177, 0.1) 0%, rgba(110, 58, 255, 0.1) 100%);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--brand-copper);
}

/* =============================================
   BONUSES GUIDE
   ============================================= */
.reward-lead {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.reward-lead::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(228, 0, 43, 0.15) 0%, transparent 60%);
}

.reward-lead-flag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--brand-glow);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  border-radius: 6px;
}

.reward-lead-body {
  flex: 1;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.reward-lead-head {
  font-size: 28px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 16px;
}

.reward-lead-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.reward-lead-terms {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.reward-term {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px 16px;
  text-align: center;
}

.reward-term-word {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.reward-term-figure {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.reward-lead-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.reward-figure {
  font-size: 56px;
  font-weight: 900;
    background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reward-plus {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0;
}

.reward-spins {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-glow);
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.reward-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.2s;
}

.reward-card:hover {
  border-color: var(--brand-teal);
  transform: translateY(-2px);
}

.reward-card-mark {
  font-size: 32px;
  margin-bottom: 12px;
}

.reward-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.reward-card-figure {
  font-size: 18px;
  font-weight: 900;
    background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.reward-card-copy {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.reward-card-code {
  padding: 8px 12px;
  background: var(--bg-input);
  border-radius: 26px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.reward-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: 26px;
  padding: 16px 20px;
}

.reward-note svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.reward-note p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   VIP SECTION
   ============================================= */
.elite-band {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%);
  border-radius: 26px;
  padding: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.elite-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.elite-top {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.elite-flag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 12px;
}

.elite-head {
  font-size: 32px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 8px;
}

.elite-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.elite-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.elite-tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}

.elite-tier:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.elite-tier.lead {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.elite-tier-mark {
  font-size: 36px;
  margin-bottom: 12px;
}

.elite-tier-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.elite-tier-perk {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.trait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trait-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
}

.trait-card:hover {
  border-color: var(--brand-glow);
}

.trait-mark {
  font-size: 28px;
  flex-shrink: 0;
}

.trait-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.trait-copy {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   WINNERS GRID
   ============================================= */
.champ-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.champ-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.champ-face {
  width: 40px;
  height: 40px;
  background: var(--brand-flow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.champ-meta {
  flex: 1;
}

.champ-game {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.champ-figure {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-teal);
}

.champ-when {
  font-size: 9px;
  color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.voice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.voice-stars {
  color: #ffd700;
  font-size: 14px;
  margin-bottom: 12px;
}

.voice-copy {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  }

.voice-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-face {
  width: 36px;
  height: 36px;
  background: var(--bg-input);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.voice-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.voice-place {
  font-size: 10px;
  color: var(--text-muted);
}

/* =============================================
   BLOG GRID
   ============================================= */
.post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.2s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.post-card.lead {
  grid-column: span 2;
  display: flex;
}

.post-art {
  height: 120px;
  background: linear-gradient(135deg, var(--bg-input) 0%, var(--bg-page) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.post-card.lead .post-art {
  width: 200px;
  height: auto;
  min-height: 160px;
  flex-shrink: 0;
}

.post-body {
  padding: 16px;
}

.post-flag {
  display: inline-block;
  padding: 3px 8px;
  background: var(--brand-teal);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}

.post-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.post-copy {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.post-meta {
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

/* =============================================
   SPORTS OVERVIEW
   ============================================= */
.disc-view-intro {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 26px;
  padding: 32px;
  margin-bottom: 20px;
}

.disc-view-head {
  font-size: 24px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 16px;
}

.disc-view-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}

.disc-view-copy:last-child {
  margin-bottom: 0;
}

.disc-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.disc-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition: all 0.2s;
}

.disc-cat-card:hover {
  border-color: var(--brand-glow);
  transform: translateY(-2px);
}

.disc-cat-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.disc-cat-mark {
  font-size: 32px;
}

.disc-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.disc-cat-count {
  font-size: 11px;
  color: var(--brand-teal);
  font-weight: 600;
}

.disc-cat-copy {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.disc-cat-comps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.disc-cat-comps span {
  padding: 4px 10px;
  background: var(--bg-input);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
}

.disc-more {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: 26px;
  padding: 20px;
  text-align: center;
}

.disc-more-copy {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.disc-more-copy strong {
  color: var(--text-primary);
}

/* =============================================
   PROVINCES SECTION
   ============================================= */
.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
}

.region-copy {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.region-copy strong {
  color: var(--text-primary);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.region-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  background: var(--bg-input);
  border-radius: 26px;
  transition: all 0.15s;
}

.region-cell:hover {
  background: rgba(228, 0, 43, 0.05);
}

.region-mark {
  font-size: 24px;
}

.region-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.region-age {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-teal);
}

/* =============================================
   MOBILE APP SECTION
   ============================================= */
.app-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.app-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 0% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.app-body {
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.app-flag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-glow);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 16px;
}

.app-head {
  font-size: 32px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 12px;
}

.app-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.app-traits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.app-trait {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.app-trait svg {
  width: 18px;
  height: 18px;
  color: var(--brand-mint);
}

.app-keys {
  display: flex;
  gap: 12px;
}

.app-key {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: none;
  border-radius: 18px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.app-key:hover {
  transform: translateY(-2px);
}

.app-key svg {
  width: 20px;
  height: 20px;
}

.app-art {
  width: 200px;
  height: 280px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(228, 0, 43, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.app-art span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
}

/* =============================================
   PROVIDERS GRID
   ============================================= */
.maker-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.maker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.15s;
}

.maker-card:hover {
  border-color: var(--brand-glow);
}

.maker-card.extra {
  background: var(--brand-flow);
  border: none;
}

.maker-card.extra .maker-mark,
.maker-card.extra .maker-tally {
  color: #fff;
}

.maker-mark {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.maker-tally {
  font-size: 9px;
  color: var(--text-muted);
}

/* =============================================
   SECURITY SECTION
   ============================================= */
.safe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.safe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: all 0.15s;
}

.safe-card:hover {
  border-color: var(--brand-mint);
}

.safe-mark {
  font-size: 28px;
  margin-bottom: 12px;
}

.safe-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.safe-copy {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.seal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.seal-mark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
}

.seal-mark span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.seal-mark small {
  font-size: 9px;
  color: var(--text-muted);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.story-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.story-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(228, 0, 43, 0.1) 0%, transparent 70%);
}

.story-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.story-head {
  font-size: 28px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 16px;
}

.story-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.story-figures {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.story-figure {
  text-align: center;
}

.story-figure-num {
  font-size: 24px;
  font-weight: 900;
    background: var(--brand-flow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-figure-word {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.story-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.story-art .mark-glyph {
  width: 80px;
  height: 80px;
  background: var(--brand-flow);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  box-shadow: 0 8px 32px rgba(228, 0, 43, 0.4);
}

.story-art .mark-glyph svg {
  transform: none;
}

.story-slogan {
  font-size: 14px;
  font-weight: 800;
    color: #fff;
  letter-spacing: 1px;
}

/* =============================================
   SUPPORT SECTION
   ============================================= */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.help-mark {
  font-size: 28px;
  margin-bottom: 12px;
}

.help-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.help-copy {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.help-key {
  padding: 8px 16px;
  background: var(--brand-flow);
  border: none;
  border-radius: 26px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.help-key-ghost {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 26px;
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

/* =============================================
   RESPONSIBLE GAMING
   ============================================= */
.aware-band {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: 26px;
  padding: 24px;
  margin-bottom: 24px;
}

.aware-mark {
  width: 56px;
  height: 56px;
  background: var(--brand-mint);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aware-mark svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.aware-body {
  flex: 1;
}

.aware-head {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.aware-copy {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.aware-links {
  display: flex;
  gap: 16px;
}

.aware-links a {
  font-size: 11px;
  color: var(--brand-mint);
  text-decoration: none;
  font-weight: 600;
}

.aware-links a:hover {
  text-decoration: underline;
}

.age-seal {
  width: 48px;
  height: 48px;
  background: var(--brand-teal);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   PAYMENTS GRID
   ============================================= */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 16px;
  text-align: center;
  transition: all 0.15s;
}

.pay-card:hover {
  border-color: var(--brand-glow);
}

.pay-mark {
  font-size: 24px;
  margin-bottom: 8px;
}

.pay-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pay-when {
  font-size: 10px;
  color: var(--brand-mint);
  font-weight: 600;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.ask-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
}

.ask-group {
  border-bottom: 1px solid var(--border-light);
}

.ask-group:last-of-type {
  border-bottom: none;
}

.ask-group-name {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-card-alt);
  border-bottom: 1px solid var(--border-light);
}

.ask-list {
  padding: 0;
}

.ask-row {
  border-bottom: 1px solid var(--border-light);
}

.ask-row:last-child {
  border-bottom: none;
}

.ask-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.15s;
  list-style: none;
}

.ask-q:hover {
  background: var(--bg-input);
}

.ask-q::-webkit-details-marker {
  display: none;
}

.ask-q span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  padding-right: 16px;
}

.ask-q svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ask-row[open] .ask-q svg {
  transform: rotate(180deg);
}

.ask-a {
  padding: 0 24px 20px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.ask-more {
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a28 100%);
  text-align: center;
}

.ask-more p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.ask-more-keys {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* =============================================
   FINAL CTA
   ============================================= */
.close-band {
  background: var(--brand-flow);
  border-radius: 26px;
  padding: 48px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.close-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.close-body {
  position: relative;
  z-index: 1;
}

.close-head {
  font-size: 36px;
  font-weight: 900;
    color: #fff;
  margin-bottom: 10px;
}

.close-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.close-deal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  margin-bottom: 24px;
}

.close-deal-word {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.close-deal-figure {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.close-band .cta-key {
  background: #fff;
  color: var(--brand-teal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.base {
  background: var(--bg-dark);
  padding: 32px 24px 20px;
  margin-left: 240px;
}

.base-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.base-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.base-mark .mark-glyph {
  width: 32px;
  height: 32px;
}

.base-mark .mark-word {
  font-size: 18px;
  color: #fff;
}

.base-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.6;
}

.base-links {
  display: flex;
  gap: 48px;
}

.base-col-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.base-col a {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.base-col a:hover {
  color: var(--brand-glow);
}

.base-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.base-legal {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.base-pays {
  display: flex;
  gap: 12px;
}

.base-pay {
  width: 40px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Large Desktop */
@media (max-width: 1400px) {
  .grid-zone {
    grid-template-columns: 200px minmax(350px, 1fr) 260px;
  }
  
  .hot-grid,
  .deal-grid,
  .vault-tally,
  .elite-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .champ-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-card.lead {
    grid-column: span 2;
  }
  
  .pot-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .rail {
    width: 200px;
  }
  
  .stage,
  .flow,
  .base {
    margin-left: 200px;
  }
  
  .pay-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cz-vaultset-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cz-vaultcard-card.large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  
  .cz-vaultcard-card.large .cz-vaultcard-header,
  .cz-vaultcard-card.large .cz-vaultcard-features {
    grid-column: span 1;
  }
  
  .reward-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .disc-cats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .maker-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .rail {
    width: 64px;
  }
  
  .rail .rail-row > span,
  .rail .deal-tag > div:last-child {
    display: none;
  }
  
  .rail .rail-row {
    justify-content: center;
    padding: 12px;
  }
  
  .stage,
  .flow,
  .base {
    margin-left: 64px;
  }
  
  .grid-zone {
    grid-template-columns: 1fr 240px;
  }
  
  .flank-l {
    display: none;
  }
  
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trait-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .deal-live-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .safe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .seal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .topbar-find {
    display: none;
  }
  
  .grid-zone {
    grid-template-columns: 1fr;
  }
  
  .flank-r {
    display: none;
  }
  
  .banner-head {
    font-size: 32px;
  }
  
  .banner-art {
    display: none;
  }
  
  .intro-wrap {
    padding: 20px 16px;
  }
  
  .intro-head {
    font-size: 20px;
  }
  
  .intro-copy {
    font-size: 13px;
  }
  
  .intro-chips {
    gap: 8px;
  }
  
  .intro-chip {
    padding: 8px 12px;
  }
  
  .intro-chip-word {
    font-size: 11px;
  }
  
  .hot-grid,
  .deal-grid,
  .cz-qgrid,
  .vault-tally,
  .elite-tiers {
    grid-template-columns: 1fr;
  }
  
  .tally-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .tally-split {
    display: none;
  }
  
  .path-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .path-link {
    display: none;
  }
  
  .pay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .base-top {
    flex-direction: column;
    gap: 24px;
  }
  
  .base-links {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .vault-hero,
  .app-band {
    flex-direction: column;
    text-align: center;
  }
  
  .vault-hero-art,
  .app-art {
    display: none;
  }
  
  .voice-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }
  
  .champ-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .post-card.lead {
    grid-column: span 1;
    flex-direction: column;
  }
  
  .post-card.lead .post-art {
    width: 100%;
    height: 120px;
  }
  
  .pot-row {
    grid-template-columns: 1fr;
  }
  
  .cz-vaultintro-intro {
    flex-direction: column;
  }
  
  .cz-vaultintro-stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .cz-vaultset-grid {
    grid-template-columns: 1fr;
  }
  
  .cz-vaultcard-card.large {
    grid-column: span 1;
  }
  
  .reward-lead {
    flex-direction: column;
    padding: 28px;
  }
  
  .reward-lead-art {
    margin-top: 20px;
  }
  
  .reward-grid {
    grid-template-columns: 1fr;
  }
  
  .reward-lead-terms {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .edge-grid {
    grid-template-columns: 1fr;
  }
  
  .trait-grid {
    grid-template-columns: 1fr;
  }
  
  .disc-cats {
    grid-template-columns: 1fr;
  }
  
  .disc-view-intro {
    padding: 24px;
  }
  
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .maker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .safe-grid,
  .seal-grid {
    grid-template-columns: 1fr;
  }
  
  .story-band {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
  
  .story-figures {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .story-art {
    margin-top: 24px;
  }
  
  .deal-live-band {
    flex-direction: column;
    text-align: center;
  }
  
  .deal-live-art {
    display: none;
  }
  
  .deal-live-grid {
    grid-template-columns: 1fr;
  }
  
  .ask-q span {
    font-size: 12px;
  }
  
  .ask-a {
    font-size: 11px;
  }
  
  .ask-more-keys {
    flex-direction: column;
  }
  
  .app-traits {
    grid-template-columns: 1fr;
  }
  
  .app-keys {
    flex-direction: column;
    align-items: center;
  }
  
  .aware-band {
    flex-direction: column;
    text-align: center;
  }
  
  .aware-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .topbar {
    padding: 10px 16px;
  }
  
  .banner {
    padding: 20px 16px;
  }
  
  .banner-head {
    font-size: 28px;
  }
  
  .intro-head {
    font-size: 18px;
  }
  
  .cta-key {
    padding: 12px 32px;
    font-size: 12px;
  }
  
  .flow {
    padding: 0 12px 16px;
  }
  
  .flow-name {
    font-size: 14px;
  }
  
  .deal-card,
  .hot-card,
  .slot-card {
    padding: 14px;
  }
  
  .vault-hero-head {
    font-size: 28px;
  }
  
  .app-head {
    font-size: 24px;
  }
  
  .elite-head {
    font-size: 24px;
  }
  
  .close-band {
    padding: 32px 20px;
  }
  
  .close-head {
    font-size: 28px;
  }
  
  .base {
    padding: 24px 16px 16px;
  }
  
  .champ-grid {
    grid-template-columns: 1fr;
  }
  
  .slot-grid {
    grid-template-columns: 1fr;
  }
  
  .region-grid {
    grid-template-columns: 1fr;
  }
  
  .reward-figure {
    font-size: 42px;
  }
}

/* =============================================
   JS-DRIVEN INTERACTION STATES
   ============================================= */
.topbar-lift {
  box-shadow: 0 4px 24px rgba(11, 30, 36, 0.12);
}

.topbar-gone {
  transform: translateY(-100%);
}

.rail-open {
  transform: translateX(0) !important;
}

.hot-line.picked {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
  color: #fff;
}

.rise-el {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rise-el.risen {
  opacity: 1;
  transform: translateY(0);
}

.hint {
  position: fixed;
  background: var(--bg-dark);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 11px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.hint-on {
  opacity: 1;
}

.reward-card-code.done {
  background: var(--brand-mint);
  color: #fff;
}

.champ-flash {
  animation: champ-glow 1s ease;
}

@keyframes champ-glow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 22px rgba(15, 181, 166, 0.45); }
}

.code-field input.ok {
  border-color: var(--brand-mint);
}

.code-field input.bad {
  border-color: var(--brand-copper);
}

img.ready {
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .rail {
    position: fixed;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 150;
    width: 240px !important;
  }

  .rail .rail-row > span,
  .rail .deal-tag > div:last-child {
    display: block !important;
  }

  .rail .rail-row {
    justify-content: flex-start !important;
    padding: 10px 18px !important;
  }

  body.rail-live::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(11, 30, 36, 0.55);
    z-index: 140;
  }
}

.zi{display:inline-flex;align-items:center;justify-content:center;width:1em;height:1em;vertical-align:-0.125em;line-height:0}
.zi svg{width:100%;height:100%;display:block}
