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

body {
  font-family: 'Courier New', monospace;
  background: #000;
  color: #0f0;
  min-height: 100vh;
  overflow-x: hidden;
}

#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 30px;
}

.logo h1 {
  font-size: 96px;
  font-weight: 900;
  letter-spacing: 12px;
  color: #0f0;
  text-shadow: 
    0 0 10px rgba(0, 255, 0, 0.8),
    0 0 20px rgba(0, 255, 0, 0.6),
    0 0 30px rgba(0, 255, 0, 0.4),
    0 0 40px rgba(0, 255, 0, 0.2);
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 
      0 0 10px rgba(0, 255, 0, 0.8),
      0 0 20px rgba(0, 255, 0, 0.6),
      0 0 30px rgba(0, 255, 0, 0.4);
  }
  to {
    text-shadow: 
      0 0 20px rgba(0, 255, 0, 1),
      0 0 30px rgba(0, 255, 0, 0.8),
      0 0 40px rgba(0, 255, 0, 0.6),
      0 0 50px rgba(0, 255, 0, 0.4);
  }
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #0f0;
  opacity: 0.9;
}

/* Countdown Timer */
.countdown-section {
  padding: 40px 20px 60px;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: 72px;
  font-weight: 900;
  color: #0f0;
  text-shadow: 
    0 0 20px rgba(0, 255, 0, 1),
    0 0 30px rgba(0, 255, 0, 0.8),
    0 0 40px rgba(0, 255, 0, 0.6);
  font-variant-numeric: tabular-nums;
  min-width: 120px;
}

.countdown-label {
  font-size: 14px;
  letter-spacing: 3px;
  color: #0f0;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  margin-top: 10px;
}

.countdown-separator {
  font-size: 72px;
  font-weight: 900;
  color: #0f0;
  opacity: 0.5;
  animation: blink 1s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.2; }
}

/* Carousel Section */
.carousel-section {
  padding: 40px 20px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.carousel-container {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  text-align: center;
}

.carousel-item.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.goat-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: 
    drop-shadow(0 0 20px rgba(0, 255, 0, 0.4))
    drop-shadow(0 0 30px rgba(0, 255, 0, 0.3));
  border-radius: 20px;
}

.goat-label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #0f0;
  text-shadow: 
    0 0 10px rgba(0, 255, 0, 0.8),
    0 0 20px rgba(0, 255, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Navigation Dots */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(0, 255, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.nav-dot:hover {
  border-color: rgba(0, 255, 0, 1);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.nav-dot.active {
  background: #0f0;
  border-color: #0f0;
  box-shadow: 0 0 20px rgba(0, 255, 0, 1);
}

/* Info Section */
.info-section {
  padding: 40px 20px 80px;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.info-item {
  padding: 30px;
  transition: all 0.3s;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-number {
  font-size: 56px;
  font-weight: 900;
  color: #0f0;
  text-shadow: 
    0 0 15px rgba(0, 255, 0, 1),
    0 0 25px rgba(0, 255, 0, 0.8),
    0 0 35px rgba(0, 255, 0, 0.6);
  margin-bottom: 10px;
}

.info-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0f0;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

/* CTA Section */
.cta-section {
  padding: 40px 30px;
  max-width: 600px;
  margin: 0 auto;
}

.status-text {
  font-size: 16px;
  letter-spacing: 2px;
  color: #0f0;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
  .logo h1 {
    font-size: 64px;
    letter-spacing: 8px;
  }
  
  .main-title {
    font-size: 24px;
    letter-spacing: 6px;
  }
  
  .countdown-number {
    font-size: 56px;
    min-width: 90px;
  }
  
  .countdown-separator {
    font-size: 56px;
  }
  
  .countdown-container {
    gap: 15px;
    padding: 30px 20px;
  }
  
  .goat-img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .logo h1 {
    font-size: 48px;
    letter-spacing: 6px;
  }
  
  .main-title {
    font-size: 20px;
    letter-spacing: 4px;
  }
  
  .countdown-number {
    font-size: 42px;
    min-width: 70px;
  }
  
  .countdown-label {
    font-size: 11px;
  }
  
  .countdown-separator {
    font-size: 42px;
  }
  
  .goat-img {
    width: 250px;
    height: 250px;
  }
  
  .carousel-track {
    height: 200px;
  }
  
  .goat-label {
    font-size: 16px;
  }
  
  .info-number {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 36px;
    letter-spacing: 4px;
  }
  
  .main-title {
    font-size: 16px;
    letter-spacing: 3px;
  }
  
  .countdown-container {
    gap: 10px;
    padding: 25px 15px;
  }
  
  .countdown-number {
    font-size: 32px;
    min-width: 55px;
  }
  
  .countdown-separator {
    font-size: 32px;
  }
  
  .goat-img {
    width: 220px;
    height: 220px;
  }
  
  .carousel-track {
    height: 180px;
  }
  
  .goat-label {
    font-size: 14px;
  }
}
