body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #0e0e0e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  font-family: 'Monoton', cursive;
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  margin: 10px 0;
}

.tagline {
  font-style: italic;
  color: #ffcc00;
}

.notice {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #cccccc;
}

/* Loader animation */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ffcc00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 30px auto;
  animation: spin 1s linear infinite;
}

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