:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-accent: #ff003c;
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-main);
}

.container {
  text-align: center;
  z-index: 2;
}

.typing-text {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.cursor {
  color: var(--text-accent);
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.sub-text {
  margin-top: 15px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  font-style: italic;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.sub-text.visible {
  opacity: 1;
}

.bg-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(255, 0, 60, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 15s infinite alternate ease-in-out;
}

@keyframes drift {
  0% {
    transform: translate(-10%, -10%);
  }
  100% {
    transform: translate(10%, 10%);
  }
}
