* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h1 {
  margin-bottom: 10px;
}

p {
  color: #94a3b8;
  margin-bottom: 20px;
}

.link {
  display: block;
  text-decoration: none;
  color: white;
  background: #334155;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  transition: 0.3s;
}

.link:hover {
  background: #475569;
  transform: scale(1.05);
}

.footer {
  margin-top: 15px;
  font-size: 12px;
  color: #64748b;
}
