/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  height: 100vh;
  background: radial-gradient(circle at top, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  z-index: 2;
  padding: 20px;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: glow 2s ease-in-out infinite alternate;
  margin-bottom: 10px;
}

/* Responsive font sizes */
@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}

p {
  margin-top: 20px;
  font-size: 1.2rem;
  opacity: 0.8;
  padding: 0 15px;
}

/* Smaller text on mobile */
@media (max-width: 480px) {
  p {
    font-size: 1.05rem;
  }
}

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

.bg-animation {
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #00fff2, #ff00c8, #00fff2);
  opacity: 0.1;
  animation: move 10s linear infinite;
}

@keyframes move {
  0% { 
    transform: translate(-25%, -25%) rotate(0deg); 
  }
  100% { 
    transform: translate(-25%, -25%) rotate(360deg); 
  }
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  padding: 0 15px;
}

/* Button styles (in case you use it later) */
.button {
  margin-top: 30px;
  padding: 12px 30px;
  border: 2px solid #00fff2;
  color: #00fff2;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  display: inline-block;
}

.button:hover {
  background: #00fff2;
  color: black;
  box-shadow: 0 0 20px #00fff2;
}