* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f1115;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.logo {
  max-width: 180px;
  height: auto;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  color: #aaaaaa;
  max-width: 400px;
}

a {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #06ac96;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

a:hover {
  background-color: #2dd4bf;
}

.spinner {
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border: 4px solid #2a2f3a;
  border-top: 4px solid #1f6feb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #666;
}
