@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Titillium Web', sans-serif;
  background: #121212;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  background: rgba(30, 30, 30, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #bb86fc;
  font-weight: 600;
}

.subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.button {
  padding: 0.75rem 1.5rem;
  background-color: #bb86fc;
  color: #121212;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #9b59b6;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}
