/* ============================================================
   DOGEFAUCET PRO — style.css
   Premium Dark Theme | Gold Accents | Fully Responsive
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Gold Palette */
  --gold-100: #fff9e6;
  --gold-300: #ffd970;
  --gold-400: #f5c518;
  --gold-500: #c8a84b;
  --gold-600: #a07830;
  --gold-700: #7a5820;

  /* Dark Palette */
  --dark-900: #080b12;
  --dark-800: #0d1117;
  --dark-750: #111827;
  --dark-700: #161d2b;
  --dark-600: #1e2a3a;
  --dark-500: #243044;
  --dark-400: #2e3d52;
  --dark-300: #3a4d66;

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #c8a84b;

  /* Accent */
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --accent-blue: #3b82f6;

  /* Effects */
  --glow-gold: 0 0 30px rgba(200, 168, 75, 0.4), 0 0 60px rgba(200, 168, 75, 0.15);
  --glow-gold-sm: 0 0 15px rgba(200, 168, 75, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Fonts */
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul { list-style: none; }

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 1;
}

/* ===== GOLD GRADIENT TEXT ===== */
.gold-gradient {
  background: linear-gradient(135deg, #ffd970 0%, #c8a84b 40%, #f5c518 70%, #ffd970 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== TICKER BAR ===== */
.ticker-bar {
  background: linear-gradient(90deg, var(--dark-700), var(--dark-600));
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  padding-left: 100%;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker-item strong { color: var(--gold-400); }
.tick-up { color: var(--accent-green); font-weight: 600; }
.tick-down { color: var(--accent-red); font-weight: 600; }
.ticker-sep { color: var(--dark-300); }

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 38px;
  z-index: 999;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 11, 18, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark-900);
  box-shadow: var(--glow-gold-sm);
  transition: var(--transition-bounce);
}

.nav-logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: var(--glow-gold);
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.15em;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(200, 168, 75, 0.1);
  color: var(--gold-400);
}

.btn-claim-nav {
  padding: 0.55rem 1.3rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--dark-900);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition-bounce);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(200, 168, 75, 0.3);
}

.btn-claim-nav:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--glow-gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #ffd970 0%, var(--gold-500) 50%, #f5c518 100%);
  background-size: 200% auto;
  color: var(--dark-900);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition-bounce);
  box-shadow: 0 6px 25px rgba(200, 168, 75, 0.35);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--glow-gold), 0 8px 30px rgba(200, 168, 75, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border: 1.5px solid rgba(200, 168, 75, 0.35);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(200, 168, 75, 0.07);
  transform: translateY(-2px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
  0% { left: -100%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* ===== SECTION COMMONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1.2rem;
}

.badge-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; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.3rem;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-subtitle strong { color: var(--gold-400); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.hstat { text-align: left; }

.hstat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-400);
  font-family: var(--font-mono);
}

.hstat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(200, 168, 75, 0.2);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
}

/* ===== COIN VISUAL ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coin-wrapper {
  position: relative;
  width: clamp(280px, 42vw, 480px);
  height: clamp(280px, 42vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, 0.15);
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(200, 168, 75, 0.3);
  animation-delay: 0s;
}

.ring-2 {
  width: 115%;
  height: 115%;
  border-color: rgba(200, 168, 75, 0.15);
  animation-delay: 0.5s;
}

.ring-3 {
  width: 130%;
  height: 130%;
  border-color: rgba(200, 168, 75, 0.08);
  animation-delay: 1s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.5; }
}

.hero-coin {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: 50%;
  animation: coin-float 6s ease-in-out infinite;
  box-shadow:
    0 0 40px rgba(200, 168, 75, 0.5),
    0 0 80px rgba(200, 168, 75, 0.2),
    0 30px 60px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 20px rgba(200,168,75,0.6));
}

@keyframes coin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(2deg); }
  66% { transform: translateY(-8px) rotate(-1.5deg); }
}

.floating-labels {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-chip {
  position: absolute;
  padding: 0.4rem 0.9rem;
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid rgba(200, 168, 75, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.chip-1 {
  top: 10%;
  right: -5%;
  animation: float-chip-1 4s ease-in-out infinite;
}

.chip-2 {
  bottom: 15%;
  left: -8%;
  animation: float-chip-2 4.5s ease-in-out infinite 0.5s;
}

.chip-3 {
  bottom: 5%;
  right: 5%;
  animation: float-chip-3 5s ease-in-out infinite 1s;
}

@keyframes float-chip-1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(4px); }
}

@keyframes float-chip-2 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes float-chip-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== PRICE SECTION ===== */
.price-section {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, transparent, rgba(13,17,23,0.5) 50%, transparent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  background: rgba(22, 29, 43, 0.7);
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.price-card:hover {
  border-color: rgba(200, 168, 75, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.price-card-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 168, 75, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.price-card-data { flex: 1; }

.price-card-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.price-card-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-mono);
  margin-bottom: 0.15rem;
}

.price-card-change {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-card-change.up { color: var(--accent-green); }
.price-card-change.down { color: var(--accent-red); }

/* ===== FAUCET SECTION ===== */
.faucet-section {
  padding: 5rem 0;
  position: relative;
}

.faucet-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}

/* ===== FAUCET CARD ===== */
.faucet-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.95), rgba(13,17,23,0.98));
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(200,168,75,0.05);
  position: relative;
  overflow: hidden;
}

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

.faucet-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.faucet-header-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.faucet-coin-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark-900);
  box-shadow: var(--glow-gold-sm);
  animation: coin-spin 8s linear infinite;
}

@keyframes coin-spin {
  0% { box-shadow: var(--glow-gold-sm); }
  50% { box-shadow: var(--glow-gold); }
  100% { box-shadow: var(--glow-gold-sm); }
}

.faucet-header-left h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.faucet-header-left p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.faucet-header-left p strong {
  color: var(--gold-400);
}

.faucet-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
}

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

/* ===== REWARD DISPLAY ===== */
.reward-display {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.reward-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.reward-tier:hover {
  border-color: rgba(200, 168, 75, 0.2);
}

.reward-featured {
  background: linear-gradient(145deg, rgba(200, 168, 75, 0.1), rgba(200, 168, 75, 0.05));
  border-color: rgba(200, 168, 75, 0.3);
  box-shadow: 0 0 20px rgba(200, 168, 75, 0.1);
}

.reward-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  color: var(--dark-900);
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.1em;
}

.reward-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.reward-amount {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-400);
  font-family: var(--font-mono);
}

/* ===== FORM ===== */
.claim-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.input-wrapper {
  display: flex;
  gap: 0;
  position: relative;
}

.form-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-family: var(--font-mono);
  transition: var(--transition);
  outline: none;
}

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

.form-input:focus {
  border-color: var(--gold-500);
  background: rgba(200, 168, 75, 0.05);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.1);
}

.form-input.error {
  border-color: var(--accent-red);
  background: rgba(239, 68, 68, 0.05);
}

.input-paste-btn {
  padding: 0.9rem 1.2rem;
  background: rgba(200, 168, 75, 0.12);
  border: 1.5px solid rgba(200, 168, 75, 0.25);
  border-left: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-500);
  transition: var(--transition);
}

.input-paste-btn:hover {
  background: rgba(200, 168, 75, 0.2);
  color: var(--gold-300);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-error {
  font-size: 0.8rem;
  color: var(--accent-red);
  min-height: 1rem;
}

/* ===== CAPTCHA ===== */
.captcha-box {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.captcha-box:hover {
  border-color: rgba(200, 168, 75, 0.3);
  background: rgba(255,255,255,0.05);
}

.captcha-checkbox-area {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
}

.captcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(200, 200, 200, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  transition: var(--transition);
}

.captcha-checkbox.checked {
  background: #4285f4;
  border-color: #4285f4;
}

.captcha-checkmark {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}

.captcha-checkmark.show { opacity: 1; }

.captcha-label-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.captcha-logo {
  text-align: right;
}

.recaptcha-logo {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(100,116,139,0.8);
  letter-spacing: 0.02em;
}

.recaptcha-sub {
  font-size: 0.55rem;
  color: rgba(100,116,139,0.5);
}

/* ===== TIMER ===== */
.timer-section {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.timer-icon { font-size: 1.4rem; }

.timer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timer-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.timer-countdown {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.timer-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.timer-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), rgba(59,130,246,0.6));
  border-radius: 2px;
  transition: width 1s linear;
}

/* ===== CLAIM BUTTON ===== */
.btn-claim-main {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, #ffd970 0%, var(--gold-500) 50%, #e8a000 100%);
  background-size: 200% auto;
  color: var(--dark-900);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  box-shadow: 0 6px 25px rgba(200, 168, 75, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-claim-main:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--glow-gold), 0 10px 35px rgba(200, 168, 75, 0.45);
  background-position: right center;
}

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

.btn-claim-main:disabled {
  background: rgba(200, 168, 75, 0.3);
  color: rgba(200, 168, 75, 0.5);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(8, 11, 18, 0.3);
  border-top-color: var(--dark-900);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== CLAIM RESULT ===== */
.claim-result {
  margin-top: 1rem;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.08), rgba(22, 29, 43, 0.9));
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  animation: slide-in 0.5s var(--transition-bounce);
}

@keyframes slide-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.result-animation { margin-bottom: 1rem; }

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: bounce-icon 0.6s var(--transition-bounce);
}

@keyframes bounce-icon {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.result-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 0.3rem;
}

.result-amount {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.result-amount strong {
  color: var(--gold-400);
  font-size: 1.3rem;
  font-family: var(--font-mono);
}

.result-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.result-txid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  flex-wrap: wrap;
}

.txid-label {
  color: var(--text-muted);
  font-weight: 600;
}

.txid-value {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  word-break: break-all;
}

/* ===== SIDEBAR CARDS ===== */
.faucet-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.sidebar-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.9), rgba(13,17,23,0.95));
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.4), transparent);
}

.sidebar-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Bonus Card */
.bonus-list { display: flex; flex-direction: column; gap: 0.7rem; }

.bonus-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.bonus-item:hover {
  background: rgba(200, 168, 75, 0.06);
}

.bonus-icon { font-size: 1.1rem; }

.bonus-info { flex: 1; }

.bonus-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.bonus-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.bonus-value {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold-400);
  white-space: nowrap;
}

/* Referral Card */
.referral-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.referral-desc strong { color: var(--gold-400); }

.referral-input-group {
  display: flex;
  margin-bottom: 0.9rem;
}

.referral-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  outline: none;
  min-width: 0;
}

.referral-copy-btn {
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--dark-900);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
}

.referral-copy-btn:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.referral-stats {
  display: flex;
  gap: 1rem;
}

.ref-stat {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}

.ref-stat-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-400);
  font-family: var(--font-mono);
}

.ref-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Mascot */
.mascot-card { padding: 0; overflow: hidden; }

.mascot-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mascot-speech {
  background: linear-gradient(145deg, rgba(200, 168, 75, 0.12), rgba(22, 29, 43, 0.9));
  padding: 1rem;
  text-align: center;
  border-top: 1px solid rgba(200, 168, 75, 0.15);
}

.mascot-speech p {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(22,29,43,0.3) 50%, transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.stat-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.8), rgba(13,17,23,0.9));
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,168,75,0.06), transparent 70%);
  pointer-events: none;
}

.stat-card:hover {
  border-color: rgba(200, 168, 75, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.stat-icon { font-size: 2rem; margin-bottom: 0.7rem; }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-400);
  font-family: var(--font-mono);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.stat-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 2px;
  animation: bar-fill 2s ease-out;
}

@keyframes bar-fill {
  from { width: 0 !important; }
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0.5rem;
}

.step-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.8), rgba(13,17,23,0.9));
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: rgba(200, 168, 75, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.step-connector {
  font-size: 1.5rem;
  color: rgba(200, 168, 75, 0.3);
  padding: 0 0.25rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--dark-900);
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-icon { font-size: 2rem; margin-bottom: 0.9rem; }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

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

.step-link {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== PAYOUTS TABLE ===== */
.payouts-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(22,29,43,0.2) 50%, transparent);
}

.payouts-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.8), rgba(13,17,23,0.9));
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.payouts-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.payouts-table {
  width: 100%;
  border-collapse: collapse;
}

.payouts-table thead {
  background: rgba(200, 168, 75, 0.08);
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
}

.payouts-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.payouts-table td {
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  white-space: nowrap;
}

.payouts-table tr:last-child td { border-bottom: none; }

.payouts-table tr:hover td {
  background: rgba(200, 168, 75, 0.04);
}

.payout-amount { color: var(--gold-400); font-weight: 700; font-family: var(--font-mono); }

.payout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.payout-badge.paid {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.new-row {
  animation: row-appear 0.5s ease-out;
}

@keyframes row-appear {
  from { opacity: 0; transform: translateX(-10px); background: rgba(200,168,75,0.15); }
  to { opacity: 1; transform: translateX(0); background: transparent; }
}

/* ===== LEADERBOARD ===== */
.leaderboard-section {
  padding: 5rem 0;
}

.leaderboard-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.8), rgba(13,17,23,0.9));
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.lb-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(200,168,75,0.07), transparent);
  border-bottom: 1px solid rgba(200,168,75,0.1);
}

.lb-podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 180px;
}

.lb-crown { font-size: 1.8rem; animation: bounce-icon 1s var(--transition-bounce) infinite alternate; }

.lb-avatar { font-size: 2.5rem; }

.lb-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  text-align: center;
}

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

.lb-pos-block {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark-900);
  padding: 0.8rem;
}

.lb-podium-item.first .lb-pos-block { background: linear-gradient(135deg, #ffd970, var(--gold-500)); height: 60px; }
.lb-podium-item.second .lb-pos-block { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); height: 45px; }
.lb-podium-item.third .lb-pos-block { background: linear-gradient(135deg, #cd7f32, #a06428); height: 35px; }

.lb-table-wrap { overflow-x: auto; }

.lb-table {
  width: 100%;
  border-collapse: collapse;
}

.lb-table th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(200, 168, 75, 0.05);
  border-bottom: 1px solid rgba(200, 168, 75, 0.1);
}

.lb-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lb-table tr:last-child td { border-bottom: none; }

.lb-rank {
  font-weight: 900;
  color: var(--gold-400);
  font-family: var(--font-mono);
}

.lb-addr { font-family: var(--font-mono); color: var(--text-secondary); }

.lb-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
}

.badge-whale { background: rgba(200,168,75,0.15); color: var(--gold-400); border: 1px solid rgba(200,168,75,0.25); }
.badge-shark { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.badge-fish { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(22,29,43,0.2) 50%, transparent);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }

.faq-item {
  background: rgba(22,29,43,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(200, 168, 75, 0.2);
}

.faq-item.open {
  border-color: rgba(200, 168, 75, 0.25);
  background: rgba(200, 168, 75, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-arrow {
  color: var(--gold-500);
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.3rem 1.1rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: faq-open 0.3s ease;
}

.faq-answer.show { display: block; }

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ Sidebar */
.faq-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.faq-sidebar-card {
  background: linear-gradient(145deg, rgba(22,29,43,0.8), rgba(13,17,23,0.9));
  border: 1px solid rgba(200, 168, 75, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.faq-sidebar-icon { font-size: 2rem; margin-bottom: 0.6rem; }

.faq-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-sidebar-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--dark-900);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-support:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.tips-list { text-align: left; }

.tips-list li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.tips-list li:last-child { border-bottom: none; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(22,29,43,0.9) 50%, rgba(200,168,75,0.08) 100%);
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,168,75,0.15), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.cta-btn {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.cta-visual {
  flex-shrink: 0;
}

.cta-coin {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd970, var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark-900);
  box-shadow: var(--glow-gold);
  animation: coin-float 5s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-800);
  border-top: 1px solid rgba(200, 168, 75, 0.12);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.3);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-status-items { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.2rem; }

.footer-status-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.fstatus-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fstatus-dot.green { background: var(--accent-green); animation: blink 2s infinite; }
.fstatus-dot.yellow { background: #f59e0b; animation: blink 1.5s infinite; }
.fstatus-dot.red { background: var(--accent-red); }

.powered-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.powered-badge strong { color: var(--gold-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  color: rgba(100,116,139,0.5) !important;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.3rem;
  background: rgba(22,29,43,0.97);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  animation: toast-in 0.4s var(--transition-bounce);
  pointer-events: auto;
  max-width: 320px;
  backdrop-filter: blur(15px);
}

.toast.success { border-color: rgba(34,197,94,0.3); }
.toast.error { border-color: rgba(239,68,68,0.3); }

@keyframes toast-in {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toast-out {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--dark-900);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(200,168,75,0.35);
  transition: var(--transition-bounce);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--glow-gold);
}

/* ===== RESULT COINS ANIMATION ===== */
@keyframes coin-explode {
  0% { transform: translate(0,0) scale(0); opacity: 1; }
  100% { transform: var(--tx) scale(1); opacity: 0; }
}

.coin-particle {
  position: absolute;
  font-size: 1.5rem;
  animation: coin-explode 1s ease-out forwards;
  pointer-events: none;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }

  .faucet-layout {
    grid-template-columns: 1fr;
  }

  .faucet-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mascot-card { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .step-connector { display: none; }

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

  .faq-grid { grid-template-columns: 1fr; }
  .faq-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(38px + 65px);
    left: 0;
    right: 0;
    background: rgba(8,11,18,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,168,75,0.15);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    z-index: 998;
  }

  .nav-links.open { display: flex; }

  .nav-link {
    padding: 0.9rem 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
  }

  .btn-claim-nav {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .coin-wrapper {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .trust-badges { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-badge { margin: 0 auto 1.2rem; }

  .price-grid { grid-template-columns: repeat(2, 1fr); }

  .faucet-sidebar {
    grid-template-columns: 1fr;
  }

  .reward-display { grid-template-columns: 1fr; gap: 0.6rem; }
  .reward-featured-badge { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .cta-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .faq-sidebar { grid-template-columns: 1fr; }

  .lb-podium { gap: 0.5rem; }

  .float-chip { display: none; }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }

  .faucet-card { padding: 1.4rem; }

  .hero { padding: 3rem 0; min-height: auto; }

  .hero-title { font-size: 1.9rem; }

  .btn-primary, .btn-secondary { font-size: 0.9rem; padding: 0.8rem 1.5rem; }

  .section-title { font-size: 1.7rem; }

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

  .payouts-table th, .payouts-table td { padding: 0.7rem 0.8rem; font-size: 0.78rem; }

  .lb-table th, .lb-table td { padding: 0.7rem 0.8rem; font-size: 0.78rem; }

  .cta-card { padding: 1.5rem; }

  .ticker-inner { font-size: 0.75rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: rgba(200,168,75,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200,168,75,0.5); }

/* ===== SELECTION ===== */
::selection { background: rgba(200,168,75,0.3); color: var(--text-primary); }

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--gold-400);
  color: var(--dark-900);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 10000;
}

.skip-link:focus { top: 1rem; }
