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

:root {
  --primary-yellow: #fffc00;
  --primary-orange: #ff6b35;
  --primary-teal: #4ecdc4;
  --primary-blue: #2563eb; /* Updated to proper blue for ETH */
  --primary-purple: #8b5cf6; /* Added purple for SOL */
  --dark-bg: #000000;
  --dark-card: #1a1a1a;
  --dark-border: #333;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --gradient-primary: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dark-border);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-yellow);
}

.logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-yellow);
}

.nav-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.price-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ticker-icon {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--dark-bg);
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 252, 0, 0.1);
  border: 1px solid var(--primary-yellow);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: 40px;
  animation: pulse 2s infinite;
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--primary-yellow);
  border-radius: 50%;
  animation: blink 1s infinite;
}

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

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

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-primary);
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-networks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.network-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.network-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.network-badge:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

.network-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.network-badge:hover::before {
  left: 100%;
}

.network-badge img {
  width: 20px;
  height: 20px;
}

.network-badge.ethereum {
  border-color: var(--primary-blue); /* Updated to blue for ETH */
}

.network-badge.ethereum:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.1);
}

.network-badge.solana {
  border-color: var(--primary-purple); /* Updated to purple for SOL */
}

.network-badge.solana:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: var(--dark-bg);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--dark-border);
}

.cta-button.secondary:hover {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--dark-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.about-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-yellow);
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #111 100%);
}

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

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark-border);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 3px solid var(--dark-bg);
}

.timeline-item.active .timeline-marker {
  background: var(--primary-yellow);
  animation: pulse 2s infinite;
}

.timeline-content {
  width: 45%;
  background: var(--dark-card);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--dark-border);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-date {
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.timeline-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.timeline-status.active {
  background: rgba(255, 252, 0, 0.2);
  color: var(--primary-yellow);
}

.timeline-status.upcoming {
  background: rgba(176, 176, 176, 0.2);
  color: var(--text-secondary);
}

/* Tokenomics Section */
.tokenomics {
  padding: 100px 0;
  background: var(--dark-bg);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tokenomics-chart {
  display: flex;
  justify-content: center;
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.token-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--dark-card);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--dark-border);
  transition: transform 0.3s ease;
}

.token-stat:hover {
  transform: translateX(10px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 16px;
  font-weight: 800;
}

.stat-info h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.stat-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Airdrop Section */
.airdrop {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #111 100%);
}

.airdrop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.airdrop-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.airdrop-card:hover {
  transform: translateY(-5px);
}

.airdrop-card.ethereum {
  border-color: var(--primary-blue); /* Updated to blue for ETH */
}

.airdrop-card.solana {
  border-color: var(--primary-purple); /* Updated to purple for SOL */
}

.card-header {
  margin-bottom: 30px;
}

.network-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-border);
}

.network-icon img {
  width: 40px;
  height: 40px;
}

.card-header h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contract-info {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
}

.contract-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contract-address {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--primary-yellow);
  word-break: break-all;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.contract-address:hover {
  color: var(--primary-orange);
}

.copy-icon {
  font-size: 0.8rem;
}

.card-stats {
  margin-bottom: 30px;
}

.stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.stat-label {
  color: var(--text-secondary);
}

.stat-value {
  color: var(--primary-yellow);
  font-weight: 600;
}

.connect-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eth-button {
  background: var(--primary-blue); /* Updated to blue for ETH */
  color: white;
}

.eth-button:hover {
  background: #1d4ed8; /* Updated hover color for ETH */
  transform: translateY(-2px);
}

.sol-button {
  background: var(--primary-purple); /* Updated to purple for SOL */
  color: white;
}

.sol-button:hover {
  background: #7c3aed; /* Updated hover color for SOL */
  transform: translateY(-2px);
}

.connect-button img {
  width: 20px;
  height: 20px;
}

/* Wallet Connect Button Styling */
.connectWallet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 300px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: var(--dark-bg);
  margin: 0 auto;
}

.connectWallet:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
}

/* Wallet Connect Page Styling */
.wallet-connect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--text-primary);
  position: relative;
}

.wallet-connect-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 252, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.wallet-connect-container {
  text-align: center;
  max-width: 500px;
  padding: 3rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.wallet-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  border-radius: 50%;
}

.wallet-connect-container h1 {
  margin-bottom: 1rem;
  color: var(--primary-yellow);
  font-size: 2rem;
  font-weight: 800;
}

.wallet-connect-container p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 40px 0 20px;
}

.footer-content {
  margin-bottom: 30px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-yellow);
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.footer-attribution {
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu,
  .nav-stats {
    display: none;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-networks {
    flex-direction: column;
    align-items: center;
  }

  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-content {
    width: 100% !important;
    margin: 0 !important;
  }

  .roadmap-timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
