* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 20px;
}

.content {
  background: rgba(20, 20, 35, 0.95);
  border: 2px solid rgba(100, 200, 255, 0.3);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(100, 200, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon-wrapper {
  margin-bottom: 20px;
}

.ballot-icon {
  font-size: 80px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.title {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(100, 200, 255, 0.5);
}

.subtitle {
  font-size: 20px;
  color: #a0a0c0;
  margin-bottom: 40px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.time-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(100, 200, 255, 0.4);
  border-radius: 15px;
  padding: 20px;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(100, 200, 255, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.time-value {
  font-size: 48px;
  font-weight: 700;
  color: #64c8ff;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(100, 200, 255, 0.8);
}

.time-label {
  font-size: 16px;
  color: rgba(160, 160, 192, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.separator {
  font-size: 40px;
  font-weight: 700;
  color: #64c8ff;
  text-shadow: 0 0 10px rgba(100, 200, 255, 0.6);
}

.launch-date {
  margin: 30px 0;
  padding: 20px;
  background: rgba(100, 200, 255, 0.05);
  border: 1px solid rgba(100, 200, 255, 0.2);
  border-radius: 15px;
}

.launch-date p {
  font-size: 18px;
  color: #b0b0d0;
  margin: 5px 0;
}

.launch-date strong {
  color: #64c8ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(100, 200, 255, 0.4);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(100, 200, 255, 0.1);
  border: 1px solid rgba(100, 200, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff 0%, #0099ff 50%, #64c8ff 100%);
  border-radius: 10px;
  transition: width 1s ease;
  box-shadow: 0 0 15px rgba(100, 200, 255, 0.6);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #64c8ff;
  border-radius: 50%;
  opacity: 0.4;
  box-shadow: 0 0 10px rgba(100, 200, 255, 0.8);
  animation: float 6s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 1.5s;
  animation-duration: 5s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 40px 20px;
  }
  
  .title {
    font-size: 36px;
  }
  
  .time-box {
    min-width: 80px;
    padding: 15px;
  }
  
  .time-value {
    font-size: 32px;
  }
  
  .time-label {
    font-size: 12px;
  }
  
  .separator {
    font-size: 28px;
  }
}
