* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(ellipse at top, #1a1a2e, #0d0d16 70%);
  color: #f0f0f0;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.glitch {
  font-size: 3.5rem;
  font-weight: 900;
  position: relative;
  color: #fff;
  text-shadow: 0 0 20px #ff2e63;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 20px #ff2e63; }
  50% { text-shadow: 0 0 40px #08d9d6, 0 0 10px #ff2e63; }
}

.subtitle {
  font-style: italic;
  color: #aaa;
  margin-top: 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.badge {
  background: #22223b;
  border: 1px solid #ff2e63;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  animation: float 4s ease-in-out infinite;
}

.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 1s; }

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

#hypeBtn {
  background: linear-gradient(45deg, #ff2e63, #08d9d6);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease;
}

#hypeBtn:hover {
  transform: scale(1.08);
}

#hypeBtn:active {
  transform: scale(0.95);
}

#auraCount {
  margin-top: 12px;
  font-weight: bold;
  color: #08d9d6;
}

.timeline, .quotes {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
}

.timeline h2, .quotes h2 {
  text-align: center;
  color: #ff2e63;
  margin-bottom: 30px;
}

.event {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #1c1c2e;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s forwards;
}

.event:nth-child(2) { animation-delay: 0.1s; }
.event:nth-child(3) { animation-delay: 0.3s; }
.event:nth-child(4) { animation-delay: 0.5s; }
.event:nth-child(5) { animation-delay: 0.7s; }

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.dot {
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #08d9d6;
  margin-top: 6px;
}

blockquote {
  background: #22223b;
  border-left: 4px solid #08d9d6;
  padding: 14px 18px;
  margin: 16px 0;
  border-radius: 8px;
  font-style: italic;
}

footer {
  text-align: center;
  padding: 40px;
  color: #666;
}
