/* Reset dan gaya dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, blue, blue);
  color: white;
  overflow-x: hidden;
  animation: fadeInBody 1s ease-in-out;
}

@keyframes fadeInBody {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 600px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideInContainer 1s ease-in-out;
}

@keyframes slideInContainer {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.payment-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  animation: fadeInText 1s ease-out 0.5s forwards;
  opacity: 0;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.payment-options {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.payment-option {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInOption 1s ease-out;
}

@keyframes fadeInOption {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.payment-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.payment-option img {
  width: 100px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.payment-option button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background-color: #ffffff;
  color: #2d2dff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.payment-option button:hover {
  background-color: #2d2dff;
  color: #ffffff;
}

footer {
  background: linear-gradient(135deg, #2d2dff, #00c2ff);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #00c2ff; /* Mengubah warna tautan menjadi biru */
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  font-size: 18px;
  margin: 0 10px;
  color: #333333;
}

footer .social-icons a:hover {
  color: #00c2ff;
}


@keyframes fadeInFooter {
  to {
    opacity: 1;
  }
}
