/* =====================================================
   START GLOBAL RESET & BASE STYLE
   Fungsi: reset default browser & font utama
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(180deg, #0d0221, #1a0638);
    color: #fff;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 15px;
}
/* ===============================
   END GLOBAL RESET & BASE STYLE
================================ */

/* =====================================================
   START ADVANCED CAROUSEL
===================================================== */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    
    /* Z-index untuk memastikan konten di atas animasi */
    z-index: 1;
    padding: 3px; /* Ketebalan frame neon */
    
    /* Background dasar saat gambar belum muat
    background: transparent; */
    box-shadow: 0 0 15px #000;
}

/* Efek Neon Berputar untuk Banner */
.banner::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: conic-gradient(
        transparent, 
        #ff0080, /* Pink Neon */
        #7928ca, /* Ungu VIP */
        transparent 20%
    );
    animation: rotateNeonBanner 5s linear infinite;
    z-index: -2;
}

/* Lapisan Inner Mask (Tempat Gambar Banner) */
.banner::after {
    content: "";
    position: absolute;
    inset: 3px; /* Jarak frame neon */
    background: #0d0221;
    border-radius: 10px;
    z-index: -1;
}

/* Memastikan gambar banner mengikuti lekukan border radius */
.banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 9px; /* Sedikit lebih kecil dari container */
    position: relative;
    z-index: 2;
}

/* Animasi Rotasi Banner */
@keyframes rotateNeonBanner {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Efek Kilatan Cahaya (Glow) saat Hover */
.banner:hover {
    box-shadow: 0 0 15px #000;
    transition: 0.5s ease;
    transform: scale(1.02); /* Sedikit membesar saat dilihat */
}

.slider {
    position: relative;
    width: 100%;
}

/* Setiap slide banner */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1s ease;
}

/* Slide aktif */
.slide.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
}

/* Gambar banner */
.slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Dot indicator */
.dots {
    position: absolute;
    bottom: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dots span.active {
    background: #4b0f7a;
}
/* ===============================
   END ADVANCED CAROUSEL
================================ */

/* =====================================================
   START CARD CONTAINER
===================================================== */
.card {
    /* Background asli Anda tetap dipertahankan */
    background: linear-gradient(180deg, #4b0f7a, #2a004f);
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
    position: relative; /* Penting untuk posisi neon */
    z-index: 1;
    overflow: hidden; /* Memotong cahaya yang berlebih */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px #000;
}

/* Lapisan Animasi Neon Pinggir */
.card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Gradient warna neon yang akan berputar */
    background: conic-gradient(
        transparent, 
        #7928ca, 
        #ff0080, 
        transparent 30%
    );
    animation: rotateNeon 5s linear infinite;
    z-index: -2;
}

/* Lapisan Penutup agar konten tetap terlihat jelas */
.card::after {
    content: "";
    position: absolute;
    inset: 3px; /* Ketebalan garis neon (3px) */
    background: inherit; /* Mengambil background asli .card */
    border-radius: 14px;
    z-index: -1;
}

.card h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Efek teks bercahaya */
    text-shadow: 0 0 15px #000;
}

/* Animasi Rotasi Neon */
@keyframes rotateNeon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Efek Tambahan: Hover agar lebih hidup */
.card:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END CARD CONTAINER
================================ */

/* =====================================================
   START INFO BOX (DEPOSIT & WD)
===================================================== */
.info-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item {
    flex: 1;
    background: #3a0066;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.info-item span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.info-item strong {
    font-size: 15px;
    color: #00ffcc;
}

/* ===============================
   END INFO BOX
================================ */

/* =====================================================
   START SERVER SELECT
===================================================== */
.server {
    margin-bottom: 6px;
}

.server-title {
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
    text-align: center;
}

.server label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.server select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #4a007f;
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END SERVER SELECT
================================ */

/* =====================================================
   START SITUS SELECT
===================================================== */
.situs {
    margin-bottom: 6px;
}

.situs-title {
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
    text-align: center;
}

.situs label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.situs select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #4a007f;
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END SITUS SELECT
================================ */

/* =====================================================
   START WITHDRAW & JACKPOT INFO
===================================================== */
.withdraw {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.withdraw strong {
    display: block;
    color: #ffd700;
}
/* ===============================
   END WITHDRAW & JACKPOT INFO
================================ */

/* =====================================================
   START BUTTON ACTION
   Fungsi: DAFTAR & LOGIN
===================================================== */
.btn-group {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.btn.daftar {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
    color: #fff;
    box-shadow: 0 0 15px #000;
}

.btn.login {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END BUTTON ACTION
================================ */

/* =====================================================
   START WITHDRAW TERBARU (MARQUEE)
   Fungsi:
   - Text berjalan ke kiri
   - Auto loop
===================================================== */
.withdraw-live {
    margin-bottom: 15px;
}

.withdraw-title {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
    text-align: center;
}

.withdraw-marquee {
    width: 100%;
    overflow: hidden;
    background: #3a0066;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 0 15px #000;
}

.withdraw-track {
    display: flex;
    width: max-content;
    animation: scroll-left 100s linear infinite;
}

/* Highlight withdraw besar */
.withdraw-track span.big {
    color: #ffd700;
}

/* Pause saat disentuh / hover */
.withdraw-marquee:hover .withdraw-track {
    animation-play-state: paused;
}

.withdraw-track span {
    white-space: nowrap;
    margin-right: 30px;
    font-size: 13px;
    color: #00ffcc;
}

/* Animasi teks berjalan */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* ===============================
   END WITHDRAW TERBARU
================================ */

/* =====================================================
   START RESPONSIVE MOBILE
===================================================== */
@media (max-width: 480px) {
    .withdraw-track span {
        font-size: 12px;
        margin-right: 20px;
    }
}
/* ===============================
   END RESPONSIVE MOBILE
================================ */

/* ===============================
   START LOADING NOTIFICATION
================================ */
.loading-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-box {
    background: linear-gradient(180deg, #4b0f7a, #2a004f);
    padding: 20px;
    border-radius: 14px;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.loading-box p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #ffd700;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #2a004f;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00ffcc, #ffd700);
    transition: width 0.3s;
}

#progressPercent {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #00ffcc;
}
/* ===============================
   END LOADING NOTIFICATION
================================ */

/* ===============================
   START BACKGROUND FULL
================================ */
.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top, #3b0066, #12001f);
}

/* CONTAINER UTAMA */
.container {
    width: 100%;
    max-width: 480px;
    /* MOBILE */
    padding: 16px;
}

/* ===============================
   DESKTOP RESPONSIVE
================================ */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
        /* TABLET */
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        /* DESKTOP */
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        /* LARGE DESKTOP */
    }
}
/* ===============================
   END BACKGROUND FULL
================================ */

/* ===============================
   START BONUS SECTION
================================ */
.bonus-section {
    /* Background asli Anda tetap terjaga */
    background: linear-gradient(135deg, #4b0082, #6a0dad);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 14px 0;
    position: relative; /* Wajib untuk posisi neon */
    z-index: 1;
    overflow: hidden; /* Memotong sisa cahaya neon agar rapi */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px #000;
}

/* Lapisan Animasi Neon Berputar */
.bonus-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Gradient warna neon yang serasi dengan ungu */
    background: conic-gradient(
        transparent, 
        #a020f0, /* Ungu terang */
        #ff00ff, /* Magenta neon */
        transparent 30%
    );
    animation: rotateNeonBonus 4s linear infinite;
    z-index: -2;
}

/* Lapisan Penutup Tengah agar konten tetap bersih */
.bonus-section::after {
    content: "";
    position: absolute;
    inset: 3px; /* Ketebalan garis neon */
    background: inherit; /* Mengambil warna background asli bonus-section */
    border-radius: 12px;
    z-index: -1;
}

/* Animasi Rotasi Khusus untuk Bonus */
@keyframes rotateNeonBonus {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Tambahan Efek Glow pada teks di dalam bonus */
.bonus-section h3 {
    color: #fff;
    text-shadow: 0 0 15px #000;
    font-weight: bold;
}

.bonus-title {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #000;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 13.5px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 15px #000;
}

.bonus-list li strong {
    color: #00ffea;
    font-weight: bold;
    text-shadow: 0 0 15px #000;
}

/* ===============================
BONUS RULES
=============================== */
.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-rules-btn {
    display: block;
    margin: 0 auto 10px auto;
    background: linear-gradient(135deg, #7b2cff, #b266ff);
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px #000;
}

.bonus-rules-btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.bonus-rules {
    display: none;
    margin-top: 12px;
}

.rules-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    font-size: 13px;
    color: #eee;
    line-height: 1.6;
    box-shadow: 0 0 15px #000;
}

.rules-box h4 {
    margin-top: 10px;
    margin-bottom: 4px;
    color: #ffd6ff;
    font-size: 13px;
}

.rules-box ul {
    padding-left: 16px;
    margin: 6px 0;
}

.rules-box ul li {
    margin-bottom: 4px;
}
/* ===============================
   END BONUS SECTION
================================ */

/* ===============================
   START FOOTER COPYRIGHT
================================ */
.site-footer {
    /* Background asli Anda tetap dipertahankan */
    background: linear-gradient(180deg, #3b0f63, #22082f);
    margin-top: 20px;
    padding: 16px 12px;
    text-align: center;
    border-radius: 12px;
    
    /* Pengaturan posisi untuk neon */
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px #000; /* Bayangan ke arah atas */
}

/* Lapisan Animasi Neon Berputar Footer */
.site-footer::before {
    content: "";
    position: absolute;
    top: -150%; /* Lebih lebar karena footer biasanya pipih lebar */
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(
        transparent, 
        #7928ca, 
        #ff0080, 
        transparent 25%
    );
    animation: rotateNeonFooter 6s linear infinite; /* Durasi 6 detik lebih slow */
    z-index: -2;
}

/* Lapisan Penutup Tengah */
.site-footer::after {
    content: "";
    position: absolute;
    inset: 2px; /* Garis neon lebih tipis untuk footer (2px) */
    background: inherit;
    border-radius: 10px;
    z-index: -1;
}

/* Animasi Rotasi Footer */
@keyframes rotateNeonFooter {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Styling Teks Footer agar lebih nyata */
.site-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px #000;
}

.footer-content {
    max-width: 420px;
    margin: auto;
}

.footer-brand {
    font-size: 12px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 4px;
    text-shadow: 0 0 15px #000;
}

.footer-desc {
    font-size: 12px;
    color: #c8a6ff;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 15px #000;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #9b4dff, #c77dff);
    transform: scale(1.05);
}
/* ===============================
   END FOOTER COPYRIGHT
================================ */

/* ===============================
   START SEO TEXT
================================ */
.seo-text {
    font-size: 12px;
    color: #d7c7ff;
    text-align: center;
    line-height: 1.6;
    margin: 8px 0 14px;
    text-shadow: 0 0 15px #000;
}
/* ===============================
   END SEO TEXT
================================ */

/* ===============================
   START POPUP LOKASI
================================ */
.location-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.location-box {
    background: linear-gradient(135deg,#2b0a3d,#4b176a);
    color: #fff;
    padding: 22px;
    border-radius: 14px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.location-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.location-box p {
    font-size: 13px;
    line-height: 1.5;
    opacity: .9;
}

.location-btns {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn-allow,
.btn-deny {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-allow {
    background: #a855f7;
    color: #fff;
    box-shadow: 0 0 15px #000;
}

.btn-allow:hover {
    background: #9333ea;
}

.btn-deny {
    background: rgba(255,255,255,.15);
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END POPUP LOKASI
================================ */

/* ===============================
   START POPUP HALAMAN
================================ */
/* CSS MODAL PREMIUM - OPTIMIZED FOR MOBILE & DESKTOP */
.modal-overlay {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(8, 2, 12, 0.9);

  backdrop-filter: blur(10px);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 10000;

  padding: 15px; /* Padding luar agar modal tidak nempel pinggir layar mobile */
}

/* Container Utama List */
.promo-features.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Membagi 2 kolom sama rata */
  gap: 1px 5px; /* Jarak antar baris 8px, jarak antar kolom 15px */
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 auto 1px;
  max-width: 95%; /* Menjaga agar tetap rapi di tengah */
}

/* Styling Tiap Item */
.promo-features.split-grid li {
  color: #e0e0e0;
  font-size: 8px; /* Ukuran font diperkecil agar pas 2 kolom */
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap; /* Mencegah teks turun ke bawah jika kepanjangan */
  overflow: hidden;
  text-overflow: ellipsis; /* Memberikan titik tiga jika teks terlalu panjang */
}

/* Icon Bintang/✦ */
.promo-features.split-grid li span {
  color: #7928ca;
  margin-right: 6px;
  font-size: 12px;
  filter: drop-shadow(0 0 5px rgba(121, 40, 202, 0.5));
}

/* Responsif Mobile: Jika layar sangat kecil, font sedikit dikecilkan lagi */
@media (max-width: 360px) {
  .promo-features.split-grid {
    gap: 6px 10px;
  }
  .promo-features.split-grid li {
    font-size: 10px;
  }
}

.promo-box {
  background: #0f051a;

  border-radius: 25px;

  max-width: 400px; /* Diperkecil sedikit agar lebih elegan */

  width: 100%;

  max-height: 90vh; /* Maksimal tinggi 90% dari tinggi layar */

  position: relative;

  padding: 2px;

  overflow: hidden;

  box-shadow: 0 0 15px #000;

  animation: modalPop 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.promo-box::before {
  content: "";

  position: absolute;

  width: 200%;
  height: 200%;

  background: conic-gradient(transparent, #7928ca, #ff0080, transparent 30%);

  top: -50%;
  left: -50%;

  animation: rotateBorder 4s linear infinite;
}

.promo-inner {
  background: #0f051a;

  border-radius: 23px;

  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  max-height: calc(90vh - 4px);
}

/* ANTI-CUT IMAGE SETTINGS */

.image-wrapper {
  position: relative;

  width: 100%;

  height: 160px; /* Tinggi gambar dikurangi agar tidak makan tempat */

  overflow: hidden;

  border-radius: 20px 20px 0 0;
}

#promoImg {
  width: 100%;

  height: 100%;

  object-fit: fill; /* Gambar akan menyesuaikan area tanpa gepeng */

  object-position: center;
}

/* Area konten yang bisa di-scroll jika layar hp pendek */

.promo-content-scroll {
  overflow-y: auto;

  padding: 0 20px;

  scrollbar-width: none; /* Hilangkan scrollbar di Firefox */
}

.promo-content-scroll::-webkit-scrollbar {
  display: none;
} /* Hilangkan scrollbar di Chrome/Safari */

.promo-text {
  padding: 15px 0;
  text-align: center;
}

.neon-title {
  font-size: 22px; /* Ukuran font disesuaikan */

  font-weight: 900;

  background: linear-gradient(to right, #fff, #7928ca);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  margin-bottom: 8px;
}

.highlight-box {
  background: rgba(121, 40, 202, 0.15);

  border: 1px solid rgba(121, 40, 202, 0.3);

  padding: 8px;

  border-radius: 12px;

  color: #ffcc00;

  font-weight: bold;

  font-size: 14px;

  margin-bottom: 15px;
}

.promo-features {
  text-align: left;

  list-style: none;

  padding: 0;

  margin-bottom: 15px;
}

.promo-features li {
  color: #ccc;

  font-size: 13px;

  padding: 6px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  display: flex;

  align-items: center;
}

.promo-features li span {
  color: #7928ca;
  margin-right: 8px;
}

.promo-footer {
  display: flex;

  padding: 15px 20px 20px;

  gap: 10px;

  background: #0f051a;
}

.btn-claim {
  flex: 2;
  background: linear-gradient(45deg, #7928ca, #ff0080);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
}

.close-x {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1); /* Efek kaca transparan */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 28px; /* Menyeimbangkan posisi silang di tengah */
  text-align: center;
  cursor: pointer;
  z-index: 20;
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #000;
}

.close-x:hover {
  background: linear-gradient(
    45deg,
    #7928ca,
    #ff0080
  ); /* Warna gradient ungu-pink */
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1); /* Berputar dan sedikit membesar */
  box-shadow: 0 0 15px #000;
  color: #ffffff;
}

.close-x:active {
  transform: scale(0.9);
}

@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-height: 600px) {
  .image-wrapper {
    height: 100px;
  }

  .neon-title {
    font-size: 18px;
  }
}
/* ===============================
   END POPUP HALAMAN
================================ */