body {
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: #fff;
  overflow-x: hidden;
  margin: 0;
  perspective: 1px;
  transform-style: preserve-3d;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #ff004f33 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowtrail 5s linear infinite;
}

@keyframes glowtrail {
  0% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(10px, 10px); opacity: 0.1; }
  100% { transform: translate(0, 0); opacity: 0.3; }
}

.parallax {
  transform: translateZ(-1px) scale(2);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  z-index: -2;
  animation: parallaxScroll 30s linear infinite;
}

@keyframes parallaxScroll {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 20px #ff004f;
}

header h1 {
  font-size: 3rem;
  color: #ff004f;
  text-shadow: 0 0 20px #ff004f, 0 0 30px #ff004f;
}

.glow-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #ff004f;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff004f, 0 0 20px #ff004f;
  pointer-events: none;
  z-index: 999;
  animation: fadeOut 0.6s ease-out;
}

@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(2); }
}

.glow-button {
  background-color: #1a1a1a;
  color: #ff004f;
  border: 2px solid #ff004f;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 0 15px #ff004f;
  transition: all 0.3s ease;
}

.glow-button:hover {
  background-color: #ff004f;
  color: #fff;
  box-shadow: 0 0 30px #ff004f;
}

.glow-link {
  color: #ff004f;
  text-shadow: 0 0 10px #ff004f;
  font-weight: bold;
  font-size: 1.1rem;
        }
