/* ═══════════════════════════════════════════════════════════
   BITFAUCET PRO — Premium CSS Design System
   ═══════════════════════════════════════════════════════════ */

/* ══════════ CSS CUSTOM PROPERTIES ══════════ */
:root {
  /* Colors */
  --clr-bg:          #080810;
  --clr-bg2:         #0e0e1a;
  --clr-bg3:         #12121f;
  --clr-surface:     #16162a;
  --clr-surface2:    #1e1e35;
  --clr-border:      rgba(255,165,0,0.12);
  --clr-border2:     rgba(255,255,255,0.07);

  /* Bitcoin gold palette */
  --gold-100:        #fff8e7;
  --gold-300:        #ffd166;
  --gold-400:        #f7b731;
  --gold-500:        #f5a623;
  --gold-600:        #e8941a;
  --gold-700:        #c97b10;

  /* Accent */
  --accent-orange:   #f5a623;
  --accent-glow:     rgba(245, 166, 35, 0.35);
  --accent-blue:     #4a90e2;
  --accent-purple:   #7c3aed;
  --accent-green:    #22c55e;
  --accent-red:      #ef4444;

  /* Text */
  --text-primary:    #f1f0f7;
  --text-secondary:  #a8a4c5;
  --text-muted:      #6b6885;
  --text-gold:       var(--gold-400);

  /* Typography */
  --font-main:       'Outfit', system-ui, sans-serif;
  --font-mono:       'JetBrains Mono', monospace;

  /* Sizing */
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       32px;
  --radius-full:     9999px;

  /* Transitions */
  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:        150ms;
  --dur-base:        250ms;
  --dur-slow:        400ms;

  /* Shadows */
  --shadow-gold:     0 0 40px rgba(245,166,35,0.25);
  --shadow-card:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:     0 0 80px rgba(245,166,35,0.15);

  /* Navbar height */
  --nav-h:           64px;
  --ticker-h:        36px;
  --header-h:        calc(var(--nav-h) + var(--ticker-h));
}

/* ══════════ RESET ══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ══════════ PARTICLES CANVAS ══════════ */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ══════════ SCROLLBAR ══════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-700); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* ══════════ SELECTION ══════════ */
::selection { background: rgba(245,166,35,0.3); color: var(--gold-100); }

/* ══════════ UTILITIES ══════════ */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 64px);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.inline-link {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-smooth);
}
.inline-link:hover { color: var(--gold-300); }

/* ══════════ BUTTONS ══════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(245,166,35,0.4), 0 0 0 0 rgba(245,166,35,0.4);
  transition: all var(--dur-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-smooth);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245,166,35,0.55), 0 0 60px rgba(245,166,35,0.2);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-smooth);
}
.btn-ghost:hover {
  border-color: rgba(245,166,35,0.5);
  color: var(--gold-400);
  background: rgba(245,166,35,0.06);
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-smooth);
  box-shadow: 0 2px 12px rgba(245,166,35,0.3);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
}

/* ══════════ NAVBAR ══════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
}
.navbar.scrolled {
  background: rgba(8, 8, 16, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 2px 16px rgba(245,166,35,0.4);
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.logo-pro {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-smooth);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
  background: rgba(245,166,35,0.08);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-smooth);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Price Ticker */
.price-ticker {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--clr-border);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  overflow: hidden;
}
.ticker-label { color: var(--text-muted); }
.ticker-price { color: var(--text-primary); font-weight: 700; }
.ticker-change { font-weight: 700; }
.ticker-change.positive { color: var(--accent-green); }
.ticker-change.negative { color: var(--accent-red); }
.ticker-sep { color: var(--clr-border); }
.ticker-sat { color: var(--gold-400); font-weight: 600; }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 64px);
  padding-right: clamp(16px, 5vw, 64px);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,166,35,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(74,144,226,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.floating-coin {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold-500);
  opacity: 0.06;
  animation: floatCoin 12s ease-in-out infinite;
  text-shadow: 0 0 20px var(--gold-500);
}
.coin-1  { top: 15%; left: 5%;  animation-delay: 0s;   animation-duration: 11s; font-size: 2rem; }
.coin-2  { top: 30%; right: 8%; animation-delay: 2s;   animation-duration: 13s; }
.coin-3  { top: 65%; left: 10%; animation-delay: 4s;   animation-duration: 10s; }
.coin-4  { top: 50%; right: 5%; animation-delay: 1.5s; animation-duration: 14s; font-size: 1.5rem; }
.coin-5  { top: 80%; right: 25%;animation-delay: 3s;   animation-duration: 9s;  }

@keyframes floatCoin {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.06; }
  33% { transform: translateY(-20px) rotate(10deg); opacity: 0.1; }
  66% { transform: translateY(10px) rotate(-5deg); opacity: 0.04; }
}

.hero-content { max-width: 640px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  width: fit-content;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.hero-stat strong {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--gold-400);
  display: block;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border2);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.btn-icon { font-size: 1.1rem; }

/* Hero Visual — Coin Showcase */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.coin-showcase {
  position: relative;
  width: clamp(220px, 25vw, 340px);
  height: clamp(220px, 25vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coin-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(245,166,35,0.3) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.coin-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringRotate linear infinite;
}
.ring-1 {
  inset: 0;
  border-color: rgba(245,166,35,0.4);
  animation-duration: 8s;
}
.ring-2 {
  inset: -15px;
  border-color: rgba(245,166,35,0.2);
  border-style: dashed;
  animation-duration: 14s;
  animation-direction: reverse;
}
.ring-3 {
  inset: -35px;
  border-color: rgba(245,166,35,0.1);
  animation-duration: 22s;
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}
.coin-center {
  width: 60%;
  height: 60%;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500), var(--gold-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(0,0,0,0.7);
  font-weight: 900;
  box-shadow:
    0 0 0 4px rgba(245,166,35,0.3),
    0 0 60px rgba(245,166,35,0.5),
    inset 0 4px 20px rgba(255,255,255,0.3);
  animation: coinBounce 4s ease-in-out infinite;
}
@keyframes coinBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════ STATS BAR ══════════ */
.stats-bar {
  background: rgba(255,165,0,0.05);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 0;
  overflow: hidden;
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-icon { font-size: 1.3rem; flex-shrink: 0; }
.stat-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.2;
}
.stat-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════ CLAIM SECTION ══════════ */
.claim-section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  z-index: 1;
}
.claim-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Claim Card */
.claim-card {
  background: linear-gradient(135deg, rgba(22,22,42,0.9), rgba(18,18,32,0.95));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(245,166,35,0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.claim-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.claim-card-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}

/* Timer */
.claim-timer-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.timer-circle {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.timer-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 6;
}
.timer-fill {
  fill: none;
  stroke: url(#timerGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}
.timer-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timer-display {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.timer-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.claim-reward-preview { flex: 1; }
.reward-range { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.reward-amount {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.reward-usd { font-size: 0.85rem; color: var(--text-muted); }

/* Form */
.claim-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.label-icon { font-size: 1.1rem; }
.input-wrap { position: relative; }
.form-input {
  width: 100%;
  padding: 14px 50px 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--clr-border2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-mono);
  transition: all var(--dur-base) var(--ease-smooth);
  outline: none;
}
.form-input::placeholder { color: var(--text-muted); font-family: var(--font-main); }
.form-input:focus {
  border-color: rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.04);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-input.valid { border-color: rgba(34,197,94,0.5); }
.form-input.invalid { border-color: rgba(239,68,68,0.5); }
.input-paste-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all var(--dur-fast);
  opacity: 0.6;
}
.input-paste-btn:hover { opacity: 1; background: rgba(255,255,255,0.08); }
.form-hint { font-size: 0.78rem; color: var(--text-muted); }
.form-error { font-size: 0.8rem; color: var(--accent-red); min-height: 18px; }

/* Captcha */
.captcha-wrap { margin: 4px 0; }
.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1.5px solid var(--clr-border2);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base);
}
.captcha-box.verified { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.04); }
.captcha-check-wrap { display: flex; align-items: center; gap: 12px; }
.captcha-checkbox {
  width: 22px;
  height: 22px;
  accent-color: var(--gold-500);
  cursor: pointer;
}
.captcha-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.captcha-logo { display: flex; align-items: center; gap: 8px; }
.recaptcha-icon { font-size: 1.5rem; }
.recaptcha-text { display: flex; flex-direction: column; }
.recaptcha-text span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}
.recaptcha-text span:last-child {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Claim Button */
.btn-claim {
  position: relative;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: #000;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-smooth);
  box-shadow: 0 4px 30px rgba(245,166,35,0.4);
  letter-spacing: 0.02em;
}
.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(245,166,35,0.6);
}
.btn-claim:active { transform: translateY(0); }
.btn-claim:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.claim-btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 150%; }
}
.claim-btn-icon { font-size: 1.3rem; }

/* Success State */
.claim-success {
  text-align: center;
  padding: 40px 20px;
  animation: successIn 0.5s var(--ease-spring);
}
@keyframes successIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.success-icon { font-size: 4rem; margin-bottom: 16px; animation: bounce 1s var(--ease-spring); }
@keyframes bounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.claim-success h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.success-amount {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.success-sub { color: var(--text-secondary); margin: 8px 0 24px; }
.success-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.success-timer {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-400);
}

/* Claim Side Panel */
.claim-side { display: flex; flex-direction: column; gap: 20px; }
.side-card {
  background: linear-gradient(135deg, rgba(22,22,42,0.9), rgba(18,18,32,0.95));
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.side-card:hover {
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 4px 30px rgba(245,166,35,0.08);
}

/* Jackpot */
.jackpot-card { border-color: rgba(245,166,35,0.2); }
.jackpot-header, .streak-header, .wins-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.jackpot-header h3, .streak-header h3, .wins-header h3 {
  font-size: 1rem;
  font-weight: 700;
}
.jackpot-icon, .streak-icon, .wins-icon { font-size: 1.4rem; }
.jackpot-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.jackpot-sat {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-400);
}
.jackpot-unit { font-size: 0.9rem; color: var(--text-muted); }
.jackpot-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.jackpot-progress {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 8px;
}
.jackpot-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: var(--radius-full);
  transition: width 1s var(--ease-smooth);
  box-shadow: 0 0 8px rgba(245,166,35,0.5);
}
.jackpot-label { font-size: 0.75rem; color: var(--text-muted); }

/* Streak */
.streak-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.streak-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--dur-base);
}
.streak-day span { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); }
.streak-day small { font-size: 0.55rem; color: var(--text-muted); }
.streak-day.active {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
}
.streak-day.active span { color: var(--gold-400); }
.streak-day.current {
  background: rgba(245,166,35,0.2);
  border-color: var(--gold-500);
  box-shadow: 0 0 12px rgba(245,166,35,0.3);
}
.streak-day.current span { color: var(--gold-300); font-size: 0.75rem; }
.streak-day.special {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(124,58,237,0.1));
  border-color: rgba(124,58,237,0.3);
}
.streak-day.special span { color: #a78bfa; }
.streak-desc { font-size: 0.78rem; color: var(--text-muted); }

/* Recent Wins */
.wins-header { justify-content: space-between; }
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  margin-left: auto;
}
.wins-list { display: flex; flex-direction: column; gap: 8px; }
.win-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  animation: slideInRight 0.4s var(--ease-spring);
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.win-addr { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.78rem; }
.win-amount { color: var(--gold-400); font-weight: 700; font-family: var(--font-mono); }
.win-time { color: var(--text-muted); font-size: 0.7rem; }

/* ══════════ HOW IT WORKS ══════════ */
.how-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: linear-gradient(180deg, transparent, rgba(14,14,26,0.5) 50%, transparent);
  position: relative;
  z-index: 1;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  counter-reset: none;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), rgba(245,166,35,0.3), rgba(245,166,35,0.3), transparent);
  pointer-events: none;
}
.step-card {
  background: linear-gradient(135deg, rgba(22,22,42,0.8), rgba(18,18,32,0.9));
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--dur-slow) var(--ease-smooth);
  backdrop-filter: blur(10px);
}
.step-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(245,166,35,0.1);
}
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
}
.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 18px;
  transition: all var(--dur-base);
}
.step-card:hover .step-icon-wrap {
  background: rgba(245,166,35,0.15);
  box-shadow: 0 0 30px rgba(245,166,35,0.2);
}
.step-icon { font-size: 1.8rem; }
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--dur-slow) var(--ease-smooth);
}
.feature-card:hover {
  background: rgba(245,166,35,0.04);
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════ STATS SECTION ══════════ */
.stats-section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  z-index: 1;
}
.stats-hex-bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,17 58,45 30,50 2,45 2,17' fill='none' stroke='rgba(245,166,35,0.04)' stroke-width='1'/%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.metric-card {
  background: linear-gradient(135deg, rgba(22,22,42,0.8), rgba(18,18,32,0.9));
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--dur-slow) var(--ease-smooth);
  backdrop-filter: blur(10px);
}
.metric-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.08);
}
.metric-card.highlight {
  border-color: rgba(245,166,35,0.35);
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(18,18,32,0.95));
  box-shadow: 0 0 40px rgba(245,166,35,0.1);
}
.metric-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.metric-val {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-400);
  display: block;
  margin-bottom: 6px;
}
.metric-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.metric-trend { font-size: 0.75rem; font-weight: 600; }
.metric-trend.positive { color: var(--accent-green); }
.metric-trend.neutral { color: var(--text-muted); }
.metric-trend.negative { color: var(--accent-red); }

/* Chart */
.chart-section {
  background: linear-gradient(135deg, rgba(22,22,42,0.6), rgba(18,18,32,0.8));
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.chart-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-secondary);
}
.chart-wrap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  height: 200px;
}
.chart-bar {
  background: linear-gradient(to top, var(--gold-700), var(--gold-400));
  border-radius: 4px 4px 0 0;
  min-height: 10px;
  transition: all 1s var(--ease-smooth);
  position: relative;
  cursor: pointer;
}
.chart-bar:hover { filter: brightness(1.2); }
.chart-bar::after {
  content: attr(data-val);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--gold-400);
  font-family: var(--font-mono);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.chart-bar:hover::after { opacity: 1; }
.chart-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 10px;
  text-align: center;
}
.chart-labels span { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════ LEADERBOARD ══════════ */
.leaderboard-section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  z-index: 1;
}
.leaderboard-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.tab-btn {
  padding: 10px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-smooth);
}
.tab-btn:hover, .tab-btn.active {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.4);
  color: var(--gold-400);
}
.leaderboard-table-wrap {
  background: linear-gradient(135deg, rgba(22,22,42,0.8), rgba(18,18,32,0.9));
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}
.leaderboard-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--clr-border2);
  background: rgba(0,0,0,0.2);
}
.leaderboard-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--dur-fast);
}
.leaderboard-table tbody tr:hover td { background: rgba(245,166,35,0.04); }
.leaderboard-table tbody tr:last-child td { border-bottom: none; }
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}
.rank-1 { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: #000; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #000; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; }
.rank-other { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.addr-mono { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-secondary); }
.earn-amount { font-family: var(--font-mono); font-weight: 700; color: var(--gold-400); }
.streak-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(245,166,35,0.1);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
}

/* ══════════ REFERRAL SECTION ══════════ */
.referral-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: linear-gradient(180deg, transparent, rgba(245,166,35,0.02) 50%, transparent);
  position: relative;
  z-index: 1;
}
.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.referral-info .section-tag { margin-bottom: 16px; display: inline-flex; }
.referral-info .section-title { text-align: left; margin-bottom: 16px; }
.referral-info .section-desc { text-align: left; max-width: 100%; margin-bottom: 28px; }
.referral-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.referral-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Referral Calculator */
.referral-card {
  background: linear-gradient(135deg, rgba(22,22,42,0.9), rgba(18,18,32,0.95));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}
.referral-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.calc-group { margin-bottom: 20px; }
.calc-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.calc-slider {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 8px;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245,166,35,0.4);
  transition: box-shadow var(--dur-fast);
}
.calc-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 20px rgba(245,166,35,0.7); }
.calc-val {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 600;
  font-family: var(--font-mono);
}
.calc-result {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.calc-row span { color: var(--text-secondary); }
.calc-row strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-400);
}
.calc-row.highlight-row {
  padding-top: 12px;
  border-top: 1px solid var(--clr-border2);
}
.calc-row.highlight-row strong {
  color: var(--gold-300);
  font-size: 1.1rem;
}

/* ══════════ TRUST SECTION ══════════ */
.trust-section {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--clr-border2);
  border-bottom: 1px solid var(--clr-border2);
  position: relative;
  z-index: 1;
}
.trust-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--dur-base);
}
.trust-logo:hover {
  color: var(--text-primary);
  border-color: rgba(245,166,35,0.2);
  background: rgba(245,166,35,0.04);
}
.trust-logo-icon { font-size: 1.4rem; }
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* ══════════ FAQ SECTION ══════════ */
.faq-section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  z-index: 1;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(22,22,42,0.6);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base);
}
.faq-item.open {
  border-color: rgba(245,166,35,0.25);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: inherit;
  text-align: left;
  transition: all var(--dur-base);
}
.faq-question:hover { color: var(--gold-400); }
.faq-arrow {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform var(--dur-base) var(--ease-smooth);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--gold-400); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.3s var(--ease-smooth);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ CTA */
.faq-cta-inner {
  background: linear-gradient(135deg, rgba(22,22,42,0.9), rgba(18,18,32,0.95));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  backdrop-filter: blur(10px);
}
.faq-cta-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.faq-cta-inner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.faq-cta-inner p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.btn-telegram, .btn-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 10px;
  transition: all var(--dur-base);
  text-decoration: none;
}
.btn-telegram {
  background: linear-gradient(135deg, #229ed9, #1a7fad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,158,217,0.3);
}
.btn-telegram:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,158,217,0.5); }
.btn-discord {
  background: linear-gradient(135deg, #5865f2, #4044bb);
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,0.3);
}
.btn-discord:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(88,101,242,0.5); }
.faq-cta-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.green-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ══════════ NEWSLETTER ══════════ */
.newsletter-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.06), rgba(124,58,237,0.04));
  border-top: 1px solid var(--clr-border);
  position: relative;
  z-index: 1;
}
.newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.newsletter-text p { font-size: 0.95rem; color: var(--text-secondary); }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input-wrap { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--clr-border2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all var(--dur-base);
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus {
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.newsletter-btn {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--dur-base);
}
.newsletter-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,166,35,0.4); }
.newsletter-note { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════ FOOTER ══════════ */
.footer {
  background: rgba(4, 4, 10, 0.95);
  border-top: 1px solid var(--clr-border);
  padding-top: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-socials { display: flex; gap: 8px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--dur-base);
  color: var(--text-muted);
}
.social-link:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
  color: var(--gold-400);
  transform: translateY(-2px);
}
.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--gold-400); }
.footer-contact-col p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.footer-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #229ed9, #1a7fad);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all var(--dur-base);
}
.footer-support-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(34,158,217,0.4); }
.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--accent-green);
  margin-bottom: 12px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.footer-btc-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-btc-price span {
  font-family: var(--font-mono);
  color: var(--gold-400);
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid var(--clr-border2);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-disclaimer { font-size: 0.72rem; opacity: 0.6; }

/* ══════════ BACK TO TOP ══════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  z-index: 900;
  transition: all var(--dur-base) var(--ease-spring);
  cursor: pointer;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(245,166,35,0.6);
}
.back-to-top:not([hidden]) { display: flex; }

/* ══════════ TOAST ══════════ */
.toast-container {
  position: fixed;
  top: calc(var(--header-h) + 16px);
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
  width: 100%;
}
.toast {
  background: rgba(22,22,42,0.98);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  animation: toastIn 0.4s var(--ease-spring);
  border-left: 3px solid var(--gold-500);
}
.toast.success { border-left-color: var(--accent-green); }
.toast.error { border-left-color: var(--accent-red); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%) scale(0.8); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateX(100%) scale(0.8); }
}
.toast.removing { animation: toastOut 0.3s var(--ease-smooth) forwards; }
.toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.toast-content { flex: 1; min-width: 0; }
.toast-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.toast-msg { font-size: 0.82rem; color: var(--text-secondary); }
.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  margin-top: 2px;
  transition: color var(--dur-fast);
}
.toast-close:hover { color: var(--text-primary); }

/* ══════════ SVG GRADIENT DEFS ══════════ */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ══════════ RESPONSIVE DESIGN ══════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .claim-grid { grid-template-columns: 1fr; }
  .claim-side { grid-template-columns: repeat(3, 1fr); display: grid; }
  .referral-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta { order: -1; }
  .faq-cta-inner { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(8,8,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--clr-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--dur-base) var(--ease-smooth);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-md); }
  .btn-nav { text-align: center; padding: 14px; border-radius: var(--radius-md); margin-top: 8px; }

  .hero-stats { flex-direction: column; width: 100%; gap: 12px; }
  .hero-stat { flex-direction: row; justify-content: space-between; width: 100%; }
  .hero-stat-divider { width: 100%; height: 1px; }

  .claim-side { grid-template-columns: 1fr; display: flex; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .leaderboard-tabs { overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-ticker { gap: 6px; font-size: 0.7rem; flex-wrap: nowrap; overflow: hidden; }
}

@media (max-width: 520px) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 20px); }
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-logos { gap: 12px; }
  .trust-logo { padding: 10px 16px; }
  .newsletter-input-wrap { flex-direction: column; }
  .newsletter-btn { width: 100%; }
  .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .claim-card-header { flex-direction: column; text-align: center; }
  .leaderboard-table th:nth-child(3),
  .leaderboard-table td:nth-child(3) { display: none; }
}

/* ══════════ SCROLL REVEAL ANIMATIONS ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════ ACCESSIBILITY ══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-indicator { display: none; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 3px;
}
