/* =====================================================
   VOID MINERS LANDING - Lightweight CSS Animations
   ===================================================== */

:root {
  --cyan: #2EF6D0;
  --pink: #FF6B9D;
  --purple: #9D4EDD;
  --yellow: #D4FF00;
  --gold: #FFD60A;
  --blue: #00D4FF;
  --dark: #0B0E11;
  --darker: #060809;
  
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--darker);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* =====================================================
   Lite Mode (mobile/low-power)
   ===================================================== */
html[data-effects="lite"] {
  scroll-behavior: auto;
}

html[data-effects="lite"] .particles {
  display: none;
}

html[data-effects="lite"] .reveal,
html[data-effects="lite"] .reveal-left,
html[data-effects="lite"] .reveal-right,
html[data-effects="lite"] .reveal-up,
html[data-effects="lite"] .reveal-scale {
  transition-duration: 0.45s;
  will-change: auto;
}

html[data-effects="lite"] .reveal { transform: translateY(18px); }
html[data-effects="lite"] .reveal-left { transform: translateX(-32px); }
html[data-effects="lite"] .reveal-right { transform: translateX(32px); }
html[data-effects="lite"] .reveal-up { transform: translateY(24px); }
html[data-effects="lite"] .reveal-scale { transform: scale(0.97); }

html[data-effects="lite"] .hero-bg {
  background:
    radial-gradient(1200px 600px at 50% 20%, rgba(46, 246, 208, 0.18), transparent 60%),
    linear-gradient(180deg, #0b0e11 0%, #060809 70%);
  opacity: 1;
}

html[data-effects="lite"] .section {
  --section-gradient:
    radial-gradient(800px 500px at 20% 0%, rgba(157, 78, 221, 0.18), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(46, 246, 208, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(11, 14, 17, 0.88) 0%, rgba(6, 8, 9, 0.92) 70%);
}

html[data-effects="lite"] .hero-title,
html[data-effects="lite"] .countdown-label,
html[data-effects="lite"] .days-left,
html[data-effects="lite"] .scroll-indicator,
html[data-effects="lite"] .progress-fill,
html[data-effects="lite"] .roadmap-item[data-status="current"] .roadmap-marker {
  animation: none;
}

html[data-effects="lite"] .hero-title {
  text-shadow: 0 0 16px rgba(46, 246, 208, 0.25);
}

html[data-effects="lite"] .countdown-label {
  text-shadow: 0 0 12px rgba(212, 255, 0, 0.25);
}

html[data-effects="lite"] .step,
html[data-effects="lite"] .nft-card,
html[data-effects="lite"] .roadmap-content {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

html[data-effects="lite"] .step-icon img,
html[data-effects="lite"] .nft-card img,
html[data-effects="lite"] .pack-card img {
  filter: none;
}

html[data-effects="lite"] .member-avatar {
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
}

html[data-effects="lite"] .btn-join:hover,
html[data-effects="lite"] .btn-primary:hover,
html[data-effects="lite"] .btn-secondary:hover,
html[data-effects="lite"] .step:hover,
html[data-effects="lite"] .nft-card:hover,
html[data-effects="lite"] .pack-card:hover img,
html[data-effects="lite"] .team-member:hover {
  transform: none;
}

/* =====================================================
   Reveal Animations (GPU-accelerated)
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When visible */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(var(--reveal-rotate, 0deg));
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =====================================================
   Particles Background
   ===================================================== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 8s linear infinite;
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.8;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(0.5);
  }
}

/* =====================================================
   Header
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1.5rem 2rem;
  z-index: 100;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-join {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(15, 19, 24, 0.8);
  border: 1px solid rgba(46, 246, 208, 0.3);
  border-radius: 8px;
  color: var(--cyan);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-join:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(46, 246, 208, 0.25);
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-select {
  padding: 0.5rem 0.9rem;
  background: rgba(15, 19, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  cursor: pointer;
  appearance: none;
}

.lang-select:focus {
  outline: none;
  border-color: var(--cyan);
}

.lang-btn {
  padding: 0.5rem 0.8rem;
  background: rgba(15, 19, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #888;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.lang-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/Lending/hero-bg.webp') center/cover no-repeat;
  opacity: 0.5;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(11, 14, 17, 0.7) 0%,
    rgba(15, 19, 24, 0.5) 50%,
    rgba(11, 14, 17, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-shadow: 0 0 28px rgba(46, 246, 208, 0.4);
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(46, 246, 208, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(46, 246, 208, 0.8), 0 0 60px rgba(46, 246, 208, 0.4);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: #888;
  letter-spacing: 0.3em;
  margin-top: 1rem;
}

.hero-cta {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: var(--cyan);
  font-weight: 600;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--cyan), #00D4FF);
  border: none;
  border-radius: 8px;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(46, 246, 208, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 246, 208, 0.4);
}

/* Countdown */
.countdown-section {
  margin-top: 3rem;
}

.countdown-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--yellow);
  letter-spacing: 0.3em;
  text-shadow: 0 0 18px rgba(212, 255, 0, 0.5);
}

@keyframes glow-yellow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(212, 255, 0, 0.6);
  }
  50% {
    text-shadow: 0 0 40px rgba(212, 255, 0, 1);
  }
}

.progress-bar {
  position: relative;
  width: min(380px, 90vw);
  height: 60px;
  margin: 1.5rem auto;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(212, 255, 0, 0.2);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, var(--yellow), #C6FF00);
  border-radius: 50px;
}

@keyframes progress-shimmer {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

.progress-dot {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--yellow);
}

.countdown-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.countdown-date {
  padding: 0.8rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 255, 0, 0.3);
  border-radius: 12px;
}

.countdown-date .small {
  display: block;
  font-size: 0.7rem;
  color: #666;
  letter-spacing: 0.2em;
}

.countdown-date .big {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
}

.days-left {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #555;
  letter-spacing: 0.2em;
}

@keyframes fade-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.scroll-indicator {
  margin-top: 2rem;
  color: var(--cyan);
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* =====================================================
   Full Effects (explicit)
   ===================================================== */
html[data-effects="full"] .hero-title {
  animation: glow-pulse 6s ease-in-out infinite;
}

html[data-effects="full"] .countdown-label {
  animation: glow-yellow 5s ease-in-out infinite;
}

html[data-effects="full"] .progress-fill {
  animation: progress-shimmer 4s ease-in-out infinite;
}

html[data-effects="full"] .days-left {
  animation: fade-pulse 4s ease-in-out infinite;
}

html[data-effects="full"] .scroll-indicator {
  animation: bounce 3s ease-in-out infinite;
}

html[data-effects="full"] .roadmap-item[data-status="current"] .roadmap-marker {
  animation: pulse-pink 3.2s ease-in-out infinite;
}

/* =====================================================
   Sections Common
   ===================================================== */
.section {
  position: relative;
  padding: 6rem 2rem;
  z-index: 10;
  --section-gradient: linear-gradient(to bottom, rgba(6, 8, 9, 0.92), rgba(11, 14, 17, 0.92));
  background:
    var(--section-gradient),
    url('assets/Lending/back.webp') center/cover no-repeat;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
  color: var(--cyan);
  text-shadow: 0 0 30px currentColor;
  margin-bottom: 0.5rem;
}

.section-title .icon {
  margin: 0 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.btn-secondary {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--cyan), #00D4FF);
  border: none;
  border-radius: 8px;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(46, 246, 208, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 246, 208, 0.4);
}

/* =====================================================
   How It Works
   ===================================================== */
.how-it-works {
  --section-gradient: linear-gradient(to bottom, rgba(6, 8, 9, 0.92), rgba(11, 14, 17, 0.92));
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.step {
  position: relative;
  width: 220px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 19, 24, 0.95), rgba(11, 14, 17, 0.98));
  border: 2px solid var(--cyan);
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step[data-color="cyan"] { border-color: var(--cyan); }
.step[data-color="pink"] { border-color: var(--pink); }
.step[data-color="purple"] { border-color: var(--purple); }

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(46, 246, 208, 0.16);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 0 20px currentColor;
}

.step[data-color="pink"] .step-number { background: var(--pink); }
.step[data-color="purple"] .step-number { background: var(--purple); }

.step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(46, 246, 208, 0.35));
  transition: transform 0.3s ease;
}

.step:hover .step-icon img {
  transform: scale(1.05) rotate(3deg);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.step[data-color="pink"] h3 { color: var(--pink); }
.step[data-color="purple"] h3 { color: var(--purple); }

.step p {
  font-size: 0.9rem;
  color: #888;
}

.step-arrow {
  font-size: 2rem;
  color: var(--cyan);
  opacity: 0.5;
}

/* =====================================================
   NFT Collection
   ===================================================== */
.nft-collection {
  --section-gradient: linear-gradient(to bottom, rgba(11, 14, 17, 0.92), rgba(6, 8, 9, 0.92));
}

.nft-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2rem 2.5rem 3rem;
  scroll-snap-type: x proximity;
  scroll-padding: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  --nft-overlap: 36px;
  overflow-y: visible;
}

.nft-grid::-webkit-scrollbar {
  display: none;
}

.nft-card {
  --accent-color: var(--cyan);
  --accent-glow: rgba(46, 246, 208, 0.35);
  position: relative;
  width: 180px;
  height: 240px;
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
  cursor: pointer;
  flex: 0 0 auto;
  scroll-snap-align: center;
  color: var(--accent-color);
  box-shadow: none;
}

.nft-card + .nft-card {
  margin-left: calc(var(--nft-overlap) * -1);
}

.nft-card[data-rarity="common"] { --accent-color: var(--cyan); --accent-glow: rgba(46, 246, 208, 0.35); }
.nft-card[data-rarity="rare"] { --accent-color: var(--pink); --accent-glow: rgba(255, 107, 157, 0.35); }
.nft-card[data-rarity="epic"] { --accent-color: var(--purple); --accent-glow: rgba(157, 78, 221, 0.35); }
.nft-card[data-rarity="legendary"] { --accent-color: var(--gold); --accent-glow: rgba(255, 214, 10, 0.35); }

.nft-card:nth-child(1) { --reveal-rotate: -6deg; z-index: 1; }
.nft-card:nth-child(2) { --reveal-rotate: -3deg; z-index: 2; }
.nft-card:nth-child(3) { --reveal-rotate: 0deg; z-index: 3; }
.nft-card:nth-child(4) { --reveal-rotate: 3deg; z-index: 2; }
.nft-card:nth-child(5) { --reveal-rotate: 6deg; z-index: 1; }

.nft-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(var(--reveal-rotate, 0deg));
}

.nft-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px var(--accent-glow));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nft-card:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 26px var(--accent-glow));
}

.nft-card .rarity {
  position: absolute;
  bottom: 15px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
}

/* =====================================================
   Membership Packs
   ===================================================== */
.membership {
  --section-gradient: linear-gradient(to bottom, rgba(6, 8, 9, 0.92), rgba(11, 14, 17, 0.92));
}

.packs-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}

.pack-card {
  transition: all 0.4s ease;
}

.pack-card img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(255, 107, 157, 0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.pack-card:hover img {
  transform: translateY(-12px) scale(1.05);
  filter: drop-shadow(0 0 36px rgba(255, 107, 157, 0.45));
}

/* =====================================================
   Roadmap
   ===================================================== */
.roadmap {
  --section-gradient: linear-gradient(to bottom, rgba(11, 14, 17, 0.92), rgba(6, 8, 9, 0.92));
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--pink), var(--purple), var(--blue));
  opacity: 0.3;
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  display: flex;
  margin-bottom: 3rem;
}

.roadmap-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: 55%;
}

.roadmap-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: 55%;
}

.roadmap-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--dark);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(46, 246, 208, 0.3);
  z-index: 10;
}

.roadmap-item[data-status="completed"] .roadmap-marker {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(46, 246, 208, 0.1);
}

.roadmap-item[data-status="current"] .roadmap-marker {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 107, 157, 0.35);
}

@keyframes pulse-pink {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 157, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 157, 0.6); }
}

.roadmap-item[data-status="upcoming"] .roadmap-marker {
  border-color: var(--purple);
  color: var(--purple);
  opacity: 0.7;
}

.roadmap-content {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 19, 24, 0.95), rgba(11, 14, 17, 0.98));
  border: 1px solid rgba(46, 246, 208, 0.2);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-content:hover {
  border-color: rgba(46, 246, 208, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.roadmap-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.roadmap-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(46, 246, 208, 0.1);
  border: 1px solid rgba(46, 246, 208, 0.3);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.roadmap-content ul {
  list-style: none;
}

.roadmap-content li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  color: #aaa;
  font-size: 0.9rem;
}

.roadmap-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.roadmap-footer {
  text-align: center;
  color: #666;
  margin-top: 2rem;
}

/* =====================================================
   Economy
   ===================================================== */
.economy {
  --section-gradient: linear-gradient(to bottom, rgba(6, 8, 9, 0.92), rgba(11, 14, 17, 0.92));
}

.economy-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.economy-image img {
  width: 100%;
  height: auto;
  display: block;
}

.economy-footer {
  text-align: center;
  color: #666;
  margin-top: 2rem;
  letter-spacing: 0.1em;
}

/* =====================================================
   Team
   ===================================================== */
.team {
  --section-gradient: linear-gradient(to bottom, rgba(11, 14, 17, 0.92), rgba(6, 8, 9, 0.92));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
}

.member-avatar {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--blue);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member[data-color="#A855F7"] .member-avatar { border-color: #A855F7; box-shadow: 0 0 30px rgba(168, 85, 247, 0.3); }
.team-member[data-color="#FFD60A"] .member-avatar { border-color: #FFD60A; box-shadow: 0 0 30px rgba(255, 214, 10, 0.3); }
.team-member[data-color="#FF0080"] .member-avatar { border-color: #FF0080; box-shadow: 0 0 30px rgba(255, 0, 128, 0.3); }

.team-member:hover .member-avatar {
  box-shadow: 0 0 32px currentColor;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.team-member[data-color="#A855F7"] h3 { color: #A855F7; }
.team-member[data-color="#FFD60A"] h3 { color: #FFD60A; }
.team-member[data-color="#FF0080"] h3 { color: #FF0080; }

.team-member p {
  color: #888;
  font-size: 0.9rem;
}

.team-footer {
  text-align: center;
  color: #666;
  margin-top: 3rem;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  padding: 2rem;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =====================================================
   Mobile Responsive
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
  .btn-join:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .step:hover,
  .nft-card:hover,
  .pack-card:hover img,
  .team-member:hover,
  .roadmap-content:hover {
    transform: none;
    box-shadow: none;
  }

  .step:hover .step-icon img,
  .nft-card:hover img,
  .pack-card:hover img {
    transform: none;
    filter: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .roadmap-timeline::before {
    left: 20px;
  }
  
  .roadmap-item,
  .roadmap-item:nth-child(odd),
  .roadmap-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 70px;
    padding-right: 0;
  }
  
  .roadmap-marker {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nft-card {
    width: 160px;
    height: 210px;
  }

  .nft-grid {
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
    --nft-overlap: 22px;
    padding: 1.5rem 1.5rem 2.25rem;
  }

  .nft-card {
    scroll-snap-align: start;
  }
  
  .pack-card img {
    width: 140px;
  }
}

/* =====================================================
   Reduced Motion (Accessibility)
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
