/* ============================================
   WINGO PRO — VOLCANIC GLASS DESIGN SYSTEM
   Syne + Outfit | Dark Casino Prediction UI
   ============================================ */

:root {
  --fire: #FF6B2B;
  --fire-light: #FFB088;
  --fire-dim: rgba(255,107,43,0.15);
  --gold: #FFD700;
  --red: #FF3B3B;
  --green: #22C55E;
  --violet: #A855F7;
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #181818;
  --bg4: #1E1E1E;
  --border: rgba(255,255,255,0.06);
  --border-fire: rgba(255,107,43,0.25);
  --text: #F0EDE8;
  --text2: #888;
  --text3: #555;
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }
::selection { background: var(--fire); color: #000; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
}

.logo-orb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFD700, var(--fire), #C0392B);
  box-shadow: 0 0 20px rgba(255,107,43,0.6);
  animation: orbPulse 2s ease-in-out infinite;
}

.logo-orb.small { width: 20px; height: 20px; }

@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,43,0.6); }
  50% { box-shadow: 0 0 35px rgba(255,107,43,0.9), 0 0 60px rgba(255,107,43,0.3); }
}

.logo-accent { color: var(--fire); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.nav-live {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--fire);
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--fire);
  animation: livePulse 1s ease-in-out infinite;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 16px 5%;
  border-bottom: 1px solid var(--border);
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--fire); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 100px 5% 60px;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.g1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: driftGlow 12s ease-in-out infinite;
}

.g2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
  bottom: 0; right: 200px;
  animation: driftGlow 15s ease-in-out infinite reverse;
}

.g3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  top: 50%; right: 0;
  animation: driftGlow 10s ease-in-out infinite 3s;
}

@keyframes driftGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--fire);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fire);
  animation: livePulse 1s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-accent {
  background: linear-gradient(135deg, var(--fire), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,107,43,0.4));
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hstat { display: flex; flex-direction: column; align-items: center; }

.hstat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fire);
  line-height: 1;
}

.hstat-unit {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fire-light);
}

.hstat-label {
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hstat-div {
  width: 1px; height: 44px;
  background: var(--border);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--fire), #FF8C42);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(255,107,43,0.4);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(255,107,43,0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--fire);
  color: var(--fire);
}

/* NUMBER WHEEL */
.number-wheel-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.wheel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text3);
  text-transform: uppercase;
}

.number-wheel {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--bg3);
  border: 3px solid var(--border-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(255,107,43,0.2), inset 0 0 40px rgba(0,0,0,0.5);
  animation: wheelSpin 0.3s ease;
}

.number-wheel::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(var(--fire), var(--gold), var(--fire), transparent, transparent);
  z-index: -1;
  animation: rotateBorder 3s linear infinite;
  opacity: 0.4;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wheel-digit {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--fire);
  text-shadow: 0 0 40px rgba(255,107,43,0.8);
  transition: all 0.3s;
  line-height: 1;
}

.wheel-color-bar {
  width: 120px; height: 8px;
  border-radius: 4px;
  background: var(--fire);
  transition: background 0.5s;
}

.wheel-color-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wheel-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
}

.timer-label {
  font-size: 0.75rem;
  color: var(--text3);
  font-weight: 500;
}

.timer-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--fire);
  font-weight: 700;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 36px;
}

/* ============================================
   PREDICTIONS SECTION
   ============================================ */
.predictions-section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.platform-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ptab {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.ptab:hover {
  border-color: var(--border-fire);
  color: var(--fire);
}

.ptab.active {
  background: linear-gradient(135deg, var(--fire), #FF8C42);
  border-color: var(--fire);
  color: #000;
}

.ptab-icon { font-size: 1rem; }

/* PREDICTION CARDS */
.pred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.pred-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.pred-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--gold), transparent);
}

.pred-card:hover {
  border-color: var(--border-fire);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,43,0.08);
}

.pred-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pred-period {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
}

.period-icon { font-size: 0.9rem; }

.pred-confidence {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.pred-confidence.high {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

.pred-confidence.medium {
  background: rgba(255,107,43,0.15);
  color: var(--fire);
  border: 1px solid rgba(255,107,43,0.3);
}

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

.pred-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
  min-width: 60px;
  transition: all 0.3s;
}

.pred-num.animating {
  animation: numFlip 0.4s ease;
}

@keyframes numFlip {
  0% { transform: rotateX(0deg); opacity: 1; }
  50% { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

.pred-color-badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pred-color-badge.red {
  background: rgba(255,59,59,0.15);
  color: var(--red);
  border: 1px solid rgba(255,59,59,0.3);
}

.pred-color-badge.green {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

.pred-color-badge.violet {
  background: rgba(168,85,247,0.15);
  color: var(--violet);
  border: 1px solid rgba(168,85,247,0.3);
}

.pred-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: var(--bg3);
  border-radius: var(--radius-sm);
}

.pred-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text3);
}

.detail-val {
  font-weight: 700;
  color: var(--text);
}

.pred-timer-bar {
  height: 4px;
  background: var(--bg4);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pred-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 2px;
  width: 100%;
  transition: width 1s linear;
}

.pred-countdown {
  font-size: 0.75rem;
  color: var(--text3);
  font-family: var(--font-mono);
  text-align: right;
}

/* ============================================
   COLOUR GUIDE
   ============================================ */
.colour-guide {
  position: relative;
  z-index: 1;
  padding: 60px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.colour-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.colour-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  width: 100px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.colour-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c);
}

.colour-card:hover {
  transform: translateY(-4px);
  border-color: var(--c);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px color-mix(in srgb, var(--c) 20%, transparent);
}

.colour-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c);
  line-height: 1;
  margin-bottom: 6px;
}

.colour-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 4px;
}

.colour-info {
  font-size: 0.65rem;
  color: var(--text3);
  font-weight: 500;
}

/* ============================================
   PLATFORMS
   ============================================ */
.platforms-section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.platform-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.platform-card:hover {
  border-color: var(--border-fire);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.platform-card.featured {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(135deg, rgba(255,215,0,0.05), var(--bg2));
}

.platform-card.featured:hover {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.1);
}

.platform-card.featured2 {
  border-color: rgba(255,107,43,0.3);
  background: linear-gradient(135deg, rgba(255,107,43,0.05), var(--bg2));
}

.platform-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,215,0,0.15);
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.3);
  letter-spacing: 0.5px;
}

.platform-badge.special {
  background: rgba(255,107,43,0.15);
  color: var(--fire);
  border-color: rgba(255,107,43,0.3);
}

.platform-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.platform-card p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.platform-accuracy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-bar {
  flex: 1;
  height: 5px;
  background: var(--bg4);
  border-radius: 3px;
  overflow: hidden;
}

.acc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease 0.5s;
}

.platform-accuracy span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fire);
  white-space: nowrap;
}

/* ============================================
   HISTORY TABLE
   ============================================ */
.history-section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.history-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.history-table thead tr {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.history-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
}

.history-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.history-table tbody tr:hover { background: var(--bg3); }
.history-table tbody tr:last-child { border-bottom: none; }

.history-table td {
  padding: 14px 18px;
  color: var(--text2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.history-table td:first-child { color: var(--text3); }

.status-win {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-loss {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,59,59,0.1);
  color: var(--red);
  border: 1px solid rgba(255,59,59,0.25);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.col-red { color: var(--red) !important; font-weight: 700; }
.col-green { color: var(--green) !important; font-weight: 700; }
.col-violet { color: var(--violet) !important; font-weight: 700; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  position: relative;
  z-index: 1;
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.how-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.how-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  width: 210px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.how-card:hover {
  border-color: var(--border-fire);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,107,43,0.08);
}

.how-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fire), var(--gold));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.how-icon { font-size: 2.2rem; margin: 10px 0 14px; }

.how-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.how-card p {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.5;
}

.how-connector {
  font-size: 1.5rem;
  color: var(--text3);
  flex-shrink: 0;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,107,43,0.05);
  border: 1px solid rgba(255,107,43,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  margin: 0 5% 40px;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer span { font-size: 1.2rem; flex-shrink: 0; }

.disclaimer p {
  font-size: 0.78rem;
  color: var(--text3);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 50px 5% 30px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--text3);
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text3);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 80px;
  }

  .hero-content { order: 1; }
  .number-wheel-wrap { order: 0; margin-bottom: 20px; }

  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-live { display: none; }
  .hamburger { display: block; }

  .pred-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }

  .how-grid { flex-direction: column; align-items: center; }
  .how-connector { transform: rotate(90deg); }
  .how-card { width: 100%; max-width: 300px; }

  .colour-grid { gap: 8px; }
  .colour-card { width: 85px; padding: 16px 10px; }
}

@media (max-width: 480px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hstat-div { width: 40px; height: 1px; }
  .platform-tabs { gap: 8px; }
  .ptab { font-size: 0.78rem; padding: 8px 14px; }
}