/* ========== GLOBAL SETTINGS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #101215 0%, #101215 100%);
  font-family: "Poppins", sans-serif;
  color: #cfc3ff;
  overflow: hidden;
}

/* ========== LOGO ========== */
.logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.6));
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  animation:
  logoStartup 1.2s ease-out,
  pulse 6s ease-in-out infinite
}

@keyframes logoStartup {
  0% { opacity: 0; transform: scale(0.9); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes pulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(167, 139, 250, 0.8));
    transform: scale(1.02);
  }
}

/* ========== TEXT ========== */
.typing {
  font-size: 1.4rem;
  color: #c4b5fd;
  margin-top: 1.5rem;
  opacity: 0;
  animation:
    fadeIn 0.5s ease forwards 0.7s
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Blinkender Cursor */
.cursor {
  display: inline-block;
  animation: blink 1s infinite;
  animation-delay: 3s;
  color: #a78bfa;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .logo {
    width: 140px;
  }

  p {
    font-size: 1.2rem;
  }
}