body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
.container {
  max-width: 600px;
  padding: 20px;
}
.logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.5;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn-red {
  background-color: #b80000;
  color: #fff;
}
.btn-red:hover {
  background-color: #e00000;
}
.btn-gray {
  background-color: #333;
  color: #fff;
}
.btn-gray:hover {
  background-color: #555;
}
footer {
  font-size: 0.8rem;
  color: #666;
}
