/* ============================================
   LiteFaucet – Premium Litecoin Faucet CSS
   Author: LiteFaucet Team
   ============================================ */

/* ---------- CSS Reset & Variables ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --ltc-blue:       hsl(210, 100%, 56%);
  --ltc-blue-dark:  hsl(210, 100%, 38%);
  --ltc-silver:     hsl(220, 20%, 80%);
  --ltc-cyan:       hsl(190, 100%, 50%);
  --ltc-purple:     hsl(260, 80%, 65%);
  --accent-gold:    hsl(45, 95%, 58%);
  --accent-green:   hsl(145, 80%, 50%);
  --accent-red:     hsl(5, 90%, 60%);

  /* Dark Background Palette */
  --bg-base:        hsl(220, 25%, 6%);
  --bg-surface:     hsl(220, 22%, 10%);
  --bg-elevated:    hsl(220, 20%, 14%);
  --bg-card:        hsl(220, 18%, 17%);
  --bg-glass:       hsla(220, 30%, 20%, 0.55);
  --border-subtle:  hsla(220, 30%, 60%, 0.12);
  --border-glow:    hsla(210, 100%, 56%, 0.35);

  /* Text */
  --text-primary:   hsl(220, 20%, 95%);
  --text-secondary: hsl(220, 15%, 65%);
  --text-muted:     hsl(220, 10%, 45%);

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, var(--ltc-blue), var(--ltc-purple));
  --grad-hero:      linear-gradient(135deg, hsl(220,25%,6%) 0%, hsl(230,35%,12%) 100%);
  --grad-card:      linear-gradient(145deg, hsla(220,30%,22%,0.8), hsla(220,20%,14%,0.9));
  --grad-btn:       linear-gradient(135deg, hsl(210,100%,52%), hsl(190,100%,45%));
  --grad-gold:      linear-gradient(135deg, hsl(45,95%,60%), hsl(35,90%,50%));

  /* Effects */
  --shadow-card:    0 8px 40px hsla(220, 30%, 3%, 0.6);
  --shadow-glow:    0 0 40px hsla(210, 100%, 56%, 0.2);
  --shadow-btn:     0 4px 20px hsla(210, 100%, 56%, 0.4);

  /* Typography */
  --font-main:      'Outfit', sans-serif;
  --font-mono:      'Space Grotesk', monospace;

  /* Spacing */
  --nav-h:          72px;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  /* Transitions */
  --ease-smooth:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--ltc-blue-dark); border-radius: 3px; }

/* ============================================
   PARTICLES BACKGROUND
============================================ */
#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, hsla(210,100%,50%,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, hsla(260,80%,65%,0.06) 0%, transparent 60%),
    var(--grad-hero);
}

#particles-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 15%, hsla(210,100%,80%,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 35%, hsla(190,100%,70%,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 25%, hsla(260,80%,80%,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 70%, hsla(210,100%,80%,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, hsla(190,100%,70%,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 20%, hsla(260,80%,80%,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 85%, hsla(210,100%,80%,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, hsla(190,100%,70%,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 50%, hsla(260,80%,80%,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 45%, hsla(210,100%,80%,0.3) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%  { opacity: 0.4; }
  50% { opacity: 1; }
  100%{ opacity: 0.4; }
}

/* ============================================
   FLOATING COINS
============================================ */
.floating-coins {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.coin {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 800;
  color: hsla(210, 100%, 60%, 0.15);
  user-select: none;
  animation: floatCoin linear infinite;
}

.coin-1 { left: 5%;  animation-duration: 18s; animation-delay: 0s;    font-size: 2rem; }
.coin-2 { left: 20%; animation-duration: 22s; animation-delay: -6s;   font-size: 1.2rem; }
.coin-3 { left: 55%; animation-duration: 16s; animation-delay: -12s;  font-size: 2.4rem; }
.coin-4 { left: 75%; animation-duration: 20s; animation-delay: -4s;   font-size: 1rem; }
.coin-5 { left: 90%; animation-duration: 24s; animation-delay: -9s;   font-size: 1.8rem; }

@keyframes floatCoin {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   GLASS CARD UTILITY
============================================ */
.glass-card {
  background: var(--grad-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(220, 40%, 60%, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--border-glow);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: hsla(220, 25%, 7%, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-h);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 0 20px hsla(210, 100%, 56%, 0.35);
}

.logo-icon.small {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  border-radius: 8px;
}

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

.logo-text { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}

.nav-btn {
  margin-left: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: var(--grad-btn);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px hsla(210, 100%, 56%, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hamburger:hover { background: var(--border-subtle); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border-subtle);
  background: hsla(220, 25%, 7%, 0.98);
}

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

.mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, background 0.2s;
}

.mobile-link:hover { color: var(--text-primary); background: var(--border-subtle); }

.mobile-btn {
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--grad-btn);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 60px 24px;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: hsla(210, 100%, 56%, 0.12);
  border: 1px solid hsla(210, 100%, 56%, 0.25);
  color: var(--ltc-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

.hero-badge i { font-size: 0.75rem; }

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 hsla(210, 100%, 56%, 0.3); }
  50% { box-shadow: 0 0 0 8px hsla(210, 100%, 56%, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-subtitle strong { color: var(--ltc-cyan); }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 20px 28px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--grad-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px hsla(210, 100%, 56%, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1.5px solid var(--border-glow);
  color: var(--ltc-blue);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: hsla(210, 100%, 56%, 0.1);
  border-color: var(--ltc-blue);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
}

.coin-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(210, 100%, 56%, 0.25) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-coin {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  animation: coinFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px hsla(210, 100%, 40%, 0.4), 0 0 80px hsla(210, 100%, 56%, 0.2);
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.coin-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: ringExpand 3s ease-in-out infinite;
}

.ring-1 {
  width: 290px; height: 290px;
  border-color: hsla(210, 100%, 56%, 0.25);
  animation-delay: 0s;
}
.ring-2 {
  width: 330px; height: 330px;
  border-color: hsla(190, 100%, 50%, 0.15);
  animation-delay: 0.5s;
}
.ring-3 {
  width: 370px; height: 370px;
  border-color: hsla(260, 80%, 65%, 0.1);
  animation-delay: 1s;
}

@keyframes ringExpand {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* Live Price Card */
.live-price-card {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--grad-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 140px;
  z-index: 10;
  animation: cardFloat 4s ease-in-out infinite;
}

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

.price-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.price-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.price-change {
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.price-change.positive { color: var(--accent-green); }
.price-change.negative { color: var(--accent-red); }

/* ============================================
   TICKER BAR
============================================ */
.ticker-bar {
  position: relative;
  z-index: 1;
  background: hsla(210, 100%, 30%, 0.12);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item i { color: var(--ltc-blue); font-size: 0.75rem; }
.ticker-item strong { color: var(--text-primary); font-weight: 600; }
.ticker-item .up { color: var(--accent-green); font-weight: 600; }

/* ============================================
   MAIN CONTENT (CLAIM SECTION)
============================================ */
.main-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px 80px;
}

.content-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ===== CLAIM BOX ===== */
.claim-box {
  padding: 36px;
}

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

.claim-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow-btn);
  flex-shrink: 0;
}

.claim-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.claim-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Reward Display */
.reward-display {
  background: linear-gradient(135deg, hsla(210,100%,56%,0.08), hsla(260,80%,65%,0.06));
  border: 1px solid hsla(210, 100%, 56%, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  text-align: center;
}

.reward-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.reward-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.reward-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: rewardPulse 2s ease-in-out infinite;
}

@keyframes rewardPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.reward-unit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.reward-usd {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 14px;
}

.reward-progress-bar {
  height: 6px;
  background: hsla(220, 20%, 30%, 0.5);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.reward-progress-fill {
  height: 100%;
  width: 65%;
  background: var(--grad-btn);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.reward-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(200%); }
}

.reward-range {
  font-size: 0.75rem;
  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 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  background: hsla(220, 20%, 18%, 0.8);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input::placeholder { color: var(--text-muted); font-size: 0.85rem; }

.form-input:focus {
  border-color: var(--ltc-blue);
  box-shadow: 0 0 0 3px hsla(210, 100%, 56%, 0.15);
}

.paste-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--ltc-blue);
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.paste-btn:hover { background: hsla(210, 100%, 56%, 0.12); }

.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-hint a { color: var(--ltc-blue); text-decoration: underline; }
.form-hint a:hover { color: var(--ltc-cyan); }

/* CAPTCHA */
.captcha-box {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: hsla(220, 20%, 18%, 0.6);
  padding: 14px 16px;
}

.captcha-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.captcha-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.captcha-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid hsla(220, 20%, 50%, 0.5);
  background: hsla(220, 20%, 22%, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.captcha-checkbox.checked {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.captcha-tick {
  font-size: 0.7rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}

.captcha-tick.show { opacity: 1; transform: scale(1); }

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

.rc-logo-icon {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 700;
}

.rc-logo-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Claim Button */
.claim-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-claim {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--grad-btn);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-btn);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s, opacity 0.25s;
}

.btn-claim:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px hsla(210, 100%, 56%, 0.55);
}

.btn-claim:active:not(:disabled) {
  transform: translateY(0);
}

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

.btn-claim-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-ripple {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}

.cooldown-info {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#cooldown-timer {
  color: var(--ltc-cyan);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* Alert Box */
.alert-box {
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.alert-box.show {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.alert-box.success {
  background: hsla(145, 80%, 30%, 0.2);
  border: 1px solid hsla(145, 80%, 50%, 0.3);
  color: hsl(145, 80%, 65%);
}

.alert-box.error {
  background: hsla(5, 90%, 30%, 0.2);
  border: 1px solid hsla(5, 90%, 60%, 0.3);
  color: hsl(5, 90%, 70%);
}

/* ============================================
   SIDEBAR CARDS
============================================ */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.sidebar-card-header i { color: var(--ltc-blue); }

/* Timer Card */
.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.countdown-unit { text-align: center; }

.countdown-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.countdown-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-colon {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ltc-blue);
  line-height: 1;
  margin-bottom: 14px;
  animation: blink 1s step-end infinite;
}

.timer-progress-wrap {
  margin-bottom: 10px;
}

.timer-progress-bar {
  height: 5px;
  background: hsla(220, 20%, 30%, 0.5);
  border-radius: 3px;
  overflow: hidden;
}

.timer-progress-fill {
  height: 100%;
  width: 100%;
  background: var(--grad-primary);
  border-radius: 3px;
  transition: width 1s linear;
}

.timer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Balance Card */
.balance-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.balance-amount {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.balance-unit {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.balance-usd { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.balance-claims { font-size: 0.82rem; color: var(--text-muted); }
.balance-claims strong { color: var(--text-secondary); }

/* Bonus Tiers */
.bonus-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: hsla(220, 20%, 20%, 0.5);
  border: 1px solid var(--border-subtle);
  transition: background 0.2s, border-color 0.2s;
  opacity: 0.6;
}

.bonus-tier.active-tier {
  opacity: 1;
  background: hsla(210, 100%, 56%, 0.1);
  border-color: hsla(210, 100%, 56%, 0.25);
}

.tier-icon { font-size: 1.1rem; }
.tier-label { font-size: 0.85rem; font-weight: 600; flex: 1; }
.tier-multi { font-size: 0.88rem; font-weight: 700; color: var(--ltc-cyan); font-family: var(--font-mono); }
.tier-req { font-size: 0.73rem; color: var(--text-muted); }

/* Referral Card */
.referral-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.referral-desc strong { color: var(--ltc-cyan); }

.referral-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.referral-link-input {
  flex: 1;
  padding: 10px 12px;
  background: hsla(220, 20%, 18%, 0.8);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  outline: none;
  cursor: pointer;
}

.copy-ref-btn {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--grad-btn);
  border: none;
  color: #fff;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.copy-ref-btn:hover { transform: scale(1.05); }

.referral-stats {
  display: flex;
  gap: 16px;
}

.ref-stat {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: hsla(220, 20%, 18%, 0.5);
  border-radius: var(--radius-sm);
}

.ref-stat-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ref-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   SECTION SHARED STYLES
============================================ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-title i { margin-right: 8px; }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   RECENT PAYOUTS
============================================ */
.recent-payouts {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
}

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

.payout-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.payout-table thead {
  background: hsla(220, 25%, 15%, 0.8);
}

.payout-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.payout-table td {
  padding: 13px 20px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  white-space: nowrap;
  font-family: var(--font-mono);
}

.payout-table tr:hover td { background: hsla(220, 20%, 18%, 0.5); }

.payout-table tr.new-row td {
  animation: rowIn 0.5s ease-out;
}

@keyframes rowIn {
  from { opacity: 0; transform: translateX(-10px); background: hsla(210, 100%, 56%, 0.08); }
  to { opacity: 1; transform: translateX(0); }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
  font-family: var(--font-main);
}

.status-badge.confirmed {
  background: hsla(145, 80%, 30%, 0.2);
  color: hsl(145, 80%, 60%);
}

.status-badge.pending {
  background: hsla(45, 90%, 40%, 0.2);
  color: hsl(45, 90%, 65%);
}

.addr-cell {
  color: var(--ltc-blue);
  font-size: 0.83rem;
}

.amount-cell {
  color: var(--accent-green);
  font-weight: 600;
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  background: var(--bg-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.step-card {
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: hsla(210, 100%, 56%, 0.08);
  line-height: 1;
  letter-spacing: -2px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: hsla(210, 100%, 56%, 0.1);
  border: 1px solid hsla(210, 100%, 56%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--ltc-blue);
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.step-card:hover .step-icon {
  background: var(--grad-btn);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-btn);
  transform: scale(1.1) rotate(5deg);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-desc a { color: var(--ltc-blue); }
.step-desc a:hover { text-decoration: underline; }

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}

.feature-item i { color: var(--ltc-blue); }

.feature-item:hover {
  background: hsla(210, 100%, 56%, 0.1);
  border-color: var(--border-glow);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================
   LEADERBOARD
============================================ */
.leaderboard-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
}

.leaderboard-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* Podium */
.leaderboard-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  min-width: 130px;
}

.podium-item:hover { transform: scale(1.03); }

.podium-item.first {
  background: linear-gradient(145deg, hsla(45,95%,55%,0.15), hsla(45,90%,40%,0.08));
  border-color: hsla(45, 95%, 58%, 0.3);
  order: 2;
  padding-top: 36px;
}

.podium-item.second { order: 1; }
.podium-item.third { order: 3; }

.podium-crown {
  position: absolute;
  top: -16px;
  font-size: 1.8rem;
}

.podium-avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsla(220, 20%, 22%, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podium-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--grad-btn);
  color: #fff;
}

.podium-item.first .podium-rank { background: var(--grad-gold); }
.podium-item.second .podium-rank { background: linear-gradient(135deg, #b8c6d4, #8fa0b2); }
.podium-item.third .podium-rank { background: linear-gradient(135deg, #cd7f32, #a05a2c); }

.podium-name {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.podium-amount {
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Leaderboard List */
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.lb-item:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.lb-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, hsla(210, 100%, 56%, 0.07), transparent);
  pointer-events: none;
}

.lb-rank {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.lb-addr {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--ltc-blue);
  flex: 1;
}

.lb-amount {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-gold);
  font-family: var(--font-mono);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  background: var(--bg-surface);
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md) !important;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--ltc-blue); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--ltc-blue);
  transition: transform 0.35s var(--ease-smooth);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer strong { color: var(--text-primary); }

/* ============================================
   FOOTER
============================================ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: hsla(220, 20%, 22%, 0.7);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--grad-btn);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links-list a:hover { color: var(--ltc-blue); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  opacity: 0.7;
  font-style: italic;
}

/* ============================================
   TOAST NOTIFICATIONS
============================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  font-weight: 500;
  max-width: 340px;
  pointer-events: all;
  animation: toastIn 0.4s var(--ease-bounce);
  box-shadow: var(--shadow-card);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.toast.out {
  animation: toastOut 0.3s var(--ease-smooth) forwards;
}

@keyframes toastOut {
  to { opacity: 0; transform: translateX(30px) scale(0.9); }
}

.toast-success {
  background: hsla(145, 80%, 8%, 0.95);
  border-color: hsla(145, 80%, 50%, 0.3);
  color: hsl(145, 80%, 65%);
}

.toast-error {
  background: hsla(5, 80%, 8%, 0.95);
  border-color: hsla(5, 90%, 60%, 0.3);
  color: hsl(5, 90%, 70%);
}

.toast-info {
  background: hsla(210, 80%, 8%, 0.95);
  border-color: hsla(210, 100%, 56%, 0.3);
  color: hsl(210, 100%, 70%);
}

/* ============================================
   CONFETTI CANVAS
============================================ */
#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

/* ============================================
   SCROLL TO TOP
============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-btn);
  border: none;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-btn);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-bounce);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px hsla(210, 100%, 56%, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle { margin: 0 auto 32px; }
  .hero-stats { margin: 0 auto 36px; }

  .hero-cta { justify-content: center; }

  .hero-visual {
    order: -1;
  }

  .coin-wrapper { width: 260px; height: 260px; }
  .hero-coin { width: 210px; height: 210px; }
  .ring-1 { width: 240px; height: 240px; }
  .ring-2 { width: 280px; height: 280px; }
  .ring-3 { width: 310px; height: 310px; }

  .live-price-card { right: auto; left: 50%; transform: translateX(-50%); top: -10px; }

  .content-container {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 50px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 40px 20px 50px;
    min-height: auto;
  }

  .hero-title { letter-spacing: -0.8px; }

  .hero-stats {
    padding: 14px 16px;
    gap: 0;
  }

  .stat-item { padding: 0 14px; }
  .stat-value { font-size: 1.1rem; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .claim-box { padding: 22px; }

  .reward-number { font-size: 2.8rem; }

  .main-content { padding: 40px 16px 60px; }

  .section-header { margin-bottom: 32px; }

  .leaderboard-podium {
    gap: 10px;
    flex-wrap: wrap;
  }

  .podium-item { min-width: 100px; padding: 16px 14px; }
  .podium-item.first { padding-top: 28px; }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 0 30px;
  }

  .footer-brand { grid-column: auto; }

  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .toast { max-width: 100%; }

  .payout-table th, .payout-table td { padding: 10px 14px; }

  .features-grid { gap: 10px; }
  .feature-item { padding: 10px 14px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .stat-divider {
    display: none;
  }

  .countdown-num { font-size: 2.2rem; }
  .balance-amount { font-size: 1.8rem; }

  .leaderboard-podium { flex-direction: column; align-items: center; }
  .podium-item.first { order: 0; }
  .podium-item.second { order: 1; }
  .podium-item.third { order: 2; }
  .podium-item { width: 100%; flex-direction: row; justify-content: flex-start; padding: 14px 16px; }
  .podium-crown { position: static; font-size: 1.2rem; }
}

/* ============================================
   ACCESSIBILITY – Reduced Motion
============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
