* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}


#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}

.overlay {
  position: relative;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.qr {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.qr:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  .card {
    width: 90%;
  }
}
.wallet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

button {
  background-color: rgba(255,255,255,0.2);
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: rgba(255,255,255,0.4);
}

#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 999;
}
.wallet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.wallet-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.8s ease forwards;
}

.wallet-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.wallet-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.wallet-info {
  flex-grow: 1;
  text-align: left;
}

.wallet-label {
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
}

.wallet-number {
  display: block;
  font-size: 0.95rem;
  color: white;
  margin-top: 5px;
}

button {
  background-color: rgba(255,255,255,0.2);
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: rgba(255,255,255,0.4);
}

.dana { border-left: 5px solid #1DA1F2; }
.gopay { border-left: 5px solid #00B9E0; }
.ovo { border-left: 5px solid #8F5FE8; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

