* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0b0f23;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #0b0f23, #1e1a3d, #0b0f23, #1e1a3d);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  z-index: -2;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(#1a1a3a 0 1px, transparent 1px 60px), repeating-linear-gradient(90deg, #1a1a3a 0 1px, transparent 1px 60px);
  opacity: 0.2;
  z-index: -1;
  animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

.hero {
  text-align: center;
  max-width: 700px;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hype-button {
  display: inline-block;
  background: linear-gradient(90deg, #8e44ad, #3498db);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.countdown-card {
  background: rgba(26, 26, 50, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  margin-bottom: 3rem;
}

.countdown-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.countdown-subtitle {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.countdown-timers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timer-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 0.8rem;
  width: 80px;
  text-align: center;
}

.timer-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #b484ff;
  display: block;
  margin-bottom: 0.3rem;
}

.timer-label {
  font-size: 0.65rem;
  color: #dddddd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.launch-footer {
  font-size: 0.85rem;
  color: #bbbbbb;
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease;
}

.btn-telegram {
  background: #0088cc;
}

.btn-telegram:hover {
  background: #0077b3;
}

.btn-discord {
  background: #5865f2;
}

.btn-discord:hover {
  background: #4752c4;
}

.features {
  max-width: 900px;
  text-align: center;
  margin-bottom: 3rem;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.features-subtitle {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.features-list li {
  background: rgba(26, 26, 50, 0.6);
  border-radius: 10px;
  padding: 1rem;
  text-align: left;
}

.icon {
  font-size: 1.5rem;
  color: #b484ff;
  margin-bottom: 0.5rem;
}

.features-list h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.features-list p {
  font-size: 0.85rem;
  color: #dddddd;
  line-height: 1.3;
}

.features-more {
  font-size: 0.9rem;
  font-style: italic;
  color: #aaaaaa;
}

@media (max-width: 600px) {
  .main-title {
    font-size: 2.5rem;
  }
  .timer-box {
    width: 60px;
    padding: 0.8rem;
  }
  .features-list {
    grid-template-columns: 1fr;
  }
}
