/* styles.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 2s ease-out;
}

.title {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: glow 1.5s infinite alternate;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 0;
  color: #c4c4c4;
}

.magic-circle {
  width: 150px;
  height: 150px;
  margin: 30px auto 0;
  border: 4px solid #00ccff;
  border-radius: 50%;
  position: relative;
  animation: spin 6s linear infinite;
}

.magic-circle::before,
.magic-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #00ccff;
  border-radius: 50%;
}

.magic-circle::before {
  width: 120px;
  height: 120px;
  animation: pulse 3s ease-in-out infinite;
}

.magic-circle::after {
  width: 90px;
  height: 90px;
  animation: pulse 3s ease-in-out infinite reverse;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #00ccff, 0 0 20px #00ccff;
  }
  to {
    text-shadow: 0 0 20px #00ccff, 0 0 40px #00ccff;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
