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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f4f8;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
}

.logo {
  max-width: 120px;
  margin-bottom: 20px;
}

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

.message {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.links a {
  width: 100%;
  max-width: 280px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #0066ff;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.links a:hover {
  background: #0052cc;
}
.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}
