/* MOON DOGE - Revolutionary Memecoin Design */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

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

:root {
  --primary: #FF6B35;
  --secondary: #F7931E;
  --accent: #FFC857;
  --dark: #1A1A2E;
  --darker: #0F0F1E;
  --light: #EAEAEA;
  --glow: #FFD700;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.wave-bg {
  position: absolute;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 87, 0.1) 0%, transparent 50%);
  animation: waveMove 20s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { transform: translate(-25%, -25%) rotate(0deg); }
  50% { transform: translate(-30%, -30%) rotate(180deg); }
}

/* Stars Animation */
.stars-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Meteors */
.meteor {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), transparent);
  animation: meteorFall 2s linear infinite;
}

@keyframes meteorFall {
  0% { transform: translateY(-100px) translateX(0); opacity: 1; }
  100% { transform: translateY(100vh) translateX(-200px); opacity: 0; }
}

/* Complex Floating Particles */
.particle {
  position: fixed;
  pointer-events: none;
  z-index: 2;
}

.particle-circle {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--accent), transparent);
  border-radius: 50%;
  animation: floatParticle 15s ease-in-out infinite;
  opacity: 0.6;
}

.particle-square {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: rotate(45deg);
  animation: floatParticle 18s ease-in-out infinite;
  opacity: 0.5;
}

.particle-triangle {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--secondary);
  animation: floatParticle 20s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes floatParticle {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { 
    transform: translate(var(--tx), var(--ty)) rotate(360deg);
    opacity: 0;
  }
}

/* Glowing Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-orange {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 20%;
  left: 10%;
}

.orb-gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
  bottom: 20%;
  right: 10%;
  animation-delay: -5s;
}

.orb-yellow {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 50%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(40px, 40px) scale(1.05); }
}

/* Geometric Shapes */
.geo-shape {
  position: fixed;
  pointer-events: none;
  z-index: 2;
  opacity: 0.15;
  animation: shapeFloat 25s ease-in-out infinite;
}

.shape-hex {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 15%;
  left: 15%;
}

.shape-oct {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  bottom: 25%;
  right: 15%;
  animation-delay: -8s;
}

.shape-star {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--accent);
  top: 40%;
  left: 8%;
  animation-delay: -15s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(60px, -60px) rotate(90deg); }
  50% { transform: translate(-40px, 40px) rotate(180deg); }
  75% { transform: translate(50px, 50px) rotate(270deg); }
}

/* Pulsing Rings */
.pulse-ring {
  position: fixed;
  border: 3px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: pulseRing 4s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    width: 50px;
    height: 50px;
    opacity: 1;
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

/* Energy Lines */
.energy-line {
  position: fixed;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
  animation: energyFlow 8s linear infinite;
}

@keyframes energyFlow {
  0% { 
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% { 
    transform: translateX(200%);
    opacity: 0;
  }
}

/* Floating Navigation - Right Side */
.floating-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-item {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.nav-item:hover::before {
  left: 100%;
}

.nav-item:hover {
  transform: translateX(-10px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 200, 87, 0.6);
}

.nav-item span {
  font-size: 10px;
  margin-top: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Main Wrapper */
.main-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Section - Asymmetric */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-container {
  width: 100%;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-pulse {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  line-height: 0.85;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.title-line-1 {
  font-size: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(255, 107, 53, 0.5);
  animation: titleGlow 3s ease-in-out infinite;
}

.title-line-2 {
  font-size: 180px;
  background: linear-gradient(135deg, var(--accent), var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 80px rgba(255, 200, 87, 0.5);
  margin-left: 100px;
  animation: titleGlow 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

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

.hero-description {
  font-size: 22px;
  color: rgba(234, 234, 234, 0.8);
  line-height: 1.8;
  margin-bottom: 60px;
  max-width: 700px;
  font-weight: 500;
}

/* Stats Diagonal Layout */
.stats-diagonal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.stat-item {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-1 { transform: rotate(-3deg); }
.stat-2 { transform: rotate(2deg); }
.stat-3 { transform: rotate(-2deg); }

.stat-item:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(255, 200, 87, 0.4);
}

.stat-icon {
  font-size: 50px;
  position: relative;
  z-index: 1;
}

.stat-info {
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: rgba(234, 234, 234, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section - Circular Orbit */
.features-section {
  padding: 150px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-accent {
  font-size: 28px;
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.title-main {
  font-size: 72px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-orbit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 30px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.3), transparent);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-20px) scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(255, 200, 87, 0.5);
}

.card-1 { transform: rotate(-5deg); }
.card-2 { transform: rotate(3deg); }
.card-3 { transform: rotate(-4deg); }
.card-4 { transform: rotate(4deg); }
.card-5 { transform: rotate(-3deg); }
.card-6 { transform: rotate(5deg); }

.feature-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.05);
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 16px;
  color: rgba(234, 234, 234, 0.7);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Tokenomics - Wave Layout */
.tokenomics-section {
  padding: 150px 0;
  background: rgba(15, 15, 30, 0.5);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.token-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
  border: 3px solid var(--primary);
  border-radius: 35px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.token-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 200, 87, 0.2), transparent);
  animation: rotate 6s linear infinite;
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.header-icon {
  font-size: 70px;
}

.card-header h3 {
  font-size: 24px;
  color: rgba(234, 234, 234, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-value {
  font-size: 56px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(255, 200, 87, 0.6);
  word-break: break-all;
  line-height: 1.2;
}

.card-badge {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(255, 200, 87, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.distribution-wave {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.wave-item {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s;
}

.wave-item:hover {
  transform: translateX(15px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 200, 87, 0.3);
}

.wave-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.wave-label span:first-child {
  color: var(--light);
}

.wave-percent {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
}

.wave-bar {
  height: 15px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.wave-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 10px;
  position: relative;
  animation: fillBar 2s ease-out;
}

@keyframes fillBar {
  from { width: 0 !important; }
}

.wave-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

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

/* Roadmap Timeline */
.roadmap-section {
  padding: 150px 0;
}

.roadmap-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 60px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--dark);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
}

.timeline-item.completed .timeline-marker {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 200, 87, 0.6);
}

.timeline-item.active .timeline-marker {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(247, 147, 30, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  padding: 35px;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 200, 87, 0.3);
}

.timeline-phase {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
}

.timeline-content li {
  padding: 10px 0;
  font-size: 16px;
  color: rgba(234, 234, 234, 0.8);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 150px 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.1), transparent);
  animation: rotate 15s linear infinite;
}

.cta-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 64px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}

.cta-text {
  font-size: 24px;
  color: rgba(234, 234, 234, 0.8);
  margin-bottom: 50px;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.cta-btn {
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.primary-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 200, 87, 0.6);
}

.secondary-btn {
  background: rgba(26, 26, 46, 0.8);
  border: 3px solid var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 200, 87, 0.3);
}

.secondary-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 200, 87, 0.1);
  box-shadow: 0 15px 40px rgba(255, 200, 87, 0.5);
}

.cta-btn span,
.cta-btn i {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: rgba(15, 15, 30, 0.9);
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  padding: 60px 40px 30px;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.footer-logo p {
  color: rgba(234, 234, 234, 0.6);
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(234, 234, 234, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: rgba(234, 234, 234, 0.5);
  font-size: 14px;
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 12px;
  color: rgba(234, 234, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .title-line-1, .title-line-2 {
    font-size: 140px;
  }
  
  .features-orbit {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    right: 15px;
    gap: 15px;
  }
  
  .nav-item {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
  
  .nav-item span {
    display: none;
  }
  
  .main-wrapper {
    padding: 0 20px;
  }
  
  .title-line-1, .title-line-2 {
    font-size: 80px;
  }
  
  .title-line-2 {
    margin-left: 40px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .stats-diagonal {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-1, .stat-2, .stat-3 {
    transform: rotate(0deg);
  }
  
  .title-main {
    font-size: 48px;
  }
  
  .features-orbit {
    grid-template-columns: 1fr;
  }
  
  .card-1, .card-2, .card-3, .card-4, .card-5, .card-6 {
    transform: rotate(0deg);
  }
  
  .roadmap-timeline {
    padding-left: 30px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
  }
  
  .cta-title {
    font-size: 42px;
  }
  
  .cta-text {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Create stars dynamically with JavaScript */
