body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #a8e0ff, #8ec5fc, #e0c3fc);
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #444;
  letter-spacing: 1px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 1.5rem;
}

main a {
  width: 90%;
  max-width: 480px;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #6a85ff, #8f6aff);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

main a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

footer {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
}