@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");


:root {
  --primary-gradient: linear-gradient(135deg, skyblue 0%, var(--bs-success) 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --dark-gradient: linear-gradient(135deg, #333 0%, #111 100%);
  --glow-color: #667eea;
  --particle-color: #764ba2;
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark-gradient);
  color: #ffffff;
  overflow-x: hidden;
}

.navbar-brand {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gradient-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #000;
  background-clip: text;
  font-family: 'Orbitron', monospace;
}

.countdown-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown {
  justify-content: center;
}

.countdown-item {
  text-align: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  padding: 1rem;
  min-width: 80px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.countdown-number {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  display: block;
}

.countdown-label {
  font-size: 0.8rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.claim-btn {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.claim-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Token Animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  position: relative;
}

.token-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.token-circle {
  width: 200px;
  height: 200px;
  background: var(--primary-gradient);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(102, 126, 234, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.token-ring {
  width: 300px;
  height: 220px;
  border: 2px solid silver;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--bs-warning);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.6s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 1.2s;
}

.particle:nth-child(4) {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.8s;
}

.particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 2.4s;
}

/* Stat Cards */
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #adb5bd;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Step Cards */
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1rem;
  font-size: 2rem;
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.2);
}

/* Tokenomics */
.tokenomics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tokenomics-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tokenomics-info h5 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.tokenomics-info p {
  margin-bottom: 0;
  color: #adb5bd;
  font-size: 0.9rem;
}

.tokenomics-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Accordion */
.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px !important;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.accordion-button {
  background: transparent;
  color: #ffffff;
  border: none;
  border-radius: 15px !important;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.02);
  color: #adb5bd;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.social-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-3px);
}

/* Modal */
.modal-content {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  color: #ffffff;
}

.form-control::placeholder {
  color: #6c757d;
}

.form-check-input:checked {
  background-color: #667eea;
  border-color: #667eea;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 5em !important;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem !important;
    }
  
  .countdown-item {
    min-width: 70px;
    padding: 0.75rem;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .hero-visual {
    height: 300px;
    margin-top: 2rem;
  }
  
  .token-animation {
    width: 200px;
    height: 200px;
  }
  
  .token-circle {
    width: 150px;
    height: 150px;
  }
  
  .token-ring {
    width: 200px;
    height: 200px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 5em !important;
    }

    .countdown-container {
        padding: 1rem 0.2rem;
    }
  
  .step-card, .stat-card {
    padding: 1.5rem;
  }
  
  .tokenomics-item {
    padding: 0.75rem;
  }
}

