* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  text-align: center;
}

.container {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: fadeIn 1.2s ease-in-out;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 20px;
  font-weight: 300;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.8;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.website {
  background: #00c6ff;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.whatsapp {
  background: #25D366;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}
