/* ========================================================
   CRYPTOBHAI.COM 💎 MASTER DESIGN SYSTEM
   Premium Web3 / Fintech Airdrop Platform
   ======================================================== */

:root {
  --bg-void: #050811;
  --bg-surface: #0A0F1D;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 34, 60, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(56, 189, 248, 0.35);
  
  --primary-cyan: #38BDF8;
  --primary-blue: #2563EB;
  --primary-indigo: #4F46E5;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  --accent-ruby: #EF4444;
  --accent-purple: #8B5CF6;
  
  --text-pure: #FFFFFF;
  --text-high: #F1F5F9;
  --text-mid: #94A3B8;
  --text-dim: #64748B;
  
  --font-brand: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  --container-max: 1240px;
}

/* --- RESET & GLOBAL --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-void);
  color: var(--text-high);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0c1833 0%, #050811 75%);
}

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

button, input, select {
  font-family: inherit;
  outline: none;
}

/* --- AMBIENT GLOW EFFECTS --- */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
}
.top-glow {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(37, 99, 235, 0.08) 60%, transparent 100%);
}
.center-glow {
  top: 900px;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

/* --- NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 17, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.25s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.brand-logo-img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.4));
}
.brand-title {
  color: var(--text-pure);
}
.brand-gem {
  font-size: 16px;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.18s ease;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-pure);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: var(--text-dim);
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-search-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--text-mid);
}
.search-kbd {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
}

.btn-tg-join {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
  transition: all 0.2s ease;
}
.btn-tg-join:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.5);
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  color: var(--text-high);
  cursor: pointer;
}

/* --- MOBILE DRAWER --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  height: 100vh;
  background: #090E1D;
  border-left: 1px solid var(--border-subtle);
  z-index: 200;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s cubic-bezier(0.2, 1, 0.3, 1), visibility 0.3s;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-high);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.drawer-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #EF4444;
  color: #EF4444;
}
.mobile-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  color: var(--text-dim);
  font-size: 13.5px;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-high);
  transition: background 0.15s;
}
.mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
}
.mobile-tg-btn {
  margin-top: auto;
  justify-content: center;
}
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* --- SEARCH MODAL --- */
.search-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.82);
  backdrop-filter: blur(16px);
}
.search-modal-box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 580px;
  background: #0A1124;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.15);
  overflow: hidden;
}
.search-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.search-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
}
.search-esc {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  cursor: pointer;
}
.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 12px 16px;
}
.search-empty-hint {
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13.5px;
}
.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
}
.search-result-item:hover {
  background: rgba(56, 189, 248, 0.08);
}
.sr-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sr-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111C33;
}
.sr-name {
  font-weight: 700;
  color: #FFF;
}
.sr-rating {
  font-size: 12.5px;
  font-weight: 800;
  color: #FBBF24;
}

/* --- MAIN CONTAINER & VIEWS --- */
#mainContainer {
  position: relative;
  z-index: 1;
  min-height: 80vh;
}
.view-section {
  display: none;
  animation: fadeIn 0.25s ease forwards;
}
.view-section.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 60px 24px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 48px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-family: var(--font-brand);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-cyan);
  width: fit-content;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #FFFFFF;
}
.gradient-text {
  background: linear-gradient(135deg, #38BDF8 0%, #60A5FA 50%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gem-icon {
  font-size: 40px;
  vertical-align: middle;
}
.hero-subtitle {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 580px;
}

/* Hero Feature Pills (2x2 Grid) */
.hero-feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}
.h-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}
.h-pill:hover {
  background: rgba(22, 34, 60, 0.75);
  border-color: rgba(56, 189, 248, 0.2);
}
.h-pill-icon {
  font-size: 20px;
}
.h-pill-text {
  display: flex;
  flex-direction: column;
}
.h-pill-text strong {
  font-size: 13.5px;
  color: var(--text-pure);
}
.h-pill-text span {
  font-size: 11.5px;
  color: var(--text-dim);
}

/* Hero CTA Row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284C7 0%, #2563EB 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.4);
  transition: all 0.2s ease;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.55);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-high);
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.play-btn-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-cyan);
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  padding-left: 2px;
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.proof-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; }
.av-1 { background: #1E293B; }
.av-2 { background: #0F766E; }
.av-3 { background: #1D4ED8; }
.av-4 { background: #6D28D9; }
.proof-count {
  margin-left: -8px;
  background: #0284C7;
  color: #FFF;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  border: 2px solid #050811;
}
.proof-text {
  display: flex;
  flex-direction: column;
}
.stars {
  color: #FBBF24;
  font-size: 13px;
  letter-spacing: 2px;
}
.proof-desc {
  font-size: 12px;
  color: var(--text-dim);
}
.proof-desc strong {
  color: var(--text-high);
}

/* Hero Right: 3D Art */
.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-art-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-3d-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(56, 189, 248, 0.18);
  transition: transform 0.4s ease;
}
.hero-3d-img:hover {
  transform: scale(1.02);
}
.art-glow-orb {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.float-chip {
  position: absolute;
  background: rgba(10, 20, 40, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: floatAnim 4s ease-in-out infinite alternate;
}
.chip-btc { top: 15%; left: -15px; }
.chip-eth { bottom: 15%; right: -15px; animation-delay: 2s; }
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.chip-dot.gold { background: #F59E0B; box-shadow: 0 0 8px #F59E0B; }
.chip-dot.cyan { background: #38BDF8; box-shadow: 0 0 8px #38BDF8; }

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

/* --- VALUE / TRUST METRIC STRIP --- */
.metrics-strip-section {
  max-width: var(--container-max);
  margin: 30px auto;
  padding: 0 24px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  backdrop-filter: blur(16px);
}
.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.metric-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.metric-icon-wrap.blue { background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.25); }
.metric-icon-wrap.green { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25); }
.metric-icon-wrap.amber { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.25); }
.metric-icon-wrap.purple { background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.25); }

.metric-number {
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.1;
}
.metric-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

/* --- HOME SECTION COMMON --- */
.home-section {
  max-width: var(--container-max);
  margin: 60px auto;
  padding: 0 24px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-cyan);
  margin-bottom: 6px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  margin-top: 4px;
}
.section-more-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-cyan);
  transition: color 0.15s;
}
.section-more-link:hover {
  color: #FFF;
}

/* Carousel Controls */
.carousel-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-high);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.c-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: #FFF;
}

/* Carousel Track */
.home-airdrop-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.home-airdrop-carousel::-webkit-scrollbar {
  display: none;
}

/* Airdrop Card (Carousel + Grid) */
.airdrop-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(18, 30, 56, 0.95) 0%, rgba(10, 18, 36, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-top: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.22s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.airdrop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.5);
  border-top-color: #38BDF8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(56, 189, 248, 0.2);
}
.ac-hot-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #FFFFFF;
  font-size: 9.5px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}
.ac-logo-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0D172B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.ac-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ac-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.ac-status-badge {
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}
.ac-status-badge.active {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.ac-status-badge.ending {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.ac-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FBBF24;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 6px;
}
.ac-cost-label {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.ac-deadline {
  font-size: 11px;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.ac-btn-guide {
  width: 100%;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--primary-cyan);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-top: auto;
}
.ac-btn-guide:hover {
  background: var(--primary-cyan);
  color: #050811;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

/* Skeletons */
.skeleton-card-wrap {
  display: flex;
  gap: 18px;
  width: 100%;
}
.skeleton-card {
  flex: 0 0 235px;
  height: 280px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  animation: pulseSkeleton 1.5s infinite alternate;
}
@keyframes pulseSkeleton {
  from { opacity: 0.3; }
  to { opacity: 0.7; }
}

/* --- TWO-COLUMN: VIDEO & UPDATES --- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.col-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}
.col-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.col-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-icon {
  font-size: 18px;
}
.col-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
}
.col-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-cyan);
}

/* Video Box */
.video-featured-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-thumb-wrap:hover .video-thumb-img {
  transform: scale(1.03);
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.play-pulse-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.9);
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  padding-left: 3px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.6);
  transition: transform 0.2s ease;
}
.video-thumb-wrap:hover .play-pulse-circle {
  transform: scale(1.1);
}
.video-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.video-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.v-badge.red {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
}
.v-time {
  font-size: 12px;
  color: var(--text-dim);
}
.video-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}
.btn-watch-video {
  margin-top: auto;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transition: transform 0.15s;
}
.btn-watch-video:hover {
  transform: translateY(-1px);
}

/* Updates List Box */
.updates-list-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
}
.update-item-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.update-item-row:hover {
  background: rgba(255, 255, 255, 0.05);
}
.update-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.update-content {
  flex: 1;
}
.update-msg {
  font-size: 13.5px;
  color: var(--text-high);
  line-height: 1.45;
}
.update-time {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}
.update-skeleton {
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  animation: pulseSkeleton 1.5s infinite alternate;
}

/* --- WHY CHOOSE BANNER --- */
.why-banner-wrap {
  background: linear-gradient(180deg, rgba(14, 23, 44, 0.8) 0%, rgba(8, 14, 28, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
}
.text-center { text-align: center; }
.why-header {
  max-width: 600px;
  margin: 0 auto 36px;
}
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(10, 18, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.3);
}
.why-icon-box {
  font-size: 26px;
  margin-bottom: 14px;
}
.why-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
}
.why-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* --- ALL AIRDROPS VIEW --- */
.page-header-container {
  max-width: var(--container-max);
  margin: 40px auto 24px;
  padding: 0 24px;
}
.page-badge {
  display: inline-flex;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-cyan);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 8px;
}
.page-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
}
.page-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 6px;
}

.airdrops-filter-bar {
  max-width: var(--container-max);
  margin: 0 auto 30px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-tabs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.filter-tabs-row::-webkit-scrollbar { display: none; }
.f-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.f-tab:hover, .f-tab.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #FFFFFF;
}

.filter-secondary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 9px 16px;
  flex: 1;
  max-width: 380px;
}
.filter-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 13.5px;
}
.filter-dropdowns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.select-input {
  background: #0D1629;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  color: var(--text-high);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.view-mode-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 3px;
}
.mode-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.mode-btn.active {
  background: rgba(56, 189, 248, 0.2);
  color: var(--primary-cyan);
}

.airdrop-cards-grid {
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* Table View */
.airdrop-table-wrap {
  max-width: var(--container-max);
  margin: 0 auto 60px;
  padding: 0 24px;
  overflow-x: auto;
}
.airdrop-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 13.5px;
}
.airdrop-table th {
  background: rgba(10, 20, 38, 0.9);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-subtle);
}
.airdrop-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-high);
}
.airdrop-table tr:hover td {
  background: rgba(56, 189, 248, 0.04);
}
.tbl-project {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tbl-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0E1A33;
}
.tbl-name {
  font-weight: 700;
  color: #FFF;
}
.tbl-btn {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--primary-cyan);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* --- DETAIL VIEW --- */
.detail-container {
  max-width: var(--container-max);
  margin: 30px auto 60px;
  padding: 0 24px;
}
.detail-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-cyan);
  margin-bottom: 24px;
  transition: transform 0.15s;
}
.detail-back-link:hover {
  transform: translateX(-3px);
}
.detail-hero-box {
  background: linear-gradient(180deg, rgba(16, 28, 52, 0.9) 0%, rgba(10, 18, 36, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin-bottom: 24px;
}
.dh-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.dh-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dh-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0B162C;
  border: 2px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}
.dh-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #FFF;
}
.dh-campaign {
  font-size: 14px;
  color: var(--text-mid);
}
.dh-rating-badge {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 15px;
  font-weight: 800;
  color: #FBBF24;
}

/* Detail Top Actions (Video -> TG -> Portal) */
.detail-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  max-width: 600px;
}
.btn-act-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
  transition: transform 0.15s;
}
.btn-act-tg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0284C7;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
  transition: transform 0.15s;
}
.btn-act-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
  transition: transform 0.15s;
}
.btn-act-video:hover, .btn-act-tg:hover, .btn-act-portal:hover {
  transform: translateY(-1px);
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
}
.detail-main-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-side-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(16px);
}
.side-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

/* Steps */
.step-item-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}
.step-header {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-cyan);
  margin-bottom: 4px;
}

/* --- TOOLS COMING SOON --- */
.coming-soon-pill {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  margin-top: 10px;
}
.tools-grid {
  max-width: var(--container-max);
  margin: 30px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tool-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s ease;
}
.tool-preview-card:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}
.tool-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tool-icon { font-size: 28px; }
.tool-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.tool-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
}
.tool-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* --- GUIDES & NEWS --- */
.guides-grid {
  max-width: var(--container-max);
  margin: 30px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.guide-tag {
  font-family: var(--font-brand);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary-cyan);
  margin-bottom: 10px;
}
.guide-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
  line-height: 1.4;
}
.guide-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 18px;
}
.guide-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-cyan);
}

.news-feed-wrap {
  max-width: 800px;
  margin: 30px auto 60px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- ABOUT CONTENT --- */
.about-content-box {
  max-width: 860px;
  margin: 30px auto 60px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-prose {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  font-size: 15.5px;
  color: var(--text-high);
  line-height: 1.8;
}
.about-prose h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 16px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.a-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.a-num {
  display: block;
  font-family: var(--font-brand);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-cyan);
}
.a-lbl {
  font-size: 13px;
  color: var(--text-dim);
}
.about-cta-card {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
}
.about-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 8px;
}
.about-cta-card p {
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #04060E;
  padding: 60px 24px 24px;
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin: 14px 0 20px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.soc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.15s;
}
.soc-icon:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 16px;
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu li a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-menu li a:hover {
  color: #FFF;
}
.footer-tg-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.ftg-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 6px;
}
.ftg-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.5;
}
.btn-ftg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #0284C7;
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal-links a:hover { color: #FFF; }
.dot { opacity: 0.4; }

/* Toast */
.site-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 20, 38, 0.95);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  color: #FFF;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.2s ease;
}
.site-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-subtitle {
    margin: 0 auto;
  }
  .hero-feature-pills {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-social-proof {
    justify-content: center;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  .why-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tools-grid, .guides-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .hero-title { font-size: 38px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .tools-grid, .guides-grid { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr; }
  .hero-feature-pills { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}

.hidden { display: none !important; }
