/* ========================================
   BurnKing — Neo Grid / Neon UI
   ======================================== */

:root {
  --bg: #120609;
  --bg-deep: #0a0304;
  --surface: rgba(28, 8, 10, 0.9);
  --surface-2: rgba(22, 6, 8, 0.92);
  --border: rgba(255, 196, 104, 0.18);
  --border-strong: rgba(255, 196, 104, 0.42);
  --text: #fff3e0;
  --text-sec: #f5d7b8;
  --text-dim: #c7a686;
  --accent: #ffb13b;
  --accent-2: #ff6a3d;
  --lime: #42d28a;
  --amber: #f4b23a;
  --orange: #ff7a2f;
  --red: #ff3e3e;
  --glow: rgba(255, 186, 90, 0.35);
  --radius: 16px;
  --transition: 0.2s ease;
  --gold: #f7d07a;
  --scarlet: #d62a2a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Rajdhani", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 8px var(--glow);
}

/* ========================================
   Background — Aurora Orbs + Scanlines
   ======================================== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255, 170, 90, 0.25), transparent 60%),
    radial-gradient(900px 520px at 10% 110%, rgba(255, 70, 70, 0.18), transparent 65%),
    radial-gradient(900px 600px at 85% 20%, rgba(255, 215, 140, 0.2), transparent 70%),
    linear-gradient(180deg, #1a070b 0%, #0c0406 100%);
  min-height: 100vh;
  width: 100%;
}

.bg-effects::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(rgba(255, 170, 90, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 170, 90, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
  transform: perspective(600px) rotateX(8deg);
  transform-origin: top;
  animation: gridShift 18s linear infinite;
}

.bg-effects::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 230, 190, 0.85), transparent 40%),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 210, 150, 0.8), transparent 40%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255, 240, 210, 0.9), transparent 40%),
    radial-gradient(1px 1px at 80% 70%, rgba(255, 205, 150, 0.7), transparent 40%),
    radial-gradient(1px 1px at 45% 55%, rgba(255, 200, 140, 0.6), transparent 40%);
  opacity: 0.7;
  animation: starDrift 22s linear infinite, twinkle 6s ease-in-out infinite;
}

.bg-effects .sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 18%, rgba(255, 210, 150, 0.9), transparent 40%),
    radial-gradient(1.5px 1.5px at 25% 40%, rgba(255, 200, 140, 0.7), transparent 40%),
    radial-gradient(2px 2px at 38% 65%, rgba(255, 180, 120, 0.8), transparent 40%),
    radial-gradient(1.5px 1.5px at 62% 20%, rgba(255, 215, 150, 0.8), transparent 40%),
    radial-gradient(2px 2px at 78% 42%, rgba(255, 195, 140, 0.85), transparent 40%),
    radial-gradient(1.5px 1.5px at 86% 78%, rgba(255, 215, 150, 0.7), transparent 40%),
    radial-gradient(2px 2px at 50% 88%, rgba(255, 210, 160, 0.85), transparent 40%);
  opacity: 0.7;
  animation: sparkleDrift 18s linear infinite;
}

.bg-effects .lux-sweep {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 240, 210, 0.08) 45%, rgba(255, 230, 180, 0.22) 50%, rgba(255, 240, 210, 0.08) 55%, transparent 100%);
  opacity: 0.7;
  filter: blur(4px);
  animation: sweep 12s ease-in-out infinite;
}

.bg-effects .lux-sweep-2 {
  top: 35%;
  height: 50%;
  opacity: 0.5;
  animation: sweep 16s ease-in-out infinite reverse;
}

.bg-effects .lux-halo {
  position: absolute;
  inset: auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 100, 0.25), transparent 65%);
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  animation: haloPulse 10s ease-in-out infinite;
}

.orb,
.scanlines {
  display: none;
}

@keyframes starDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(30px); }
}

@keyframes gridShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 40px, 40px 0; }
}

@keyframes sweep {
  0% { transform: translateX(-20%) translateY(0); }
  50% { transform: translateX(20%) translateY(6%); }
  100% { transform: translateX(-20%) translateY(0); }
}

@keyframes haloPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

@keyframes sparkleDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

/* ========================================
   Layout
   ======================================== */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}

/* ========================================
   Festive Ornaments
   ======================================== */
.festive-ribbon {
  position: absolute;
  top: 140px;
  width: 260px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 230, 170, 0.5), rgba(210, 20, 20, 0.2) 50%, transparent 70%);
  filter: blur(2px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.ribbon-left {
  left: -120px;
  transform: rotate(-12deg);
}

.ribbon-right {
  right: -120px;
  transform: rotate(12deg);
}

.floating-lantern {
  position: absolute;
  width: 80px;
  height: 120px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 235, 200, 0.8), rgba(255, 160, 80, 0.45) 45%, rgba(200, 20, 20, 0.6) 70%);
  box-shadow:
    0 0 24px rgba(255, 170, 90, 0.55),
    inset 0 0 18px rgba(255, 220, 180, 0.3);
  opacity: 0.55;
  z-index: 0;
  animation: lanternFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.floating-lantern::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 220, 170, 0.9), transparent);
  transform: translateX(-50%);
}

.lantern-1 { left: 6%; top: 180px; }
.lantern-2 { right: 8%; top: 220px; animation-delay: -2s; }
.lantern-3 { left: 82%; top: 520px; animation-delay: -4s; }

@keyframes lanternFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ---- Header ---- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 196, 104, 0.2);
  background: rgba(18, 6, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 16px;
  height: 64px;
  background: rgba(18, 6, 8, 0.8);
  border-bottom: 1px solid rgba(255, 196, 104, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(10, 5, 8, 0.35);
}

.nav-btn {
  border: 1px solid rgba(255, 196, 104, 0.35);
  background: linear-gradient(135deg, #ffe24a, #ffb200);
  color: #2a0c10;
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow:
    0 0 18px rgba(255, 210, 80, 0.7),
    inset 0 0 12px rgba(255, 255, 255, 0.35);
  min-width: 180px;
  line-height: 1.1;
}

.nav-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 230, 150, 0.9);
  box-shadow:
    0 0 26px rgba(255, 210, 80, 0.9),
    inset 0 0 14px rgba(255, 255, 255, 0.45);
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 200, 120, 0.4);
  background: rgba(40, 10, 12, 0.65);
  color: #ffe4b8;
  box-shadow: inset 0 0 10px rgba(255, 190, 120, 0.2);
}

.badge-gold {
  background: linear-gradient(135deg, rgba(255, 200, 120, 0.25), rgba(120, 20, 20, 0.55));
}

.badge-red {
  background: linear-gradient(135deg, rgba(255, 120, 80, 0.25), rgba(160, 20, 20, 0.7));
}

.badge-ember {
  background: linear-gradient(135deg, rgba(255, 160, 90, 0.3), rgba(200, 40, 20, 0.7));
}

.badge-mini {
  font-size: 9px;
  padding: 5px 10px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 104, 0.45);
  box-shadow: 0 0 14px rgba(255, 170, 90, 0.25);
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 240, 210, 0.3), rgba(120, 20, 20, 0.4));
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-title {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff0cf;
  text-shadow: 0 0 14px rgba(255, 170, 90, 0.55);
}

.logo-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: 2px;
}

/* ---- Content ---- */
.content {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 20px 0 8px;
  position: relative;
}

.hero-ornament {
  position: absolute;
  inset: -20px 15% auto 15%;
  height: 120px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 220, 170, 0.45), transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255, 140, 90, 0.35), transparent 60%);
  filter: blur(8px);
  opacity: 0.7;
  z-index: -1;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  color: #ffe4b8;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(255, 180, 120, 0.6),
    0 0 40px rgba(255, 120, 70, 0.35);
  line-height: 1.1;
}

.hero-tag {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-sec);
  letter-spacing: 1px;
  margin-top: 10px;
  text-transform: uppercase;
}

.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: "Rajdhani", sans-serif;
  color: var(--text-sec);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(40, 10, 12, 0.75);
  border: 1px solid rgba(255, 196, 104, 0.25);
  box-shadow: inset 0 0 12px rgba(255, 170, 90, 0.2);
}

.hero-foot {
  margin-top: 10px;
  font-family: "Rajdhani", sans-serif;
  color: var(--text-dim);
  font-size: 13px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.section-title {
  margin-top: 10px;
  text-align: center;
  padding: 6px 0 0;
}

.section-kicker {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
}

.section-head {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  color: #ffe2bf;
  margin-top: 6px;
  text-shadow: 0 0 16px rgba(255, 180, 120, 0.35);
}

.section-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-sec);
  margin-top: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.feature-card {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(70, 12, 12, 0.85), rgba(22, 8, 10, 0.95));
  border: 1px solid rgba(255, 200, 130, 0.3);
  box-shadow:
    inset 0 0 18px rgba(255, 180, 120, 0.15),
    0 0 20px rgba(10, 5, 8, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 200, 140, 0.22), transparent 70%);
  opacity: 0.7;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255, 170, 90, 0.4);
}

.feature-icon {
  font-size: 22px;
}

.feature-title {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  color: #ffe6c9;
}

.feature-desc {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-sec);
}

.feature-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(255, 190, 120, 0.15);
  border: 1px solid rgba(255, 200, 120, 0.35);
  color: #ffe1b8;
}

.step-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.step {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(24, 8, 10, 0.85);
  border: 1px solid rgba(255, 196, 104, 0.25);
  box-shadow: inset 0 0 16px rgba(255, 170, 90, 0.12);
}

.step-num {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}

.step-title {
  margin-top: 6px;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  color: #ffe4c0;
}

.step-desc {
  margin-top: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  color: var(--text-sec);
}

.ticker-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.ticker-item {
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(40, 10, 12, 0.8);
  border: 1px solid rgba(255, 196, 104, 0.25);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-sec);
  box-shadow: inset 0 0 10px rgba(255, 180, 120, 0.12);
}

.promo {
  margin-top: 6px;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(200px 120px at 50% 0%, rgba(255, 210, 120, 0.45), transparent 70%),
    linear-gradient(180deg, rgba(80, 12, 12, 0.9), rgba(24, 6, 10, 0.95));
  border: 1px solid rgba(255, 200, 130, 0.3);
  box-shadow:
    inset 0 0 30px rgba(255, 180, 100, 0.25),
    0 0 30px rgba(10, 5, 8, 0.8);
  text-align: center;
}

.promo-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-line {
  font-family: "Rajdhani", sans-serif;
  color: #f6d6a4;
  letter-spacing: 2px;
  font-size: 14px;
}

.promo-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  color: #ffe1b8;
  text-shadow: 0 0 20px rgba(255, 180, 110, 0.65);
}

.promo-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: #ffe9cf;
  letter-spacing: 1px;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.promo-card {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(150, 20, 20, 0.55);
  border: 1px solid rgba(255, 200, 140, 0.3);
  box-shadow: inset 0 0 18px rgba(255, 190, 120, 0.22);
}

.promo-card-main {
  background: rgba(190, 26, 20, 0.65);
  border-color: rgba(255, 210, 140, 0.5);
  box-shadow: inset 0 0 24px rgba(255, 200, 140, 0.4);
}

.promo-card-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  color: #f6d6a4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-card-value {
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
  color: #fff2d6;
  margin-top: 6px;
}

.promo-card-note {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  color: #e6c8a4;
  margin-top: 6px;
}

.promo-foot {
  margin-top: 16px;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: #f2d7b6;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(40, 10, 12, 0.85);
  border: 1px solid rgba(255, 196, 104, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pill-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe18a, #ff8b42);
  box-shadow: 0 0 12px rgba(255, 170, 80, 0.7);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.info-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(24, 8, 10, 0.85);
  border: 1px solid rgba(255, 196, 104, 0.25);
  box-shadow: inset 0 0 16px rgba(255, 170, 90, 0.12);
  overflow: hidden;
}

.info-label {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.info-value {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: #e2ecff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 190, 120, 0.2), rgba(255, 170, 90, 0.7));
  box-shadow: 0 0 14px rgba(255, 170, 90, 0.35);
  position: relative;
}

.info-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0.7;
}

.info-green {
  background: linear-gradient(135deg, rgba(36, 226, 138, 0.2), rgba(36, 226, 138, 0.7));
  box-shadow: 0 0 14px rgba(36, 226, 138, 0.35);
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow:
    inset 0 0 24px rgba(255, 170, 90, 0.1),
    0 0 24px rgba(5, 10, 20, 0.7);
}

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

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 200, 120, 0.5);
  opacity: 0.6;
}

.card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.card::before {
  animation: cardPulse 3.6s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

.card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.card-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-sec);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.label-en {
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(200, 220, 255, 0.65);
  margin-left: 4px;
}

.card-value {
  font-family: "Orbitron", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-top: 8px;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(255, 190, 140, 0.25);
}

.label-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(30, 10, 12, 0.9);
  border: 1px solid rgba(255, 196, 104, 0.35);
  box-shadow: 0 0 10px rgba(255, 170, 90, 0.25);
  position: relative;
  flex-shrink: 0;
}

.label-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.9;
}

.icon-fire {
  color: var(--orange);
  border-color: rgba(255, 122, 47, 0.6);
  box-shadow: 0 0 12px rgba(255, 122, 47, 0.45);
}

.icon-gift {
  color: #b79bff;
  border-color: rgba(255, 180, 90, 0.5);
  box-shadow: 0 0 12px rgba(255, 180, 90, 0.35);
}

.icon-cube {
  color: var(--accent);
}

.icon-user {
  color: var(--lime);
  border-color: rgba(36, 226, 138, 0.5);
  box-shadow: 0 0 10px rgba(36, 226, 138, 0.35);
}

.icon-share {
  color: var(--amber);
  border-color: rgba(245, 179, 59, 0.5);
  box-shadow: 0 0 10px rgba(245, 179, 59, 0.35);
}

.icon-claim {
  color: #ffd6a3;
  border-color: rgba(255, 200, 130, 0.6);
  box-shadow: 0 0 12px rgba(255, 200, 130, 0.4);
}

.icon-trophy {
  color: #ffd24a;
  border-color: rgba(255, 210, 74, 0.5);
  box-shadow: 0 0 10px rgba(255, 210, 74, 0.35);
}

.card-value-lg {
  font-size: 52px;
}

.card-unit {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-sec);
  margin-top: 2px;
}

.card-note {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 196, 104, 0.25);
}

.inline-muted {
  font-size: 16px;
  color: var(--text-dim);
}

/* Highlight text */
.hl {
  color: var(--accent);
  text-shadow: 0 0 8px var(--glow);
}

.hl-countdown {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  color: var(--amber);
  text-shadow: 0 0 10px rgba(245, 179, 59, 0.5);
}

/* Card variants — colored top border */
.card-fire {
  border: 1px solid rgba(255, 122, 47, 0.45);
  background: linear-gradient(135deg, rgba(50, 10, 12, 0.92), rgba(24, 8, 12, 0.95));
}

.card-fire .card-value {
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255, 122, 47, 0.45);
}

.card-reward {
  border: 1px solid rgba(255, 196, 104, 0.45);
  background: linear-gradient(135deg, rgba(40, 14, 18, 0.95), rgba(20, 8, 12, 0.95));
}

.card-reward .card-value {
  color: #b79bff;
  text-shadow: 0 0 14px rgba(139, 107, 255, 0.45);
}

.card-claim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 200, 130, 0.4);
  background: linear-gradient(135deg, rgba(40, 16, 16, 0.92), rgba(18, 8, 10, 0.95));
}

.card-claim .card-value {
  color: var(--lime);
  text-shadow: 0 0 14px rgba(36, 226, 138, 0.45);
}

/* Small stat cards */
.card-sm {
  text-align: center;
  padding: 18px 14px;
}

.card-sm .card-value {
  font-size: 28px;
  color: #fff;
}

/* ---- Grids ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
}

.btn-en {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.75;
}

.btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b2f, #ffb23b);
  color: #2a0c10;
  border-color: rgba(255, 188, 110, 0.75);
  margin-top: 16px;
  box-shadow: 0 0 20px rgba(255, 150, 80, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 0 26px rgba(255, 122, 47, 0.55);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 45%, transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-success {
  background: linear-gradient(135deg, #ffb23b, #ff7a38);
  color: #2a0c10;
  border-color: rgba(255, 188, 110, 0.7);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 150, 80, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-success:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 0 26px rgba(255, 150, 80, 0.6);
}

.btn-success::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-success:hover::after {
  transform: translateX(120%);
}

.btn-connect {
  background: rgba(40, 10, 12, 0.8);
  border: 1px solid rgba(255, 196, 104, 0.6);
  color: #ffe3b8;
  padding: 9px 18px;
  box-shadow: inset 0 0 12px rgba(255, 170, 90, 0.2);
}

.btn-connect:hover:not(:disabled) {
  border-color: rgba(255, 210, 140, 0.9);
  box-shadow: 0 0 16px rgba(255, 170, 90, 0.35);
}

.btn-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 1.2s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.btn-sm {
  background: rgba(8, 16, 30, 0.7);
  border: 1px solid var(--border);
  color: var(--text-sec);
  padding: 6px 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  border-radius: 10px;
}

.btn-sm:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: rgba(6, 12, 24, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 999px;
}

.btn-ghost:hover:not(:disabled) {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 196, 104, 0.2);
  margin-top: auto;
  background: rgba(18, 6, 8, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-brand {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.footer-links {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: var(--text-sec);
}

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

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

/* ========================================
   Modal
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 2, 4, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
  overflow-y: auto;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: rgba(24, 8, 10, 0.98);
  border: 1px solid rgba(255, 196, 104, 0.45);
  border-radius: var(--radius);
  width: min(460px, 100%);
  padding: 24px;
  animation: modalIn 0.15s ease-out;
  position: relative;
  box-shadow: 0 0 30px rgba(5, 10, 20, 0.8);
}

/* Pixel corner accents on modal */
.modal-card::before,
.modal-card::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 200, 120, 0.5);
  opacity: 0.6;
}

.modal-card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.modal-card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  color: #ffe2bf;
  text-shadow: 0 0 10px rgba(255, 170, 90, 0.6);
}

.modal-sub {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 6px;
}

.modal-close {
  font-family: "Orbitron", sans-serif;
  background: transparent;
  color: var(--text-sec);
  border: 1px solid var(--border);
  font-size: 11px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
  transition: all var(--transition);
}

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

.modal-body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel {
  background: rgba(30, 10, 12, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: var(--text-sec);
}

.panel-row span:last-child {
  color: #fff;
  font-weight: 400;
}

.panel-note {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-dim);
}

/* ========================================
   Input
   ======================================== */
.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(12, 4, 6, 0.6);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  transition: border-color var(--transition);
}

.input:focus {
  outline: none;
  border-color: rgba(255, 200, 120, 0.7);
  box-shadow: 0 0 8px rgba(255, 170, 90, 0.25);
}

.input::placeholder {
  color: var(--text-dim);
}

.input-sm {
  width: 64px;
  padding: 6px 8px;
  font-size: 14px;
  text-align: center;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ========================================
   Toast
   ======================================== */
.toast {
  position: fixed;
  top: 18px;
  right: 18px;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(24, 8, 10, 0.95);
  border: 1px solid var(--border);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.15s ease;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: rgba(40, 220, 140, 0.6);
  box-shadow: 0 0 12px rgba(40, 220, 140, 0.2);
}

.toast.error {
  border-color: rgba(255, 70, 70, 0.7);
  box-shadow: 0 0 12px rgba(255, 70, 70, 0.2);
}

.toast.info {
  border-color: rgba(255, 180, 110, 0.7);
  box-shadow: 0 0 12px rgba(255, 180, 110, 0.2);
}

/* ========================================
   Leaderboard
   ======================================== */
.card-lb {
  display: flex;
  flex-direction: column;
}

.lb-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.lb-meta {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

.lb-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Prize Pool Stats Bar */
.pool-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(50, 16, 16, 0.7), rgba(24, 8, 10, 0.9));
  border: 1px solid rgba(255, 196, 104, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.pool-item {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
}

.pool-label {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.5px;
}

.pool-value {
  font-family: "Orbitron", sans-serif;
  font-size: 34px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255, 200, 120, 0.6);
  margin-top: 6px;
  line-height: 1;
}

.pool-item:last-child .pool-value {
  color: #ffd1a1;
  text-shadow: 0 0 14px rgba(255, 180, 110, 0.5);
}

.pool-unit {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-sec);
  margin-top: 2px;
}

.lb-header .label-en {
  font-size: 9px;
  opacity: 0.7;
}

.pool-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 196, 104, 0.35), transparent);
  align-self: stretch;
}

.lb-header {
  display: grid;
  grid-template-columns: 40px 1fr 50px 100px;
  gap: 10px;
  padding: 10px 12px;
  margin-top: 14px;
  background: rgba(30, 10, 12, 0.7);
  border: 1px solid rgba(255, 196, 104, 0.2);
  border-radius: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--text-sec);
  text-transform: uppercase;
}

.lb-row {
  display: grid;
  grid-template-columns: 40px 1fr 50px 100px;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 196, 104, 0.2);
  align-items: center;
  transition: background var(--transition);
}

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

.lb-row:hover {
  background: rgba(255, 200, 140, 0.04);
}

.lb-rank {
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  text-align: center;
  color: var(--text-sec);
}

.lb-rank-1 {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.lb-rank-2 {
  color: #e0e0e0;
  text-shadow: 0 0 6px rgba(224, 224, 224, 0.3);
}

.lb-rank-3 {
  color: #cd7f32;
  text-shadow: 0 0 6px rgba(205, 127, 50, 0.3);
}

.lb-addr {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  color: var(--text-sec);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-pct {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
}

.lb-amt {
  font-family: "Orbitron", sans-serif;
  font-size: 14px;
  text-align: right;
  color: #fff;
}

.lb-empty {
  text-align: center;
  padding: 32px 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  color: var(--text);
}

.lb-total {
  display: flex;
  justify-content: flex-end;
  padding: 12px 12px 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 196, 104, 0.2);
  margin-top: 4px;
}

.lb-total span {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255, 200, 120, 0.5);
  margin-left: 6px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  .header-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .content {
    padding: 20px 14px 36px;
    gap: 14px;
  }

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

  .tri-grid {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .promo-cards {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .step-strip {
    grid-template-columns: 1fr;
  }

  .ticker-strip {
    grid-template-columns: 1fr 1fr;
  }

  .card-claim {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-claim .btn-success {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
  }

  .lb-header,
  .lb-row {
    grid-template-columns: 32px 1fr 80px !important;
  }

  .lb-pct {
    display: none !important;
  }

  .lb-top {
    flex-direction: column;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-tag {
    font-size: 12px;
  }

  .card-value {
    font-size: 28px;
  }

  .card-value-lg {
    font-size: 34px;
  }

  .ticker-strip {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 12px;
    align-items: flex-start;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 18px;
  }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .btn-dot {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
