/* ═══════════════════════════════════════════════════════════════
   BCOIN AFFILIATE — Design System
   Crypto-native dark palette: deep navy + bitcoin orange accent
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root,
[data-theme='light'] {
  --color-bg: #f5f4f0;
  --color-surface: #f9f8f5;
  --color-surface-2: #ffffff;
  --color-surface-offset: #eeece8;
  --color-surface-offset-2: #e7e5e0;
  --color-surface-dynamic: #dedad4;
  --color-divider: #d8d6d0;
  --color-border: #cbc9c3;

  --color-text: #1a1816;
  --color-text-muted: #706e68;
  --color-text-faint: #b0aea8;
  --color-text-inverse: #f9f8f5;

  --color-primary: #f7931a;
  --color-primary-hover: #e07d0a;
  --color-primary-active: #c56a00;
  --color-primary-highlight: #fdecd6;

  --color-success: #22c55e;
  --color-error: #ef4444;
  --color-warning: #eab308;
  --color-blue: #3b82f6;
  --color-purple: #8b5cf6;

  --color-fear-extreme: #ef4444;
  --color-fear: #f97316;
  --color-neutral: #eab308;
  --color-greed: #84cc16;
  --color-greed-extreme: #22c55e;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1200px;

  --font-display: 'Be Vietnam Pro', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Be Vietnam Pro', 'Inter', system-ui, -apple-system, sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0d0c0a;
  --color-surface: #131210;
  --color-surface-2: #181714;
  --color-surface-offset: #1c1b18;
  --color-surface-offset-2: #21201d;
  --color-surface-dynamic: #2a2926;
  --color-divider: #252421;
  --color-border: #333230;
  --color-text: #e8e6e3;
  --color-text-muted: #7a7875;
  --color-text-faint: #4a4946;
  --color-text-inverse: #1a1816;
  --color-primary: #f7931a;
  --color-primary-hover: #ffa533;
  --color-primary-active: #ffb84d;
  --color-primary-highlight: #2d200a;
  --color-success: #4ade80;
  --color-error: #f87171;
  --color-warning: #fbbf24;
  --color-blue: #60a5fa;
  --color-purple: #a78bfa;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0d0c0a; --color-surface: #131210; --color-surface-2: #181714;
    --color-surface-offset: #1c1b18; --color-surface-offset-2: #21201d;
    --color-surface-dynamic: #2a2926; --color-divider: #252421;
    --color-border: #333230; --color-text: #e8e6e3;
    --color-text-muted: #7a7875; --color-text-faint: #4a4946;
    --color-text-inverse: #1a1816;
    --color-primary: #f7931a; --color-primary-hover: #ffa533;
    --color-primary-active: #ffb84d; --color-primary-highlight: #2d200a;
    --color-success: #4ade80; --color-error: #f87171;
    --color-warning: #fbbf24; --color-blue: #60a5fa; --color-purple: #a78bfa;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100dvh;
  line-height: 1.6;
  /* Vietnamese diacritic rendering */
  font-feature-settings: 'kern' 1, 'liga' 1;
  font-variant-ligatures: common-ligatures;
  unicode-bidi: plaintext;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
::selection { background: rgba(247,147,26,0.2); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── UTILITY ─── */
.container { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-6); }
.gradient-text {
  background: linear-gradient(135deg, #f7931a 0%, #ffcc44 50%, #f7931a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-display);
  transition: all var(--transition-interactive);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,147,26,0.35); }
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-highlight); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

/* ─── HEADER ─── */
/* ── Site Header — redesigned ── */
@keyframes headerBorderGlow {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1; }
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 8, 5, 0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(247,147,26,0.18);
  box-shadow: 0 1px 0 rgba(247,147,26,0.08), 0 4px 32px rgba(0,0,0,0.45);
}
.header-inner {
  display: flex; align-items: center; gap: var(--space-6);
  height: 4.25rem;
}

/* ── Logo ── */
.logo {
  display: flex; align-items: center; gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-redesign { gap: 12px; }

/* Emblem wrapper with subtle glow */
@keyframes emblemPulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(247,147,26,0.35)); }
  50%       { filter: drop-shadow(0 0 12px rgba(247,147,26,0.65)); }
}
.logo-emblem {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  animation: emblemPulse 3.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.logo-redesign:hover .logo-emblem {
  transform: rotate(-8deg) scale(1.08);
}

/* Wordmark */
.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.logo-da {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
}
.logo-crypto {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  background: linear-gradient(105deg, #ffd966 0%, #f7931a 45%, #ffb347 80%, #ffd966 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer237Soft 5s linear infinite;
}
.logo-redesign:hover .logo-crypto {
  filter: drop-shadow(0 0 8px rgba(247,147,26,0.5));
}

/* Keep old classes from breaking anything */
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); line-height: 1; }
.logo-accent { color: var(--color-primary); }

/* ── Main Nav ── */
.main-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 7px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: #ffd966;
  background: rgba(247,147,26,0.1);
  border-color: rgba(247,147,26,0.22);
  text-shadow: 0 0 12px rgba(247,147,26,0.4);
}
.header-actions { display: flex; align-items: center; gap: var(--space-3); margin-left: var(--space-4); }
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: all var(--transition-interactive);
}
.theme-toggle:hover { color: var(--color-text); border-color: var(--color-primary); }
.menu-toggle {
  display: none;
  width: 36px; height: 36px; border-radius: var(--radius-md);
  align-items: center; justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.mobile-nav {
  display: none; flex-direction: column;
  padding: var(--space-4) var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: var(--space-3) var(--space-4);
  font-weight: 500; color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-interactive);
}
.mobile-nav-link:hover { color: var(--color-text); background: var(--color-surface-dynamic); }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: calc(4rem + var(--space-20)) 0 var(--space-20);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
/* Hero background image layer */
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Blur + desaturate slightly */
  filter: blur(3px) saturate(0.4) brightness(0.45);
  transform: scale(1.06); /* compensate blur edge bleed */
}
/* Gold/amber tint overlay to match bitcoin orange design */
.hero-bg-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 12, 0, 0.55) 0%,
    rgba(120, 60, 0, 0.22) 40%,
    rgba(10, 8, 4, 0.82) 100%
  );
}
.hero-glow {
  position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(247,147,26,0.18) 0%, transparent 70%);
  filter: blur(40px);
}
.hero-inner { position: relative; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}
.hero-ctas { display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-12); }
.hero-stats {
  display: flex; justify-content: center; align-items: center;
  gap: var(--space-8); flex-wrap: wrap;
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: inline-flex;
}
.stat-item { text-align: center; }
.stat-value { display: block; font-size: var(--text-xl); font-weight: 800; color: var(--color-primary); font-family: var(--font-display); }
.stat-label { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--color-border); }

/* ─── SECTIONS ─── */
.section { padding: clamp(var(--space-12), 8vw, var(--space-24)) 0; }
.section-alt { background: var(--color-surface); }
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-tag {
  display: inline-block; padding: var(--space-1) var(--space-4);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.section-title { font-size: var(--text-2xl); font-weight: 800; margin-bottom: var(--space-4); }
.section-sub { font-size: var(--text-base); color: var(--color-text-muted); max-width: 560px; margin: 0 auto; }

/* ─── CARDS ─── */
.card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-6); flex-wrap: wrap; gap: var(--space-3); }
.card-title { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-lg); font-weight: 700; }
.card-title-sm { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-5); }
.update-badge {
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface-dynamic);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.live-dot { color: var(--color-success); }

/* ─── MARKET GRID ─── */
.market-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (max-width: 900px) { .market-grid { grid-template-columns: 1fr; } }

/* ─── FEAR & GREED ─── */
.fear-greed-card { display: flex; flex-direction: column; gap: var(--space-5); }
.fg-display { display: flex; justify-content: center; }
.fg-gauge-wrap { position: relative; width: 220px; height: 130px; }
.fg-center {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  text-align: center; pointer-events: none;
}
.fg-value { display: block; font-size: var(--text-xl); font-weight: 800; font-family: var(--font-display); }
.fg-label { display: block; font-size: var(--text-xs); font-weight: 600; color: var(--color-text-muted); margin-top: 2px; }
.fg-scale {
  display: flex; justify-content: space-between;
  gap: var(--space-1);
}
.fg-scale-item {
  flex: 1; text-align: center;
  font-size: 9px; font-weight: 600; line-height: 1.3;
  padding: var(--space-1) 0;
  border-radius: var(--radius-sm);
}
.fg-scale-item.fear { background: rgba(239,68,68,0.15); color: #ef4444; }
.fg-scale-item.caution { background: rgba(249,115,22,0.15); color: #f97316; }
.fg-scale-item.neutral { background: rgba(234,179,8,0.15); color: #ca8a04; }
.fg-scale-item.greed { background: rgba(132,204,22,0.15); color: #65a30d; }
.fg-scale-item.extreme-greed { background: rgba(34,197,94,0.15); color: #16a34a; }
.fg-history {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
}
.fg-hist-item {
  text-align: center; padding: var(--space-2) var(--space-3);
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
}
.fg-hist-label { font-size: var(--text-xs); color: var(--color-text-muted); }
.fg-hist-val { font-size: var(--text-sm); font-weight: 700; margin-top: 2px; }
.fg-explainer { background: var(--color-surface-offset); border-radius: var(--radius-md); padding: var(--space-4); }
.fg-explainer p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }
.fg-explainer strong { color: var(--color-text); }

/* ─── CHART CARD ─── */
.chart-card { position: relative; }
.chart-tabs { display: flex; gap: var(--space-1); }
.chart-tab {
  padding: var(--space-1) var(--space-3); font-size: var(--text-xs); font-weight: 600;
  border-radius: var(--radius-full); color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: all var(--transition-interactive);
}
.chart-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.chart-tab:hover:not(.active) { border-color: var(--color-primary); color: var(--color-primary); }
.chart-wrap { height: 280px; position: relative; }
.chart-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
}
.chart-loading.hidden { display: none; }
.spinner {
  width: 20px; height: 20px; border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── TABLE ─── */
.table-card { overflow: hidden; }
.table-wrap { overflow-x: auto; }
.coin-table { font-size: var(--text-sm); }
.coin-table thead { background: var(--color-surface-offset); }
.coin-table th {
  padding: var(--space-3) var(--space-4);
  font-weight: 700; text-align: left;
  color: var(--color-text-muted); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap;
}
.coin-table td {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--color-divider);
  vertical-align: middle;
  white-space: nowrap;
}
.coin-table tr:hover td { background: var(--color-surface-offset); }
.coin-info { display: flex; align-items: center; gap: var(--space-3); }
.coin-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-surface-offset);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700; overflow: hidden;
}
.coin-icon img { width: 32px; height: 32px; border-radius: 50%; }
.coin-name { font-weight: 700; }
.coin-symbol { font-size: var(--text-xs); color: var(--color-text-muted); }
.rank { font-weight: 700; color: var(--color-text-muted); }
.change-pos { color: var(--color-success); font-weight: 600; }
.change-neg { color: var(--color-error); font-weight: 600; }
.table-loading { text-align: center; padding: var(--space-8); color: var(--color-text-muted); }

/* ─── EXPLAINER GRID ─── */
.explainer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5); margin-bottom: var(--space-12);
}
.explainer-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-interactive);
}
.explainer-card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.explainer-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.explainer-card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-3); }
.explainer-card p { font-size: var(--text-sm); color: var(--color-text-muted); }
.explainer-card p strong { color: var(--color-text); }

/* ─── STEP GUIDE ─── */
/* ══ Steps Container ══ */
.steps-container {
  background: linear-gradient(145deg, rgba(48,24,0,0.55) 0%, rgba(18,9,0,0.7) 100%);
  border: 1.5px solid rgba(245,158,11,0.38);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-10);
  box-shadow: 0 0 40px rgba(245,158,11,0.08), 0 12px 48px rgba(0,0,0,0.5);
}
.steps-container > * { position: relative; z-index: 1; }
.steps-title {
  font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-6); text-align: center;
  background: linear-gradient(135deg, #fff 0%, #ffe0a0 60%, #f7931a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─ Step tabs ─ */
.step-tabs { display: flex; justify-content: center; gap: var(--space-2); margin-bottom: var(--space-8); flex-wrap: wrap; }
.step-tab {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  font-weight: 700; font-size: var(--text-sm);
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  position: relative;
}
.step-tab:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(247,147,26,0.25);
}
@keyframes activeTabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247,147,26,0.0), 0 0 14px rgba(247,147,26,0.3); }
  50%       { box-shadow: 0 0 0 4px rgba(247,147,26,0.18), 0 0 24px rgba(247,147,26,0.5); }
}
.step-tab.active {
  background: linear-gradient(135deg, var(--color-primary), #ffcc44);
  border-color: transparent;
  color: #fff;
  transform: scale(1.15);
  animation: activeTabPulse 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.step-tab.done {
  background: var(--color-primary-highlight);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.step-tab.done::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(247,147,26,0.3);
}

/* ─ Panel transitions ─ */
.step-content-wrap { min-height: 340px; }
@keyframes stepPanelIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.step-panel { animation: stepPanelIn 0.65s cubic-bezier(0.22, 1, 0.36, 1); }

/* ─ Step number badge ─ */
@keyframes stepNumPop {
  0%   { transform: scale(0.6) rotate(-8deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes stepNumGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(247,147,26,0.35), 0 4px 14px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 22px rgba(247,147,26,0.65), 0 4px 14px rgba(0,0,0,0.3); }
}
.step-panel-header { display: flex; align-items: flex-start; gap: var(--space-5); margin-bottom: var(--space-6); }
.step-number-big {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--color-primary), #ffcc44);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl); font-weight: 800; color: #fff;
  font-family: var(--font-display);
  animation: stepNumPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both, stepNumGlow 5s cubic-bezier(0.45, 0, 0.55, 1) 0.7s infinite;
}

/* ─ Panel title slide in ─ */
@keyframes stepTitleIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-panel-title {
  font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-2);
  animation: stepTitleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.step-panel-subtitle {
  font-size: var(--text-sm); color: var(--color-text-muted);
  animation: stepTitleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
.step-body { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
@media (max-width: 680px) { .step-body { grid-template-columns: 1fr; } }
.step-main h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-3); color: var(--color-primary); }
.step-main p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.step-main p strong { color: var(--color-text); }

/* ─ Checklist stagger ─ */
@keyframes stepListItemIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.step-list li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
  opacity: 0;
  animation: stepListItemIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.step-list li:nth-child(1) { animation-delay: 0.28s; }
.step-list li:nth-child(2) { animation-delay: 0.42s; }
.step-list li:nth-child(3) { animation-delay: 0.56s; }
.step-list li:nth-child(4) { animation-delay: 0.70s; }
.step-list li:nth-child(5) { animation-delay: 0.84s; }
.step-list li:nth-child(6) { animation-delay: 0.98s; }
.step-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(247,147,26,0.15);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
  transition: background 0.2s, transform 0.2s;
}
.step-list li:hover::before {
  background: rgba(247,147,26,0.3);
  transform: scale(1.2);
}

/* ─ Example panel slide in ─ */
@keyframes stepExampleIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-example {
  background: rgba(40,20,0,0.55);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border-left: 3px solid rgba(247,147,26,0.7);
  border-top: 1px solid rgba(245,158,11,0.18);
  border-right: 1px solid rgba(245,158,11,0.1);
  border-bottom: 1px solid rgba(245,158,11,0.1);
  animation: stepExampleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.step-example-title { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: var(--space-3); }
.step-example p, .step-example li { font-size: var(--text-sm); color: var(--color-text-muted); }
.step-example strong { color: var(--color-text); }

/* ─ Example box glow ─ */
@keyframes exampleBoxGlow {
  0%, 100% { border-color: var(--color-border); box-shadow: none; }
  50%       { border-color: rgba(247,147,26,0.35); box-shadow: 0 0 14px rgba(247,147,26,0.1); }
}
.example-box {
  background: rgba(25,12,0,0.7);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-3);
  font-family: monospace; font-size: var(--text-xs);
  color: var(--color-text-muted);
  word-break: break-all;
  animation: exampleBoxGlow 4s ease-in-out 0.6s infinite;
}
.example-box .highlight { color: var(--color-primary); font-weight: 700; }

/* ─ Tip box ─ */
@keyframes tipSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.step-tip {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: rgba(247,147,26,0.08);
  border: 1px solid rgba(247,147,26,0.25);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  animation: tipSlideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
  transition: border-color 0.3s, background 0.3s;
}
.step-tip:hover {
  border-color: rgba(247,147,26,0.5);
  background: rgba(247,147,26,0.13);
}
.step-tip strong { color: var(--color-primary); }

/* ─ Step nav buttons ─ */
.step-nav { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); }
.step-progress {
  font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 600;
  background: linear-gradient(135deg, #f7931a, #ffcc44);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─ Nav button glow on hover ─ */
#nextStep {
  transition: all 0.22s cubic-bezier(0.34,1.45,0.64,1);
}
#nextStep:hover {
  transform: translateX(3px) scale(1.05);
  box-shadow: 0 0 18px rgba(247,147,26,0.45);
}
#prevStep {
  transition: all 0.22s cubic-bezier(0.34,1.45,0.64,1);
}
#prevStep:hover:not(:disabled) {
  transform: translateX(-3px) scale(1.05);
  box-shadow: 0 0 14px rgba(247,147,26,0.25);
}

/* ─ Roadmap tiers slide in stagger ─ */
@keyframes tierIn {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.roadmap-tier {
  animation: tierIn 0.4s cubic-bezier(0.34,1.45,0.64,1) both;
}
.roadmap-tier:nth-child(1) { animation-delay: 0.2s; }
.roadmap-tier:nth-child(2) { animation-delay: 0.32s; }
.roadmap-tier:nth-child(3) { animation-delay: 0.44s; }
.tier-max:hover .tier-val {
  text-shadow: 0 0 16px rgba(255,215,0,0.7);
}

/* ─── COMPARISON ─── */
.comparison-section { }
.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5); }
.compare-card {
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  transition: all var(--transition-interactive);
}
.compare-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.compare-card.featured { border-color: var(--color-primary); }
.compare-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff; font-size: var(--text-xs); font-weight: 700;
  padding: 3px var(--space-4); border-radius: var(--radius-full);
  white-space: nowrap;
}
.compare-name { font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-1); }
.compare-type { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-5); }
.compare-rate {
  font-size: var(--text-2xl); font-weight: 800; color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: var(--space-5);
}
.compare-rate span { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.compare-features { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.compare-features li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--color-text-muted); }
.compare-features li.yes::before { content: '✓'; color: var(--color-success); font-weight: 700; }
.compare-features li.no::before { content: '✗'; color: var(--color-error); font-weight: 700; }

/* ─── CALCULATOR ─── */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
@media (max-width: 768px) { .calc-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: var(--space-6); }
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.slider {
  width: 100%; height: 6px;
  -webkit-appearance: none; appearance: none;
  background: var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(247,147,26,0.5);
  transition: transform var(--transition-interactive);
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.slider-display { font-size: var(--text-lg); font-weight: 800; color: var(--color-primary); margin-top: var(--space-2); font-family: var(--font-display); }
.result-items { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.result-item { display: flex; justify-content: space-between; align-items: center; padding: var(--space-3) var(--space-4); background: var(--color-surface-offset); border-radius: var(--radius-md); }
.result-label { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.result-value { font-size: var(--text-lg); font-weight: 800; font-family: var(--font-display); }
.result-value.primary { color: var(--color-primary); font-size: var(--text-xl); }
.result-label-val { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); }
.result-chart-wrap { height: 160px; margin-bottom: var(--space-4); }
.result-note { font-size: var(--text-xs); color: var(--color-text-faint); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-interactive);
}
.faq-item.open { border-color: var(--color-primary); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base); font-weight: 700; text-align: left;
  cursor: pointer;
}
.faq-question svg { flex-shrink: 0; transition: transform var(--transition-interactive); color: var(--color-text-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--color-primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 var(--space-6) var(--space-5); font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }
.faq-answer-inner strong { color: var(--color-text); }
.faq-answer-inner a { color: var(--color-primary); text-decoration: underline; }

/* ─── FOOTER ─── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-16) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--space-2); }
.footer-links a { font-size: var(--text-sm); color: var(--color-text-muted); transition: color var(--transition-interactive); }
.footer-links a:hover { color: var(--color-primary); }
.footer-disclaimer { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.6; }
.footer-disclaimer strong { color: var(--color-text); }
.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-5) 0;
  text-align: center;
  font-size: var(--text-xs); color: var(--color-text-faint);
}
.footer-bottom a { color: var(--color-primary); }

/* ─── COMMISSION COUNTER ─── */
.commission-value {
  color: var(--color-success) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}
.commission-value.flash {
  animation: commission-flash 0.6s ease-out;
}
@keyframes commission-flash {
  0%   { text-shadow: 0 0 0 transparent; transform: scale(1); }
  20%  { text-shadow: 0 0 18px rgba(34, 197, 94, 0.8), 0 0 40px rgba(34, 197, 94, 0.4); transform: scale(1.08); color: #4ade80; }
  50%  { text-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 24px rgba(34, 197, 94, 0.2); transform: scale(1.03); }
  100% { text-shadow: 0 0 0 transparent; transform: scale(1); }
}
.stat-item-commission {
  position: relative;
}
.stat-item-commission::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -8px;
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Avg hourly rate badge */
.commission-rate {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 2px 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: #4ade80;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.commission-rate svg {
  flex-shrink: 0;
}

/* ── Matte gold + gentle shimmer for 237 stat ── */
@keyframes goldFoil {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

@keyframes goldGlow {
  0%, 100% { text-shadow: 0 0 18px rgba(255, 215, 0, 0.55), 0 0 40px rgba(255, 180, 0, 0.3); filter: drop-shadow(0 0 14px rgba(255, 200, 0, 0.5)); }
  50%       { text-shadow: 0 0 30px rgba(255, 215, 0, 0.85), 0 0 60px rgba(255, 160, 0, 0.5); filter: drop-shadow(0 0 24px rgba(255, 210, 0, 0.75)); }
}

@keyframes goldShimmer237 {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes goldShimmer237Soft {
  0%   { background-position: 150% center; }
  100% { background-position: -150% center; }
}
.stat-value-gold {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    105deg,
    #6b4c00 0%,
    #a07010 15%,
    #c89b28 28%,
    #e8c050 36%,
    #fffacd 42%,
    #e8c050 48%,
    #b8880e 58%,
    #d4a830 68%,
    #a07010 78%,
    #c89b28 88%,
    #7a5500 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(200, 150, 0, 0.45));
  animation: goldShimmer237Soft 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ── FOMO Hero Stats ── */
@keyframes fomoRing {
  0%, 100% {
    box-shadow:
      0 0 0 0   rgba(255,215,0,0.0),
      0 0 30px  rgba(255,200,0,0.12),
      0 0 80px  rgba(255,180,0,0.06),
      0 12px 48px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow:
      0 0 0 4px  rgba(255,215,0,0.18),
      0 0 50px  rgba(255,200,0,0.28),
      0 0 100px rgba(255,160,0,0.14),
      0 12px 48px rgba(0,0,0,0.5);
  }
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.hero-stats-fomo {
  padding: 28px 36px;
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.05);
  animation: fomoRing 2.5s ease-in-out infinite;
  gap: 36px;
}

.stat-item-fomo {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px;
  align-items: center !important;
  text-align: center !important;
}

.stat-value-fomo {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label-fomo {
  font-size: 0.8rem !important;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 4px;
}

.stat-fomo-badge-live {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.25);
  animation: livePulse 1.2s ease-in-out infinite;
}

.stat-fomo-sub {
  font-size: 0.7rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 2px;
}

.stat-divider-fomo {
  height: 70px !important;
  background: rgba(255,215,0,0.15) !important;
}

/* ── Stat Clickable ── */
.stat-clickable {
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
  border-radius: 14px;
  padding: 10px 14px;
  position: relative;
}
.stat-clickable:hover {
  background: rgba(255,215,0,0.07);
  transform: translateY(-2px);
}
.stat-click-hint {
  font-size: 0.65rem;
  color: rgba(255,215,0,0.55);
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 4px;
  display: block;
  transition: color 0.2s;
}
.stat-clickable:hover .stat-click-hint {
  color: rgba(255,215,0,0.9);
}

/* ── Stat Modal ── */
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.stat-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.stat-modal-overlay.open {
  display: flex;
}
.stat-modal {
  background: #141414;
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 24px;
  padding: 36px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: modalIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
  box-shadow: 0 0 60px rgba(255,180,0,0.12), 0 24px 64px rgba(0,0,0,0.6);
}
.stat-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.stat-modal-close:hover { background: rgba(255,255,255,0.15); }

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.modal-tag-green { color: #4ade80; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.25); }
.modal-tag-red   { color: #f87171; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.25); animation: livePulse 1.2s ease-in-out infinite; }

.modal-big-num {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.modal-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}
.modal-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.modal-row-label { color: rgba(255,255,255,0.55); }
.modal-row-val-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.modal-row-val   { font-weight: 700; color: #fff; }
.modal-row-note  { font-size: 0.68rem; color: rgba(255,215,0,0.55); letter-spacing: 0.02em; font-weight: 500; }
.modal-row-val.green { color: #4ade80; }
.modal-row-val.gold  {
  background: linear-gradient(90deg,#c8960c,#ffd700,#fffacd,#ffd700,#c8960c);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: goldFoil 3s linear infinite;
}

/* Gold shimmer hero — giống số 237 ngoài hero */
.modal-row-val.gold-hero {
  background: linear-gradient(
    105deg,
    #6b4c00 0%,
    #a07010 12%,
    #c89b28 22%,
    #e8c050 30%,
    #fffacd 38%,
    #e8c050 46%,
    #b8880e 55%,
    #d4a830 64%,
    #a07010 74%,
    #c89b28 84%,
    #7a5500 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer237 4s linear infinite;
  filter: drop-shadow(0 0 8px rgba(200, 150, 0, 0.5));
  font-size: 1.15em;
  font-weight: 800;
}

.modal-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.6;
}
.modal-note strong { color: rgba(255,255,255,0.6); }

/* ── Explainer card clickable ── */
.explainer-card-clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.explainer-card-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(247,147,26,0.35);
}
.explainer-hint {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(247,147,26,0.6);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.explainer-card-clickable:hover .explainer-hint {
  color: rgba(247,147,26,1);
}

/* ── Explainer modal extras ── */
.explainer-modal {
  max-width: 600px;
}
.explainer-modal-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}
.explainer-modal h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.explainer-modal .em-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.explainer-section {
  margin-bottom: 20px;
}
.explainer-section h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7931a;
  margin-bottom: 10px;
}
.explainer-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.explainer-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.explainer-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.explainer-step-num {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(247,147,26,0.15);
  border: 1px solid rgba(247,147,26,0.4);
  color: #f7931a;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.explainer-highlight-box {
  background: rgba(247,147,26,0.07);
  border: 1px solid rgba(247,147,26,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.explainer-highlight-box strong { color: #ffd700; }
.income-example-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
}
.income-example-row:last-child { border-bottom: none; }
.income-example-row .label { color: rgba(255,255,255,0.5); }
.income-example-row .val   { font-weight: 700; color: #4ade80; }
.advantage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.advantage-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.advantage-pill.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Explainer card scroll stagger ── */
.explainer-card {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.6s ease,
              transform 0.65s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.explainer-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── 3D Tilt for explainer cards ── */
.explainer-grid {
  perspective: 1000px;
}
.explainer-card {
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: opacity 0.6s ease,
              transform 0.65s cubic-bezier(0.34, 1.45, 0.64, 1),
              box-shadow 0.2s ease;
}
/* When tilt is active, disable the stagger transition for transform so it's instant */
.explainer-card.tilt-active {
  transition: box-shadow 0.15s ease;
}

/* ── Commission counter — bigger + green glow ── */
@keyframes greenGlow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(74, 222, 128, 0.5),
      0 0 50px rgba(74, 222, 128, 0.25),
      0 0 90px rgba(74, 222, 128, 0.1);
    filter: drop-shadow(0 0 16px rgba(74, 222, 128, 0.55));
  }
  50% {
    text-shadow:
      0 0 30px rgba(74, 222, 128, 0.75),
      0 0 70px rgba(74, 222, 128, 0.4),
      0 0 120px rgba(74, 222, 128, 0.18);
    filter: drop-shadow(0 0 28px rgba(74, 222, 128, 0.8));
  }
}

/* Legacy #commissionCounter rule — neutralized; snapshot styles below take over */
#commissionCounter.snapshot-value {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  line-height: 1.1;
  animation: none !important;
}



/* ── Vertical hero stats layout ── */
.hero-stats-vertical {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 24px 36px !important;
  min-width: 380px;
  max-width: 540px;
}

.stat-row-top {
  padding: 10px 12px 12px;
  text-align: center;
  align-items: center !important;
}

.stat-row-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.stat-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-divider-h {
  width: 100% !important;
  height: 1px !important;
  background: rgba(255, 215, 0, 0.15) !important;
  margin: 0 !important;
}

.stat-row-bottom {
  padding: 16px 12px 14px;
  text-align: center;
  align-items: center !important;
}

.stat-value-xl {
  font-size: 4.8rem !important;
  font-weight: 900 !important;
  letter-spacing: -2px;
  line-height: 1;
  margin: 6px 0 4px;
}

/* ── Gold Particle Canvas ── */
.stats-particle-wrap {
  position: relative;
  display: inline-block;
}

#statsParticleCanvas {
  position: absolute;
  top: -60px;
  left: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  pointer-events: none;
  z-index: 0;
}

.stats-particle-wrap .hero-stats {
  position: relative;
  z-index: 1;
}

/* ── Hero Particle Canvas (full hero section) ── */
/* ── Guide Section Particle Canvas ── */
#guideParticleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#guide .container {
  position: relative;
  z-index: 1;
}

/* ── Calculator & FAQ Particle Canvas ── */
#calcParticleCanvas,
#faqParticleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#calculator .container,
#faq .container {
  position: relative;
  z-index: 1;
}

/* ══ Guide section corner particles ══ */
#guideCornerLeft,
#guideCornerRight {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  top: 0;
}
#guideCornerLeft  { left: 0; }
#guideCornerRight { right: 0; }

/* ══ Explainer card gold shimmer border ══ */
@keyframes cardBorderShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.explainer-card-clickable {
  overflow: hidden;
}

.explainer-card-clickable::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,215,0,0.0) 30%,
    rgba(255,215,0,0.45) 50%,
    rgba(255,215,0,0.0) 70%,
    transparent 100%
  );
  background-size: 250% 250%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: cardBorderShimmer 4s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.explainer-card-clickable:hover::before {
  opacity: 1;
}

/* ══ Explainer modal mini canvas ══ */
#explainerModalParticleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.explainer-modal {
  position: relative;
  overflow: hidden;
}

.explainer-modal > *:not(#explainerModalParticleCanvas) {
  position: relative;
  z-index: 1;
}

/* ══ Guide Section — Vivid Color Overhaul ══ */

/* Section tag glow pulse */
@keyframes tagGlowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(247,147,26,0.3), 0 0 20px rgba(247,147,26,0.1); }
  50%       { box-shadow: 0 0 16px rgba(247,147,26,0.6), 0 0 40px rgba(247,147,26,0.25); }
}
#guide .section-tag {
  background: linear-gradient(135deg, rgba(247,147,26,0.18) 0%, rgba(255,200,80,0.12) 100%);
  border: 1px solid rgba(247,147,26,0.5);
  color: #ffb347;
  animation: tagGlowPulse 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(247,147,26,0.4);
}

/* Guide title gradient */
#guide .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #ffe0a0 50%, #f7931a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(247,147,26,0.2));
}

/* Icon wrap — glowing circle bg */
.ec-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: var(--space-4);
  font-size: 1.7rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.explainer-card:hover .ec-icon-wrap {
  transform: scale(1.15) rotate(-6deg);
}

/* ─ Cards: unified gold/amber tone ─ */
@keyframes goldGlowCard {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0), 0 0 20px rgba(245,158,11,0.07), 0 8px 32px rgba(0,0,0,0.38); }
  50%       { box-shadow: 0 0 0 2px rgba(251,191,36,0.14), 0 0 38px rgba(245,158,11,0.2), 0 8px 32px rgba(0,0,0,0.38); }
}

.ec-blue, .ec-green, .ec-gold {
  border-color: rgba(245,158,11,0.38) !important;
  background: linear-gradient(145deg, rgba(45,22,0,0.5) 0%, rgba(18,10,0,0.65) 100%) !important;
  animation: goldGlowCard 4s ease-in-out infinite;
}
.ec-green { animation-delay: 1.3s; }
.ec-gold  { animation-delay: 2.6s; }

.ec-blue .ec-icon-wrap,
.ec-green .ec-icon-wrap,
.ec-gold .ec-icon-wrap {
  background: rgba(245,158,11,0.16);
  box-shadow: 0 0 18px rgba(245,158,11,0.38), inset 0 0 10px rgba(245,158,11,0.08);
  filter: drop-shadow(0 0 8px rgba(251,191,36,0.5));
}

.ec-blue h3, .ec-green h3, .ec-gold h3 { color: #fcd34d; }
.ec-blue .ec-hint, .ec-green .ec-hint, .ec-gold .ec-hint { color: rgba(251,191,36,0.65); }
.ec-blue:hover .ec-hint, .ec-green:hover .ec-hint, .ec-gold:hover .ec-hint { color: #fbbf24; }
.ec-blue:hover, .ec-green:hover, .ec-gold:hover { border-color: rgba(245,158,11,0.75) !important; }
.ec-blue p strong, .ec-green p strong, .ec-gold p strong { color: #fde68a; }

/* ══ Partner Roadmap — Bước 3 ══ */
.partner-roadmap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.roadmap-exchange {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  padding: 12px 14px;
}
.roadmap-exchange-name {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fcd34d;
  margin-bottom: 10px;
}
.roadmap-tiers {
  display: flex;
  gap: 8px;
}
.roadmap-tier {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border-radius: 8px;
  padding: 8px 6px;
  border: 1px solid transparent;
}
.tier-base  { background: rgba(100,100,100,0.18); border-color: rgba(150,150,150,0.2); }
.tier-mid   { background: rgba(247,147,26,0.12);  border-color: rgba(247,147,26,0.3); }
.tier-max   { background: rgba(255,215,0,0.14);   border-color: rgba(255,215,0,0.4); }
.tier-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.tier-max .tier-label { color: #fbbf24; }
.tier-mid .tier-label { color: #fb923c; }
.tier-val {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: #e5e7eb;
}
.tier-max .tier-val { color: #fde68a; text-shadow: 0 0 10px rgba(255,215,0,0.4); }
.tier-mid .tier-val { color: #fdba74; }
.tier-req {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   DA NETWORK SECTION
══════════════════════════════════════════════════════════ */

/* Particle canvas */
#daNetworkParticleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
#da-network > .container {
  position: relative;
  z-index: 1;
}

/* ── Section tag & title ── */
@keyframes danTagPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(247,147,26,0.3), 0 0 20px rgba(247,147,26,0.1); }
  50%       { box-shadow: 0 0 16px rgba(247,147,26,0.65), 0 0 40px rgba(247,147,26,0.28); }
}
.dan-tag {
  background: linear-gradient(135deg, rgba(247,147,26,0.18) 0%, rgba(255,200,80,0.12) 100%);
  border: 1px solid rgba(247,147,26,0.5);
  color: #ffb347;
  animation: danTagPulse 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(247,147,26,0.4);
}
.dan-title {
  background: linear-gradient(135deg, #ffffff 0%, #ffe0a0 50%, #f7931a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 14px rgba(247,147,26,0.22));
}

/* ── Intro cards grid ── */
.dan-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
@media (max-width: 900px) {
  .dan-intro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .dan-intro-grid { grid-template-columns: 1fr; }
}

@keyframes danCardGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0), 0 0 20px rgba(245,158,11,0.06), 0 8px 32px rgba(0,0,0,0.38); }
  50%       { box-shadow: 0 0 0 1.5px rgba(251,191,36,0.12), 0 0 36px rgba(245,158,11,0.18), 0 8px 32px rgba(0,0,0,0.38); }
}
.dan-intro-card {
  background: linear-gradient(145deg, rgba(45,22,0,0.52) 0%, rgba(18,10,0,0.68) 100%);
  border: 1px solid rgba(245,158,11,0.32);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  animation: danCardGlow 4s ease-in-out infinite;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.dan-intro-card:nth-child(2) { animation-delay: 1s; }
.dan-intro-card:nth-child(3) { animation-delay: 2s; }
.dan-intro-card:nth-child(4) { animation-delay: 3s; }
.dan-intro-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.65);
}
.dan-intro-icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  display: block;
}
.dan-intro-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fcd34d;
  margin-bottom: var(--space-2);
}
.dan-intro-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.gold-text {
  color: #fde68a;
  font-weight: 800;
}

/* ── Leaderboard ── */
.dan-leaderboard {
  background: linear-gradient(145deg, rgba(40,18,0,0.6) 0%, rgba(14,7,0,0.75) 100%);
  border: 1.5px solid rgba(245,158,11,0.35);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-10);
  box-shadow: 0 0 40px rgba(245,158,11,0.07), 0 12px 48px rgba(0,0,0,0.45);
}
.dan-lb-header {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dan-lb-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(247,147,26,0.2) 0%, rgba(255,200,80,0.14) 100%);
  border: 1px solid rgba(247,147,26,0.45);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}
.dan-lb-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-2);
}
.dan-lb-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* Table */
.dan-lb-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dan-lb-row {
  display: grid;
  grid-template-columns: 52px 1fr 160px 150px 80px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.25s ease;
}
@media (max-width: 700px) {
  .dan-lb-row { grid-template-columns: 40px 1fr 100px 110px 64px; gap: 8px; }
  .col-channel { display: none; }
  .dan-lb-row { grid-template-columns: 40px 1fr 120px 64px; }
}
.dan-lb-head {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,158,11,0.18);
}
.dan-lb-row:not(.dan-lb-head):hover {
  background: rgba(245,158,11,0.06);
}
/* Top 3 special rows */
.dan-lb-r1 {
  background: linear-gradient(90deg, rgba(255,200,0,0.1) 0%, rgba(255,200,0,0.03) 100%);
  border: 1px solid rgba(255,200,0,0.22);
}
.dan-lb-r2 {
  background: linear-gradient(90deg, rgba(180,180,180,0.08) 0%, transparent 100%);
  border: 1px solid rgba(180,180,180,0.14);
}
.dan-lb-r3 {
  background: linear-gradient(90deg, rgba(180,100,20,0.1) 0%, transparent 100%);
  border: 1px solid rgba(180,100,20,0.18);
}

.dan-lb-col { display: flex; align-items: center; }
.col-rank   { justify-content: center; }
.col-earn   { font-weight: 700; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.col-channel{ font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.col-rate   { justify-content: center; }

/* Medal */
.lb-medal { font-size: 1.3rem; line-height: 1; }
.lb-rank-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.45);
  margin: 0 auto;
}

/* Avatar + name */
.lb-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-right: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.lb-name-wrap {
  display: flex; flex-direction: column; gap: 2px;
}
.lb-name-wrap strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.lb-name-wrap small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
}

/* Rate badge */
.lb-badge-rate {
  background: linear-gradient(135deg, rgba(247,147,26,0.22) 0%, rgba(255,215,0,0.14) 100%);
  border: 1px solid rgba(247,147,26,0.42);
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
}

/* Gold earn value */
.dan-earn-gold {
  background: linear-gradient(90deg, #f7931a, #ffcc44, #f7931a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer237Soft 5s linear infinite;
  font-weight: 800 !important;
}

.dan-lb-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: var(--space-5);
}

/* ── Feedback section ── */
.dan-feedback {
  background: linear-gradient(145deg, rgba(40,18,0,0.5) 0%, rgba(14,7,0,0.65) 100%);
  border: 1.5px solid rgba(245,158,11,0.28);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 0 40px rgba(245,158,11,0.06), 0 12px 48px rgba(0,0,0,0.4);
}
.dan-fb-header {
  text-align: center;
  margin-bottom: var(--space-7);
}
.dan-fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  min-height: 200px;
}
@media (max-width: 700px) {
  .dan-fb-grid { grid-template-columns: 1fr; }
}
/* Placeholder state */
.dan-fb-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-10);
  border: 2px dashed rgba(245,158,11,0.25);
  border-radius: var(--radius-xl);
  text-align: center;
}
.dan-fb-ph-icon { font-size: 2.5rem; opacity: 0.6; }
.dan-fb-placeholder p {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}
.dan-fb-placeholder small {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

/* Feedback image item (for when images are added) */
.dan-fb-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245,158,11,0.22);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.dan-fb-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.5);
}
.dan-fb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA */
.dan-cta-wrap {
  text-align: center;
}
.dan-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-4);
}
.dan-cta-btn {
  gap: 8px;
  box-shadow: 0 0 28px rgba(247,147,26,0.35);
}

/* ══════════════════════════════════════════════════════════
   NAV DROPDOWN — PROFESSIONAL MEGA MENU
══════════════════════════════════════════════════════════ */

/* Nav item wrapper */
.nav-item {
  position: relative;
}

/* Separator bar */
.nav-sep {
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, rgba(247,147,26,0.35), transparent);
  margin: 0 6px;
  flex-shrink: 0;
}

/* Chevron icon */
.nav-chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  transition: transform 230ms cubic-bezier(0.16,1,0.3,1);
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
  color: #ffd966;
}

/* Link with dropdown trigger */
.nav-link-dd {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* DA Network highlight link */
@keyframes navLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}
.nav-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: navLivePulse 2s ease-in-out infinite;
}
.nav-link-highlight {
  color: #ffd966 !important;
}
.nav-link-highlight:hover {
  color: #fff !important;
  background: rgba(247,147,26,0.15) !important;
  border-color: rgba(247,147,26,0.35) !important;
}

/* ── Dropdown panel ── */
@keyframes navDdIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: rgba(12, 8, 4, 0.96);
  border: 1px solid rgba(247,147,26,0.25);
  border-radius: 14px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(247,147,26,0.06),
    0 8px 32px rgba(0,0,0,0.7),
    0 0 40px rgba(247,147,26,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  transition: opacity 220ms cubic-bezier(0.16,1,0.3,1),
              transform 220ms cubic-bezier(0.16,1,0.3,1);
  z-index: 200;
}
.nav-dropdown-right {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-8px) scale(0.97);
}

/* Show on hover */
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-has-dropdown:hover .nav-dropdown-right,
.nav-has-dropdown.is-open .nav-dropdown-right {
  transform: translateX(0) translateY(0) scale(1);
}

/* Small arrow pointer at top of dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(12,8,4,0.96);
  border-top: 1px solid rgba(247,147,26,0.25);
  border-left: 1px solid rgba(247,147,26,0.25);
  border-radius: 2px;
}
.nav-dropdown-right::before {
  left: auto;
  right: 18px;
  transform: rotate(45deg);
}

/* Section header label */
.nav-dd-header {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,147,26,0.55);
  padding: 6px 12px 4px;
}

/* Dropdown items */
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 180ms ease;
  cursor: pointer;
}
.nav-dd-item:hover {
  background: rgba(247,147,26,0.1);
}
.nav-dd-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,147,26,0.1);
  border-radius: 7px;
  border: 1px solid rgba(247,147,26,0.15);
}
.nav-dd-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-dd-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.2;
}
.nav-dd-text small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.3;
}

/* Divider inside dropdown */
.nav-dd-divider {
  height: 1px;
  background: rgba(247,147,26,0.12);
  margin: 6px 8px;
}

/* CTA item special style */
.nav-dd-cta {
  background: linear-gradient(135deg, rgba(247,147,26,0.14) 0%, rgba(255,215,0,0.08) 100%);
  border: 1px solid rgba(247,147,26,0.28);
  margin-top: 2px;
}
.nav-dd-cta:hover {
  background: linear-gradient(135deg, rgba(247,147,26,0.24) 0%, rgba(255,215,0,0.15) 100%);
  border-color: rgba(247,147,26,0.5);
}
.nav-dd-cta .nav-dd-text strong {
  background: linear-gradient(90deg, #ffd966, #f7931a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-dd-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: #f7931a;
  opacity: 0.7;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-dd-cta:hover .nav-dd-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* Active nav indicator underline */
.nav-link.is-active {
  color: #ffd966 !important;
  background: rgba(247,147,26,0.1) !important;
  border-color: rgba(247,147,26,0.22) !important;
}

/* ── Mobile Nav Redesign ── */
.mobile-nav-group {
  padding: 8px 0;
}
.mobile-nav-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,147,26,0.55);
  padding: 4px 16px 8px;
}
.mobile-nav-divider {
  height: 1px;
  background: rgba(247,147,26,0.14);
  margin: 4px 12px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}
.mobile-nav-link-hot {
  color: #ffd966 !important;
}
.mobile-nav-link-cta {
  background: linear-gradient(135deg, rgba(247,147,26,0.16), rgba(255,215,0,0.08));
  border: 1px solid rgba(247,147,26,0.28);
  border-radius: 10px;
  margin: 4px 8px;
  color: #ffd966 !important;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   LIÊN HỆ SECTION
══════════════════════════════════════════════════════════ */
.lh-section { padding-bottom: var(--space-12); }

.lh-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 780px;
  margin: 0 auto var(--space-6);
}
@media (max-width: 700px) {
  .lh-cards { grid-template-columns: 1fr; }
}

.lh-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(145deg, rgba(45,22,0,0.52) 0%, rgba(18,10,0,0.68) 100%);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.lh-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 20px rgba(245,158,11,0.1);
}

.lh-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lh-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.lh-card-body strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.lh-card-body span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lh-card-arrow {
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.lh-card:hover .lh-card-arrow {
  transform: translateX(4px);
  color: #f7931a;
}

.lh-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lh-note strong { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════════════
   ĐẶC QUYỀN SECTION
══════════════════════════════════════════════════════════ */

/* Nav VIP link */
.nav-link-vip {
  color: #ffd966 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}
.nav-link-vip:hover {
  background: rgba(255,215,102,0.14) !important;
  border-color: rgba(255,215,102,0.35) !important;
  color: #fff !important;
}
.mobile-nav-link-vip {
  color: #ffd966 !important;
  font-weight: 700;
}

/* Section canvas */
#dqParticleCanvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Blur blobs */
.dq-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.dq-blur-1 {
  width: 420px; height: 420px;
  background: rgba(247,147,26,0.07);
  top: -80px; left: -60px;
}
.dq-blur-2 {
  width: 340px; height: 340px;
  background: rgba(124,58,237,0.07);
  bottom: -40px; right: -40px;
}

/* Tags */
.dq-tag {
  background: linear-gradient(135deg, rgba(247,147,26,0.15), rgba(255,215,0,0.1));
  border: 1px solid rgba(247,147,26,0.45);
  color: #fbbf24;
  animation: danTagPulse 3s ease-in-out infinite;
}
@keyframes dqTitleShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.dq-title {
  background: linear-gradient(105deg, #ffffff 0%, #ffe0a0 30%, #ffd966 50%, #f7931a 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dqTitleShimmer 5s linear infinite;
}
.dq-sub { color: rgba(255,255,255,0.55); }

/* ── Card Grid ── */
.dq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
@media (max-width: 900px) { .dq-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* Base card */
@keyframes dqCardBreath {
  0%,100% { box-shadow: 0 0 0 0 rgba(247,147,26,0), 0 8px 40px rgba(0,0,0,0.5); }
  50%      { box-shadow: 0 0 0 2px rgba(247,147,26,0.1), 0 8px 40px rgba(0,0,0,0.5); }
}
.dq-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(40,20,0,0.7) 0%, rgba(14,7,0,0.85) 100%);
  border: 1px solid rgba(245,158,11,0.28);
  border-radius: 20px;
  padding: 28px 24px 22px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease;
  animation: dqCardBreath 4s ease-in-out infinite;
  display: flex; flex-direction: column; gap: 14px;
}
.dq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247,147,26,0.65);
}
.dq-card-blue {
  background: linear-gradient(160deg, rgba(10,20,50,0.7) 0%, rgba(5,10,28,0.88) 100%);
  border-color: rgba(96,165,250,0.28);
  animation-name: dqCardBreathBlue;
}
@keyframes dqCardBreathBlue {
  0%,100% { box-shadow: 0 0 0 0 rgba(96,165,250,0), 0 8px 40px rgba(0,0,0,0.5); }
  50%      { box-shadow: 0 0 0 2px rgba(96,165,250,0.1), 0 8px 40px rgba(0,0,0,0.5); }
}
.dq-card-blue:hover { border-color: rgba(96,165,250,0.6); }

.dq-card-purple {
  background: linear-gradient(160deg, rgba(30,10,55,0.7) 0%, rgba(12,5,25,0.88) 100%);
  border-color: rgba(192,132,252,0.28);
  animation-name: dqCardBreathPurple;
}
@keyframes dqCardBreathPurple {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,132,252,0), 0 8px 40px rgba(0,0,0,0.5); }
  50%      { box-shadow: 0 0 0 2px rgba(192,132,252,0.1), 0 8px 40px rgba(0,0,0,0.5); }
}
.dq-card-purple:hover { border-color: rgba(192,132,252,0.6); }

/* Glow blob inside card */
.dq-card-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  top: -60px; right: -40px;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.35;
}
.dq-glow-gold   { background: radial-gradient(circle, #f7931a, #ffd966); }
.dq-glow-blue   { background: radial-gradient(circle, #3b82f6, #60a5fa); }
.dq-glow-purple { background: radial-gradient(circle, #7c3aed, #c084fc); }

/* Badges */
.dq-badge-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.dq-badge {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase;
}
.dq-badge-hot      { background: rgba(239,68,68,0.18); border: 1px solid rgba(239,68,68,0.4); color: #f87171; }
.dq-badge-limited  { background: rgba(247,147,26,0.15); border: 1px solid rgba(247,147,26,0.4); color: #fbbf24; }
.dq-badge-live     { background: rgba(74,222,128,0.14); border: 1px solid rgba(74,222,128,0.35); color: #4ade80; }
.dq-badge-exclusive{ background: rgba(192,132,252,0.15); border: 1px solid rgba(192,132,252,0.38); color: #c084fc; }

/* Icon */
.dq-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}

/* Content */
.dq-card-content h3 {
  font-size: 1.05rem; font-weight: 800;
  color: #fff; margin-bottom: 6px; line-height: 1.3;
}
.dq-card-content p {
  font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.6; margin: 0;
}

/* Stats row */
.dq-card-stat {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px;
}
.dq-stat-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 600;
}
.dq-stat-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.dq-stat-dot.green  { background: #4ade80; box-shadow: 0 0 6px #4ade80; }
.dq-stat-dot.gold   { background: #fbbf24; box-shadow: 0 0 6px #fbbf24; }
.dq-stat-dot.blue   { background: #60a5fa; box-shadow: 0 0 6px #60a5fa; }
.dq-stat-dot.purple { background: #c084fc; box-shadow: 0 0 6px #c084fc; }

/* CTA row */
.dq-card-cta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.38);
  margin-top: auto;
  transition: color 0.2s;
}
.dq-card:hover .dq-card-cta { color: #ffd966; }
.dq-card-blue:hover  .dq-card-cta { color: #60a5fa; }
.dq-card-purple:hover .dq-card-cta { color: #c084fc; }

/* CTA Strip */
.dq-cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(135deg, rgba(40,20,0,0.6), rgba(25,12,0,0.75));
  border: 1px solid rgba(247,147,26,0.3);
  border-radius: 16px;
  padding: 20px 28px;
  flex-wrap: wrap;
}
.dq-cta-left { display: flex; align-items: center; gap: 14px; }
.dq-lock-icon { font-size: 1.8rem; flex-shrink: 0; }
.dq-cta-left div { display: flex; flex-direction: column; gap: 3px; }
.dq-cta-left strong { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.dq-cta-left span { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.dq-cta-btn { white-space: nowrap; box-shadow: 0 0 24px rgba(247,147,26,0.35); }

/* ══════════════════════════════════════════════════════════
   DQ MODALS
══════════════════════════════════════════════════════════ */
.dq-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.dq-modal.is-open {
  opacity: 1; pointer-events: auto;
}
@keyframes dqModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.dq-modal-box {
  width: 100%; max-width: 520px;
  background: rgba(10,7,3,0.97);
  border: 1px solid rgba(247,147,26,0.25);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  animation: dqModalIn 0.35s cubic-bezier(0.16,1,0.3,1) both;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(247,147,26,0.06);
  max-height: 90vh;
  overflow-y: auto;
}
.dq-modal-box::-webkit-scrollbar { width: 4px; }
.dq-modal-box::-webkit-scrollbar-track { background: transparent; }
.dq-modal-box::-webkit-scrollbar-thumb { background: rgba(247,147,26,0.3); border-radius: 2px; }

/* Color variants */
.dq-modal-gold   { border-color: rgba(247,147,26,0.3); }
.dq-modal-blue   { border-color: rgba(96,165,250,0.28); }
.dq-modal-purple { border-color: rgba(192,132,252,0.28); }

/* Close btn */
.dq-modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.dq-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Header */
.dq-modal-header {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dq-modal-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dq-micon-gold   { background: rgba(247,147,26,0.15); border: 1px solid rgba(247,147,26,0.3); }
.dq-micon-blue   { background: rgba(96,165,250,0.14); border: 1px solid rgba(96,165,250,0.28); }
.dq-micon-purple { background: rgba(192,132,252,0.14); border: 1px solid rgba(192,132,252,0.28); }

.dq-modal-badge {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fbbf24;
  background: rgba(247,147,26,0.12); border: 1px solid rgba(247,147,26,0.3);
  padding: 3px 10px; border-radius: 100px;
  display: inline-block; margin-bottom: 6px;
}
.dq-modal-badge-blue   { color: #60a5fa; background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.28); }
.dq-modal-badge-purple { color: #c084fc; background: rgba(192,132,252,0.1); border-color: rgba(192,132,252,0.28); }

.dq-modal-title {
  font-size: 1.2rem; font-weight: 800;
  color: #fff; line-height: 1.3; margin: 0;
}

/* Body */
.dq-modal-body { padding: 22px 28px; }
.dq-modal-lead {
  font-size: 0.92rem; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 20px;
  font-style: italic;
}
.dq-modal-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.dq-mf-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: 11px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.dq-mf-item:hover { background: rgba(255,255,255,0.06); }
.dq-mf-icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.dq-mf-item div { display: flex; flex-direction: column; gap: 3px; }
.dq-mf-item strong { font-size: 0.88rem; color: rgba(255,255,255,0.88); font-weight: 700; }
.dq-mf-item small  { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.5; }

/* Alert strip */
.dq-modal-alert {
  font-size: 0.82rem; font-weight: 600;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5; border-radius: 10px; padding: 12px 16px;
}
.dq-alert-blue   { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.25); color: #93c5fd; }
.dq-alert-purple { background: rgba(192,132,252,0.1); border-color: rgba(192,132,252,0.25); color: #d8b4fe; }

/* Footer */
.dq-modal-footer {
  padding: 20px 28px 26px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.dq-modal-cta { width: 100%; justify-content: center; box-shadow: 0 0 24px rgba(247,147,26,0.3); }
.dq-cta-blue   { background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important; box-shadow: 0 0 24px rgba(59,130,246,0.35) !important; }
.dq-cta-purple { background: linear-gradient(135deg, #6d28d9, #8b5cf6) !important; box-shadow: 0 0 24px rgba(139,92,246,0.35) !important; }
.dq-modal-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ══════════════════════════════════════════════════════════
   LANGUAGE TOGGLE BUTTON
══════════════════════════════════════════════════════════ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 200ms ease;
  color: rgba(255,255,255,0.5);
}
.lang-toggle:hover {
  border-color: rgba(247,147,26,0.4);
  background: rgba(247,147,26,0.08);
}
.lang-toggle-sep {
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}
.lang-toggle-vi,
.lang-toggle-en {
  transition: color 200ms ease;
}
/* Active state per lang */
[data-lang="vi"] .lang-toggle-vi {
  color: #ffd966;
}
[data-lang="vi"] .lang-toggle-en {
  color: rgba(255,255,255,0.3);
}
[data-lang="en"] .lang-toggle-en {
  color: #ffd966;
}
[data-lang="en"] .lang-toggle-vi {
  color: rgba(255,255,255,0.3);
}

/* Transition for text swap */
[data-i18n] {
  transition: opacity 180ms ease;
}
body.lang-switching [data-i18n] {
  opacity: 0;
}

/* ── Language Dropdown ────────────────────────────── */
.lang-select {
  position: relative;
  display: inline-flex;
}
.lang-select-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffd966;
  transition: all 200ms ease;
}
.lang-select-btn:hover {
  border-color: rgba(247,147,26,0.4);
  background: rgba(247,147,26,0.08);
}
.lang-select-btn svg {
  opacity: 0.6;
  transition: transform 200ms ease;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: #16100a;
  border: 1px solid rgba(247,147,26,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 9999;
}
.lang-dropdown.open {
  display: block;
}
.lang-select:has(.lang-dropdown.open) .lang-select-btn svg {
  transform: rotate(180deg);
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-align: left;
  transition: background 150ms, color 150ms;
  white-space: nowrap;
}
.lang-opt:hover {
  background: rgba(247,147,26,0.1);
  color: #fff;
}
.lang-opt.active {
  color: #ffd966;
  font-weight: 700;
  background: rgba(247,147,26,0.08);
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM DESIGN REFINEMENT — DA NETWORK
   Black + Metallic Gold · Luxury Fintech · Institutional
   Override layer — all content/structure preserved
   ══════════════════════════════════════════════════════════════ */

/* ── 1. REFINED COLOR TOKENS (dark mode override) ── */
[data-theme='dark'],
body {
  --gold-100: #fffacd;
  --gold-200: #fde68a;
  --gold-300: #fbbf24;
  --gold-400: #f7931a;
  --gold-500: #e8650a;
  --gold-600: #c8520a;
  --gold-muted: rgba(247,147,26,0.55);
  --gold-faint: rgba(247,147,26,0.12);
  --gold-border: rgba(247,147,26,0.22);
  --gold-border-strong: rgba(247,147,26,0.42);

  --surface-premium: rgba(14,10,4,0.92);
  --surface-card: linear-gradient(160deg, rgba(22,14,4,0.85) 0%, rgba(10,7,2,0.92) 100%);
  --surface-elevated: linear-gradient(145deg, rgba(30,18,4,0.72) 0%, rgba(14,8,2,0.82) 100%);
}

/* ── 2. GLOBAL BODY — subtle financial grid ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(247,147,26,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,147,26,0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── 3. HEADER — sharpen backdrop ── */
.site-header {
  background: rgba(8, 6, 2, 0.88) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom: 1px solid rgba(247,147,26,0.14) !important;
  box-shadow: 0 1px 0 rgba(247,147,26,0.06), 0 2px 24px rgba(0,0,0,0.6) !important;
}

/* Logo — reduce pulse aggressiveness */
.logo-emblem {
  animation: emblemPulse 5s ease-in-out infinite !important;
}
@keyframes emblemPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(247,147,26,0.28)); }
  50%       { filter: drop-shadow(0 0 9px rgba(247,147,26,0.52)); }
}

/* Nav links — premium restrained */
.nav-link {
  color: rgba(255,255,255,0.48) !important;
  font-weight: 500 !important;
  letter-spacing: 0.015em !important;
}
.nav-link:hover {
  color: rgba(255,220,140,0.92) !important;
  background: rgba(247,147,26,0.07) !important;
  border-color: rgba(247,147,26,0.18) !important;
  text-shadow: none !important;
}

/* ── 4. HERO — refine glow ── */
.hero-glow {
  width: 500px !important;
  height: 320px !important;
  background: radial-gradient(ellipse, rgba(247,147,26,0.10) 0%, transparent 68%) !important;
  filter: blur(60px) !important;
}

/* Hero badge — premium pill */
.hero-badge {
  background: rgba(14,10,4,0.85) !important;
  border: 1px solid rgba(247,147,26,0.32) !important;
  color: var(--gold-300) !important;
  letter-spacing: 0.04em !important;
}

/* CTA buttons — unified gold system */
.btn-primary {
  background: linear-gradient(135deg, #e8820a 0%, #f7931a 50%, #ffa535 100%) !important;
  border: none !important;
  color: #0d0a04 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 2px 16px rgba(247,147,26,0.25) !important;
  transition: all 240ms cubic-bezier(0.16,1,0.3,1) !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f7931a 0%, #ffaa3a 100%) !important;
  box-shadow: 0 4px 22px rgba(247,147,26,0.38) !important;
  transform: translateY(-1px) !important;
}

.btn-outline {
  border-color: rgba(247,147,26,0.28) !important;
  color: rgba(255,220,160,0.78) !important;
  background: rgba(247,147,26,0.04) !important;
}
.btn-outline:hover {
  border-color: rgba(247,147,26,0.55) !important;
  color: var(--gold-200) !important;
  background: rgba(247,147,26,0.09) !important;
}

/* Hero stats box */
.hero-stats-fomo {
  border: 1px solid rgba(247,147,26,0.22) !important;
  background: rgba(12,8,2,0.75) !important;
  animation: fomoRing 4s ease-in-out infinite !important;
}
@keyframes fomoRing {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(247,147,26,0),
      0 0 24px rgba(247,147,26,0.07),
      0 12px 48px rgba(0,0,0,0.55);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(247,147,26,0.10),
      0 0 40px rgba(247,147,26,0.15),
      0 12px 48px rgba(0,0,0,0.55);
  }
}

/* Commission counter glow — disabled (replaced by static snapshot) */
#commissionCounter.snapshot-value {
  animation: none !important;
  text-shadow: none !important;
  filter: none !important;
}
@keyframes greenGlowRefined {
  0%, 100% {
    text-shadow: 0 0 14px rgba(74,222,128,0.35), 0 0 32px rgba(74,222,128,0.15);
    filter: drop-shadow(0 0 10px rgba(74,222,128,0.38));
  }
  50% {
    text-shadow: 0 0 22px rgba(74,222,128,0.55), 0 0 48px rgba(74,222,128,0.25);
    filter: drop-shadow(0 0 18px rgba(74,222,128,0.55));
  }
}

/* ── 5. SECTIONS — unified spacing & backgrounds ── */
.section { position: relative; }
.section-alt { background: rgba(10,7,2,0.6) !important; }

/* Section tag — consistent across all sections */
.section-tag,
.dan-tag,
.dq-tag,
#guide .section-tag {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  padding: 4px 14px !important;
  border-radius: 100px !important;
  background: rgba(247,147,26,0.08) !important;
  border: 1px solid rgba(247,147,26,0.32) !important;
  color: rgba(251,191,36,0.88) !important;
  text-shadow: none !important;
  animation: none !important;
}

/* Section title gradient — softer, more elegant */
.section-title,
#guide .section-title,
.dan-title,
.dq-title,
.steps-title {
  background: linear-gradient(135deg, #fff 0%, #ffe8b8 55%, #f7a832 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: none !important;
  animation: none !important;
}

/* ── 6. CARDS — unified premium dark glass ── */

/* Explainer cards */
.explainer-card,
.ec-blue, .ec-green, .ec-gold {
  background: linear-gradient(155deg, rgba(22,14,4,0.78) 0%, rgba(10,7,2,0.88) 100%) !important;
  border-color: rgba(247,147,26,0.22) !important;
  animation: none !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4) !important;
  transition:
    transform 260ms cubic-bezier(0.16,1,0.3,1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    opacity 0.6s ease !important;
}
.explainer-card:hover,
.ec-blue:hover, .ec-green:hover, .ec-gold:hover {
  border-color: rgba(247,147,26,0.48) !important;
  box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 0 1px rgba(247,147,26,0.18) !important;
  transform: translateY(-3px) !important;
}
.ec-blue .ec-icon-wrap,
.ec-green .ec-icon-wrap,
.ec-gold .ec-icon-wrap {
  background: rgba(247,147,26,0.10) !important;
  box-shadow: none !important;
  filter: none !important;
  border: 1px solid rgba(247,147,26,0.22) !important;
}
.ec-blue h3, .ec-green h3, .ec-gold h3 { color: var(--gold-200) !important; }

/* Steps container */
.steps-container {
  background: linear-gradient(160deg, rgba(20,12,2,0.82) 0%, rgba(10,6,1,0.90) 100%) !important;
  border: 1px solid rgba(247,147,26,0.22) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
}

/* Step tabs */
.step-tab.active {
  background: linear-gradient(135deg, #e8820a, #f7931a) !important;
  animation: none !important;
  box-shadow: 0 2px 14px rgba(247,147,26,0.3) !important;
  transform: scale(1.12) !important;
}
.step-number-big {
  background: linear-gradient(135deg, #e0750a, #f7931a) !important;
  animation: stepNumPop 0.7s cubic-bezier(0.22,1,0.36,1) both !important;
  box-shadow: 0 2px 12px rgba(247,147,26,0.28) !important;
}

/* Compare cards */
.compare-card {
  background: linear-gradient(155deg, rgba(22,14,4,0.8) 0%, rgba(10,7,2,0.90) 100%) !important;
  border-color: rgba(247,147,26,0.20) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.38) !important;
  transition: all 240ms cubic-bezier(0.16,1,0.3,1) !important;
}
.compare-card:hover {
  border-color: rgba(247,147,26,0.45) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(247,147,26,0.15) !important;
  transform: translateY(-3px) !important;
}

/* DA Network intro cards */
.dan-intro-card {
  background: linear-gradient(155deg, rgba(20,12,2,0.78) 0%, rgba(10,6,1,0.88) 100%) !important;
  border-color: rgba(247,147,26,0.20) !important;
  animation: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.38) !important;
  transition: transform 260ms cubic-bezier(0.16,1,0.3,1), border-color 260ms ease, box-shadow 260ms ease !important;
}
.dan-intro-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(247,147,26,0.48) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}

/* Leaderboard */
.dan-leaderboard {
  background: linear-gradient(160deg, rgba(16,10,2,0.88) 0%, rgba(8,5,1,0.94) 100%) !important;
  border-color: rgba(247,147,26,0.22) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
}

/* FAQ */
.faq-item {
  background: linear-gradient(155deg, rgba(18,12,3,0.80) 0%, rgba(10,7,2,0.90) 100%) !important;
  border-color: rgba(247,147,26,0.16) !important;
  transition: border-color 240ms ease !important;
}
.faq-item.open { border-color: rgba(247,147,26,0.42) !important; }
.faq-item:not(.open):hover { border-color: rgba(247,147,26,0.30) !important; }

/* Contact cards */
.lh-card {
  background: linear-gradient(155deg, rgba(20,12,2,0.82) 0%, rgba(10,7,2,0.92) 100%) !important;
  border-color: rgba(247,147,26,0.18) !important;
  transition: transform 240ms cubic-bezier(0.16,1,0.3,1), border-color 240ms ease, box-shadow 240ms ease !important;
}
.lh-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(247,147,26,0.44) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.48), 0 0 0 1px rgba(247,147,26,0.12) !important;
}

/* ── 7. DQ SECTION — unify to gold (remove blue/purple) ── */
.dq-card {
  background: linear-gradient(160deg, rgba(20,12,2,0.82) 0%, rgba(10,6,1,0.92) 100%) !important;
  border-color: rgba(247,147,26,0.20) !important;
  animation: none !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.42) !important;
  transition: transform 280ms cubic-bezier(0.16,1,0.3,1), border-color 280ms ease, box-shadow 280ms ease !important;
}
.dq-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(247,147,26,0.50) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(247,147,26,0.18) !important;
}
/* Unify blue & purple cards to gold tone */
.dq-card-blue,
.dq-card-purple {
  background: linear-gradient(160deg, rgba(20,12,2,0.82) 0%, rgba(10,6,1,0.92) 100%) !important;
  border-color: rgba(247,147,26,0.20) !important;
  animation: none !important;
}
.dq-card-blue:hover,
.dq-card-purple:hover {
  border-color: rgba(247,147,26,0.50) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(247,147,26,0.18) !important;
}
/* Unify glow blobs */
.dq-glow-blue,
.dq-glow-purple {
  background: radial-gradient(circle, rgba(247,147,26,0.18), transparent) !important;
  opacity: 0.25 !important;
}
/* Unified CTA text color */
.dq-card-blue:hover  .dq-card-cta,
.dq-card-purple:hover .dq-card-cta { color: var(--gold-200) !important; }

/* Modal borders — unify */
.dq-modal-blue,
.dq-modal-purple {
  border-color: rgba(247,147,26,0.25) !important;
}
.dq-micon-blue,
.dq-micon-purple {
  background: rgba(247,147,26,0.12) !important;
  border-color: rgba(247,147,26,0.28) !important;
}
.dq-modal-badge-blue,
.dq-modal-badge-purple {
  color: var(--gold-300) !important;
  background: rgba(247,147,26,0.10) !important;
  border-color: rgba(247,147,26,0.28) !important;
}
.dq-cta-blue,
.dq-cta-purple {
  background: linear-gradient(135deg, #e0750a, #f7931a) !important;
  box-shadow: 0 0 20px rgba(247,147,26,0.3) !important;
}
/* Blur blobs — reduce intensity */
.dq-blur-1 { background: rgba(247,147,26,0.04) !important; }
.dq-blur-2 { background: rgba(247,147,26,0.03) !important; }

/* ── 8. DQ CARD CTAs — gold consistent ── */
.dan-cta-btn,
.dq-cta-btn,
.dq-modal-cta {
  box-shadow: 0 2px 18px rgba(247,147,26,0.28) !important;
}

/* ── 9. FOOTER — premium dark ── */
.footer {
  background: rgba(6,4,1,0.97) !important;
  border-top: 1px solid rgba(247,147,26,0.12) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(247,147,26,0.08) !important;
}

/* ── 10. CALCULATOR ── */
.result-item {
  background: rgba(20,12,2,0.75) !important;
  border: 1px solid rgba(247,147,26,0.12) !important;
  border-radius: 10px !important;
}

/* ── 11. TYPOGRAPHY — premium fintech hierarchy ── */
.hero-title { letter-spacing: -0.02em !important; }
.section-title { letter-spacing: -0.01em !important; }

/* Body text warmth */
.hero-sub,
.section-sub,
.step-main p,
.faq-answer-inner { color: rgba(220,200,170,0.62) !important; }

/* ── 12. SCROLL REVEAL — reduce overshoot ── */
@keyframes stepPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 13. STEP EXAMPLE BOX — refine ── */
.step-example {
  background: rgba(16,10,2,0.72) !important;
  border-left: 2px solid rgba(247,147,26,0.55) !important;
  border-top: 1px solid rgba(247,147,26,0.10) !important;
  border-right: 1px solid rgba(247,147,26,0.06) !important;
  border-bottom: 1px solid rgba(247,147,26,0.06) !important;
  animation: none !important;
}

/* ── 14. SCROLLBAR — premium gold ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: rgba(10,7,2,0.9); }
::-webkit-scrollbar-thumb { background: rgba(247,147,26,0.28); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(247,147,26,0.48); }

/* ── 15. SELECTION — gold ── */
::selection { background: rgba(247,147,26,0.22); color: var(--gold-100); }

/* ── 16. FOCUS RING — premium ── */
:focus-visible { outline: 1.5px solid rgba(247,147,26,0.55) !important; outline-offset: 3px !important; }

/* ── 17. MODAL overlays ── */
.stat-modal {
  background: rgba(10,7,2,0.97) !important;
  border-color: rgba(247,147,26,0.18) !important;
  box-shadow: 0 0 40px rgba(247,147,26,0.08), 0 24px 64px rgba(0,0,0,0.75) !important;
}
.dq-modal-box {
  background: rgba(10,7,2,0.98) !important;
}

/* ── 18. BORDER SUBTLE DIVIDERS — warmth ── */
.step-nav { border-top-color: rgba(247,147,26,0.10) !important; }
.dan-lb-head { border-bottom-color: rgba(247,147,26,0.12) !important; }
.dq-modal-header { border-bottom-color: rgba(247,147,26,0.08) !important; }
.dq-modal-footer { border-top-color: rgba(247,147,26,0.08) !important; }

/* End Premium Design Refinement */

/* ============================================
   EXCHANGE CARDS — Bước 2: Top 3 Sàn Affiliate
   ============================================ */
.exchange-cards-wrap {
  margin-top: var(--space-6);
}
.exchange-cards-header {
  text-align: center;
  margin-bottom: var(--space-6);
}
.exchange-cards-header h4 {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.exchange-cards-header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.exchange-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) {
  .exchange-cards { grid-template-columns: 1fr; }
}
.exchange-card {
  position: relative;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.exchange-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--exch-color, var(--color-primary));
  opacity: 0.95;
}
.exchange-card:hover {
  transform: translateY(-4px);
  border-color: var(--exch-color, var(--color-primary));
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.exchange-card.rank-1 { --exch-color: #f7931a; }
.exchange-card.rank-2 { --exch-color: #0ea5b7; }
.exchange-card.rank-3 { --exch-color: #7c5cff; }

.exchange-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.exchange-rank {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--exch-color);
  background: color-mix(in srgb, var(--exch-color) 12%, transparent);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}
.exchange-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--exch-color) 14%, transparent);
  color: var(--exch-color);
  border: 1px solid color-mix(in srgb, var(--exch-color) 30%, transparent);
}
.exchange-name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: 0;
}
.exchange-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}
.exchange-stats {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exchange-stats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.45;
}
.exchange-stats li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--exch-color);
  margin-top: 7px;
}
.exchange-why {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  background: var(--color-surface-2);
  border-left: 3px solid var(--exch-color);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  margin: 0;
}
.exchange-commission {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3);
  background: color-mix(in srgb, var(--exch-color) 8%, transparent);
  border-radius: var(--radius-md);
  border: 1px dashed color-mix(in srgb, var(--exch-color) 35%, transparent);
}
.exchange-commission-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.exchange-commission-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--exch-color);
  letter-spacing: -0.01em;
}
.exchange-commission-value .star { font-size: var(--text-base); }
.exchange-bestfor {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.exchange-bestfor strong {
  color: var(--color-text);
  font-weight: 700;
}

/* Strategy tip card */
.exchange-strategy-tip {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--color-primary) 6%, var(--color-surface)),
    var(--color-surface));
  border: 1.5px solid color-mix(in srgb, var(--color-primary) 25%, var(--color-border));
  border-radius: var(--radius-lg);
}
.exchange-strategy-tip h5 {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 var(--space-3) 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.exchange-strategy-tip ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3) 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exchange-strategy-tip li {
  font-size: var(--text-sm);
  color: var(--color-text);
  padding-left: var(--space-4);
  position: relative;
}
.exchange-strategy-tip li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.exchange-strategy-tip p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}
/* End Exchange Cards */


/* ══════════════════════════════════════════════════════════
   TRUST IMPROVEMENTS — SNAPSHOT / PARTNER WINS / VERIFY / QUALITY
   (A++ approach: honest, verifiable, transparent)
   ══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1) NETWORK SNAPSHOT (hero static block)
   ────────────────────────────────────────── */
.snapshot-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  text-align: center;
}
.snapshot-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(247, 147, 26, 0.12);
  border: 1px solid rgba(247, 147, 26, 0.32);
  color: #fbbf24;
}
.snapshot-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 6px;
  padding: 18px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 6px 0 16px;
}
.snapshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.snapshot-clickable {
  cursor: pointer;
  outline: none;
}
.snapshot-clickable:hover,
.snapshot-clickable:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}
.snapshot-clickable:focus-visible {
  box-shadow: 0 0 0 2px rgba(247, 147, 26, 0.45);
}
.snapshot-item-highlight {
  background: linear-gradient(180deg, rgba(247, 147, 26, 0.08), rgba(247, 147, 26, 0.02));
  border: 1px solid rgba(247, 147, 26, 0.18);
}
.snapshot-value {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.snapshot-value-accent {
  background: linear-gradient(135deg, #fbbf24, #f7931a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.snapshot-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.3;
  max-width: 14ch;
}
.snapshot-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0;
}
.snapshot-foot {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.snapshot-foot-icon {
  flex-shrink: 0;
  color: #4ade80;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 1px;
}
.snapshot-foot-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px dashed rgba(251, 191, 36, 0.4);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.snapshot-foot-link:hover {
  color: #fde68a;
  border-bottom-color: rgba(253, 230, 138, 0.8);
}

@media (max-width: 640px) {
  .snapshot-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .snapshot-divider {
    height: 1px;
    width: 60%;
    margin: 0 auto;
  }
  .snapshot-label { max-width: 100%; }
}

/* ──────────────────────────────────────────
   2) RECENT PARTNER WINS (replaces fake leaderboard)
   ────────────────────────────────────────── */
.partner-wins {
  margin-top: var(--space-12, 48px);
  padding-top: var(--space-8, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.partner-wins-header {
  text-align: center;
  margin-bottom: var(--space-8, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partner-wins-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.32);
  color: #4ade80;
}
.partner-wins-title {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  margin: 0;
  color: var(--color-text, #fff);
  letter-spacing: -0.01em;
}
.partner-wins-sub {
  font-size: 0.95rem;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.6));
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}
.partner-wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
/* 4th & 5th cards — center them on second row (3+2 layout) */
.partner-wins-grid > .win-card:nth-child(4) {
  grid-column: 1 / span 1;
  justify-self: end;
  max-width: calc((100vw - 80px) / 3);
  width: 100%;
}
.partner-wins-grid > .win-card:nth-child(5) {
  grid-column: 2 / span 2;
  justify-self: start;
  max-width: calc((100vw - 80px) / 3);
  width: 100%;
}
@media (min-width: 901px) {
  /* Use simpler centering with 6-col virtual grid */
  .partner-wins-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .partner-wins-grid > .win-card:nth-child(1) { grid-column: 1 / span 2; max-width: none; }
  .partner-wins-grid > .win-card:nth-child(2) { grid-column: 3 / span 2; max-width: none; }
  .partner-wins-grid > .win-card:nth-child(3) { grid-column: 5 / span 2; max-width: none; }
  .partner-wins-grid > .win-card:nth-child(4) {
    grid-column: 2 / span 2;
    justify-self: stretch;
    max-width: none;
  }
  .partner-wins-grid > .win-card:nth-child(5) {
    grid-column: 4 / span 2;
    justify-self: stretch;
    max-width: none;
  }
}
.partner-wins-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.55;
  margin: 8px auto 0;
  max-width: 64ch;
}
.partner-wins-note a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(251, 191, 36, 0.4);
}
.partner-wins-note a:hover { color: #fde68a; }

@media (max-width: 900px) {
  .partner-wins-grid { grid-template-columns: 1fr; }
}

/* Win card */
.win-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.win-card:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 147, 26, 0.28);
  background: rgba(255, 255, 255, 0.04);
}
.win-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.win-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.win-identity {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.win-identity strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.win-identity small {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.win-verify {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: help;
}
.win-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(247, 147, 26, 0.35);
  font-weight: 400;
}
.win-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.win-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.win-meta dt {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.win-meta dd {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.3;
}

/* ──────────────────────────────────────────
   3) VERIFICATION BLOCK
   ────────────────────────────────────────── */
.verify-block {
  margin-top: var(--space-12, 48px);
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.06), rgba(96, 165, 250, 0.01));
  border: 1px solid rgba(96, 165, 250, 0.18);
  scroll-margin-top: 80px;
}
.verify-header {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.38);
  color: #93c5fd;
}
.verify-title {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  margin: 0;
  color: var(--color-text, #fff);
  letter-spacing: -0.01em;
}
.verify-sub {
  font-size: 0.92rem;
  color: var(--color-text-muted, rgba(255, 255, 255, 0.6));
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.55;
}
.verify-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.verify-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.verify-step:hover {
  border-color: rgba(96, 165, 250, 0.32);
  transform: translateY(-2px);
}
.verify-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}
.verify-step h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.verify-step p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.verify-step p strong {
  color: #fff;
  font-weight: 700;
}
.verify-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  text-align: center;
}
.verify-cta-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 60ch;
  line-height: 1.5;
}
.verify-cta-btn {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .verify-grid { grid-template-columns: 1fr; }
  .verify-block { padding: 24px 18px; }
}

/* ──────────────────────────────────────────
   4) QUALITY GATE — replaces "Chỉ còn 12 slot" FOMO
   ────────────────────────────────────────── */
.dq-badge-quality {
  background: rgba(74, 222, 128, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
}
.dq-modal-alert-quality {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.28);
  color: #86efac;
}

/* Mobile tweak for win meta */
@media (max-width: 480px) {
  .win-meta { grid-template-columns: 1fr; gap: 6px; }
  .win-meta > div {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

/* End Trust Improvements */


/* ══════════════════════════════════════════════════════════
   PROOF GALLERY — Hoa Hồng Thực Tế (commission screenshots)
   ══════════════════════════════════════════════════════════ */
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin: 24px 0 16px;
}
.proof-item {
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.proof-item:hover,
.proof-item:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(247, 147, 26, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}
.proof-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
  overflow: hidden;
}
.proof-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.95) saturate(1.05);
}
.proof-item:hover .proof-thumb img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}
.proof-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.proof-item:hover .proof-zoom,
.proof-item:focus-visible .proof-zoom {
  opacity: 1;
  transform: scale(1);
}
.proof-caption {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-exchange {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.proof-exchange-binance {
  background: rgba(247, 147, 26, 0.14);
  border: 1px solid rgba(247, 147, 26, 0.4);
  color: #fbbf24;
}
.proof-exchange-ourbit {
  background: rgba(14, 165, 183, 0.14);
  border: 1px solid rgba(14, 165, 183, 0.4);
  color: #22d3ee;
}
.proof-exchange-bingx {
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid rgba(124, 92, 255, 0.4);
  color: #a78bfa;
}
.proof-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.proof-period {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.proof-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  line-height: 1.55;
  margin: 12px auto 0;
  max-width: 72ch;
  padding: 0 8px;
}

/* Lightbox */
.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  animation: proofFadeIn 0.22s ease;
}
.proof-lightbox.is-open {
  display: flex;
}
@keyframes proofFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.proof-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}
.proof-lightbox-close,
.proof-lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.proof-lightbox-close:hover,
.proof-lightbox-nav:hover {
  background: rgba(247, 147, 26, 0.3);
  transform: scale(1.05);
}
.proof-lightbox-close {
  top: 20px;
  right: 20px;
}
.proof-lightbox-prev { left: 16px; }
.proof-lightbox-next { right: 16px; }
.proof-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

@media (max-width: 640px) {
  .proof-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .proof-caption { padding: 10px 10px 12px; }
  .proof-amount { font-size: 1.15rem; }
  .proof-period { font-size: 0.7rem; }
  .proof-lightbox { padding: 16px 12px; }
  .proof-lightbox-nav { width: 38px; height: 38px; font-size: 1.3rem; }
  .proof-lightbox-prev { left: 6px; }
  .proof-lightbox-next { right: 6px; }
}
@media (max-width: 380px) {
  .proof-gallery { grid-template-columns: 1fr; }
}
/* End Proof Gallery */


/* ──────────────────────────────────────────
   PARTNER WINS — Additional styles for v2 (5 partners)
   .win-commission (gold accent) + .win-verified-tag (footer badge)
   ────────────────────────────────────────── */

/* Commission value — gold accent, larger weight */
.win-meta dd.win-commission {
  color: #fbbf24;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.18);
}

/* "Đã xác minh bởi DA Network" tag — footer of each card */
.win-verified-tag {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(74, 222, 128, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(74, 222, 128, 0.85);
  letter-spacing: 0.01em;
  width: 100%;
  justify-content: flex-start;
}
.win-verified-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(74, 222, 128, 0.4));
}

/* Make sure win-card is a flex column so verified-tag pins to bottom nicely */
.win-card {
  justify-content: flex-start;
}

/* Tighter meta dt/dd for 5-card layout */
.win-meta dd { font-size: 0.84rem; }

@media (max-width: 900px) {
  /* Reset grid behaviour on mobile */
  .partner-wins-grid > .win-card:nth-child(n) {
    grid-column: auto !important;
    justify-self: stretch !important;
    max-width: none !important;
  }
}
/* End Partner Wins v2 */
