/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #0f0f14;
  color: #e0e0ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* Container Styling */
.container {
  max-width: 800px;
  text-align: center;
  animation: fadeIn 2s ease;
}

/* Glowing Header */
.glow {
  font-size: 2rem;
  color: #f5b2ff;
  text-shadow: 0 0 8px #f5b2ff, 0 0 12px #a600ff;
  margin-bottom: 1rem;
}

/* Intro Text */
.intro {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* Link Grid */
.links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.links a {
  background-color: #1c1c24;
  padding: 1rem;
  border-radius: 10px;
  color: #f5f5ff;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}
.links a:hover {
  background-color: #2e2e38;
  color: #ffccff;
  box-shadow: 0 0 15px #ff90f5;
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #666;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
