* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: radial-gradient(circle at top, #0b0b0f, #010103);
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

header {
  margin-bottom: 3rem;
  position: relative;
}

/* Neon Pink Sign Style */
.neon-text {
 font-family: "Courier New", Courier, monospace;
  font-size: 5rem;
  color: hsl(41, 92%, 43%);
  font-weight: 100;
  text-shadow:
    0 0 5px hwb(31 3% 0%),
    0 0 10px #eb6c04,
    0 0 20px #d57208,
    0 0 40px #d97f01,
    0 0 80px #cc7920,
    0 0 100px #ff7700;
  animation: flicker 3s infinite;
  letter-spacing: 3px;
}

.bar-light {
  width: 60%;
  height: 6px;
  background: linear-gradient(90deg, transparent, lab(68.87% 38.37 74.71), transparent);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff8400;
  animation: pulse 3s infinite;
}

.hub-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hub-link {
  font-size: 1.3rem;
  color: #ccc;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.hub-link:hover {
  color: #ff8c00;
  box-shadow: 0 0 15px #ff8400;
  transform: scale(1.05);
  background: rgba(255, 102, 204, 0.1);
}

/* Animations */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}
