/* Import Font dari Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --glow-color: hsl(217, 100%, 50%); /* Warna pendaran utama */
  --text-color: #f0f0f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d0d1a;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  overflow-x: hidden;
}

/* --- Latar Belakang Partikel --- */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* Posisikan di paling belakang */
}

/* --- Header --- */
.store-header h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(90deg, #a7a7a7, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* --- Container Utama --- */
.payment-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
}

/* --- Kartu Pembayaran (Efek Glassmorphism & Glow) --- */
.payment-card {
  /* Efek Kaca */
  background: rgba(22, 33, 62, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  width: 320px;
  text-align: center;
  
  /* Efek Pendaran (Glow) */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 
              0 0 20px rgba(var(--glow-color), 0.2);
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Digunakan oleh JS untuk animasi */
  opacity: 0; 
}

.payment-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px rgba(var(--glow-color), 0.4), 
              0 0 40px rgba(var(--glow-color), 0.3);
}

.payment-logo {
  height: 45px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.7));
}

.account-info {
  margin-bottom: 1.5rem;
}

.account-info .name {
  display: block;
  font-size: 0.9em;
  color: #c0c0c0;
}

.account-info .number {
  font-size: 1.3em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(var(--glow-color), 0.5);
}

.qris-image {
  width: 80%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  background: white;
}

/* --- Tombol Aksi --- */
.action-btn {
  background: linear-gradient(45deg, hsl(217, 100%, 50%), hsl(217, 100%, 60%));
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(var(--glow-color), 0.3);
  display: inline-block;
}

.action-btn:hover {
  box-shadow: 0 0 25px rgba(var(--glow-color), 0.6);
  transform: scale(1.05);
}

.action-btn:active {
  transform: scale(0.95);
}

/* Responsif */
@media (max-width: 768px) {
  .store-header h1 {
    font-size: 2.2em;
  }
  .payment-card {
    width: 90%;
    max-width: 350px;
  }
}
