:root {
    --primary-color: #00f3ff; /* Neon Cyan */
    --secondary-color: #bc13fe; /* Neon Purple */
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-dark);
    /* Efek Grid Latar Belakang */
    background-image: 
        linear-gradient(to right, rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-main);
    min-height: 100vh;
}

/* --- Navbar --- */
nav {
    background: rgba(5, 5, 5, 0.9);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px var(--secondary-color);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    text-shadow: 0 0 10px var(--primary-color);
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-icons i {
    font-size: 1.5rem;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icons i:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Banner Slider --- */
.banner {
    width: 100%;
    /* Hapus height: 200px yang lama, ganti jadi auto */
    height: auto; 
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    /* Hapus background lama karena akan tertutup gambar */
    background: transparent; 
    
    /* Border Cyber */
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    
    /* Hapus padding agar gambar mentok ke pinggir */
    padding: 0; 
    display: block; /* Hapus display: flex */
}

/* Style Khusus Gambar Banner */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar tidak gepeng */
    display: block;
    border-radius: 15px;
}

/* Efek Garis Jalan (Scanline) di ATAS Gambar */
/* Kita ubah namanya jadi .scanline agar lebih spesifik */
.scanline {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    animation: scanline 3s infinite linear;
    z-index: 2; /* Pastikan efek ini ada di DEPAN gambar */
    pointer-events: none; /* Agar gambar di belakangnya tetap bisa diklik jika perlu */
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- Search Bar --- */
.search-box {
    position: relative;
    margin-bottom: 30px;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass);
    background: var(--bg-card);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
}

/* --- Game Grid --- */
.section-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
    font-size: 1.2rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.card-img {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 10px;
    text-align: center;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-info p {
    font-size: 0.7rem;
    color: var(--primary-color);
}

/* --- Floating Action Button (WA) --- */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 99;
    cursor: pointer;
    transition: 0.3s;
}

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

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}
@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .banner {
        height: 140px;
    }
    .banner h2 {
        font-size: 1.2rem;
    }
}

/* --- DETAIL PAGE STYLES --- */

/* Header Game */
.game-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), transparent);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.game-header img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--primary-color);
}

.game-header h2 {
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.features span {
    background: rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
    color: var(--primary-color);
}

/* Card Sections (Kotak Langkah 1, 2, 3) */
.card-section {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.section-num {
    background: var(--secondary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: -10px;
    box-shadow: 0 0 10px var(--secondary-color);
}

.card-section h3 {
    margin-bottom: 15px;
    margin-left: 15px;
    font-family: 'Orbitron', sans-serif;
}

/* Form Inputs */
.form-row {
    display: flex;
    gap: 10px;
}

.cyber-input {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass);
    color: white;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.cyber-input.full-width {
    width: 100%;
}

.cyber-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Item Grid (Pilihan Diamond) */
.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.item-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.item-card:hover {
    background: rgba(255,255,255,0.1);
}

.item-card.active {
    border-color: var(--primary-color);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.diamond-amount {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.diamond-price {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Payment Methods */
.payment-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}

.payment-item:hover {
    background: rgba(20, 57, 82, 0.08);
}

.payment-item.active {
    border-color: var(--secondary-color);
    background: rgba(188, 19, 254, 0.1);
}

.payment-item i {
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Button Beli */
.buy-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--secondary-color), #8a2be2);
    border: none;
    color: white;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
    transition: 0.3s;
    margin-top: 15px;
}

.buy-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.8);
}

/* --- UPDATE BAGIAN LOGO DI CSS --- */

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    text-shadow: 0 0 10px var(--primary-color);
    letter-spacing: 2px;
    /* Tambahan baru agar gambar dan teks sejajar */
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antara gambar dan teks */
}

/* Style baru khusus untuk gambar logo */
.logo-img {
    height: 40px; /* Tinggi tetap agar pas di navbar */
    width: auto;  /* Lebar menyesuaikan proporsi */
    /* Efek Cyber: Memberikan bayangan neon pada gambar logo */
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.logo span {
    color: var(--primary-color);
}

/* -------------------------------- */
/* --- PAYMENT MARQUEE SECTION (BOX STYLE) --- */

.payment-section {
    /* Mengatur Lebar & Posisi Tengah */
    max-width: 1200px;  /* Samakan dengan width .container di atas */
    width: 95%;         /* Agar tidak terlalu mepet di layar HP */
    margin: 50px auto;  /* AUTO kiri-kanan inilah yang membuatnya DI TENGAH */
    margin-top: 150px;
    /* Tampilan Kotak */
    background: rgba(18, 18, 18, 0.9); /* Latar lebih gelap */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Garis tipis sekeliling */
    border-radius: 20px; /* Sudut melengkung */
    
    /* Dekorasi Neon (Opsional: Hapus jika ingin polos) */
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.05); 
    border-top: 2px solid var(--primary-color);
    
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Judul Section */
.payment-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.payment-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 25px;
}

/* Slider Container */
.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    /* Masking: Membuat efek pudar di kiri kanan slider */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Track Animasi (Sama seperti sebelumnya) */
.slider-track {
    display: flex;
    width: calc(200px * 24); 
    animation: scroll 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

/* Style Kotak Logo Individual */
.slide {
    width: 120px; /* Ukuran sedikit diperkecil agar muat manis di dalam box */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.144);
    transition: 0.3s;
}

.slide:hover {
    background: rgb(255, 255, 255);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.slide img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: 0.3s;
}

.slide:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120px * 12 - 20px * 12)); } 
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .payment-section {
        width: 90%;
        margin: 30px auto;
        padding: 20px 0;
    }
    
    .payment-title {
        font-size: 1.2rem;
    }
    
    /* Sesuaikan kalkulasi animasi untuk mobile jika perlu, 
       tapi biasanya calc di atas sudah cukup aman */
}

/* --- UPDATE NAVIGASI MENU (STYLE RAPSPOINT) --- */

/* Reset Nav agar bisa menampung 3 bagian (Kiri, Tengah, Kanan) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px; /* Sedikit lebih tipis agar rapi */
    background: rgba(5, 5, 5, 0.95); /* Hampir solid black */
    gap: 20px;
}

/* Container Menu Tengah */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px; /* Jarak antar tombol menu */
}

/* Style Link Menu Utama */
.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700; /* Font Tebal seperti di foto */
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px; /* Jarak ikon ke tulisan */
    transition: 0.3s;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    position: relative;
}

/* Warna Ikon Biru Muda (Cyan) agar mirip referensi tapi tetap tema Cyber */
.nav-link i {
    color: var(--primary-color);
    font-size: 1rem;
    filter: drop-shadow(0 0 2px var(--primary-color));
}

/* Efek Hover (Saat Mouse Diarahkan) */
.nav-link:hover, .nav-link.active {
    background: rgba(0, 243, 255, 0.1); /* Background tipis saat hover */
    color: white;
}

/* --- FITUR DROPDOWN (MENU LAINNYA) --- */
.dropdown {
    position: relative; /* Penting agar anak menu tidak lari */
    display: inline-block;
}

.dropdown-content {
    display: none; /* Sembunyi dulu */
    position: absolute;
    top: 100%; /* Muncul persis di bawah tombol */
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 10px 0;
    margin-top: 10px; /* Jarak sedikit dari navbar */
    animation: fadeIn 0.3s ease;
}

/* Panah kecil di menu Lainnya */
.down-icon {
    font-size: 0.7rem !important;
    margin-left: 3px;
    color: #888 !important;
}

/* Isi Menu Dropdown */
.dropdown-content a {
    color: #ddd;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background-color: rgba(0, 243, 255, 0.1);
    color: var(--primary-color);
    padding-left: 25px; /* Efek geser sedikit saat hover */
}

/* Munculkan Dropdown saat Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

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

/* --- RESPONSIVE MOBILE (Scroll Samping) --- */
/* Agar menu tidak berantakan di HP, kita buat bisa digeser ke samping */
@media (max-width: 900px) {
    nav {
        flex-wrap: wrap; /* Biarkan elemen turun ke bawah jika sempit */
        padding: 10px 15px;
    }

    .logo {
        width: 100%; /* Logo jadi baris sendiri di atas */
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-icons {
        position: absolute; /* Ikon user tetap di pojok kanan atas */
        top: 20px;
        right: 20px;
    }

    .nav-menu {
        width: 100%;
        overflow-x: auto; /* Aktifkan scroll samping */
        white-space: nowrap; /* Cegah teks turun ke bawah */
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch; /* Scroll halus di iPhone */
    }

    .nav-link {
        font-size: 0.8rem; /* Font agak kecil di HP */
        padding: 8px 12px;
        background: rgba(255,255,255,0.05); /* Tambah background kotak tipis di HP */
        border-radius: 50px;
    }
    
    /* Sembunyikan Scrollbar agar rapi */
    .nav-menu::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }
}

/* --- FITUR DROPDOWN (YANG SUDAH DIPERBAIKI) --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none; /* Tersembunyi secara default */
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #1a1a1a; /* Warna background gelap */
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    border: 1px solid var(--primary-color); /* Border neon biar jelas batasnya */
    z-index: 9999; /* Pastikan dia muncul DI ATAS banner/gambar lain */
    padding: 5px 0;
    
    /* PERBAIKAN PENTING: Menghapus margin agar menempel langsung */
    margin-top: 5px; 
}

/* Isi Menu */
.dropdown-content a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(0, 243, 255, 0.2);
    color: var(--primary-color);
    padding-left: 25px; 
}

/* Class ini akan dipanggil oleh JavaScript saat diklik */
.show {
    display: block !important; /* Paksa muncul */
    animation: fadeIn 0.3s;
}

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

/* --- FLASH SALE CYBER STYLE --- */
.flash-sale-container {
    background: rgba(250, 250, 250, 0.219); /* Merah tipis tanda bahaya/urgensi */
    border: 1px solid rgb(0, 255, 255);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(0, 238, 255);
    padding-bottom: 10px;
}

/* --- UPDATE CSS FLASH SALE --- */

.flash-header h3 {
    /* Hapus color: #ff3b3b; yang lama, kita ganti di span bawah */
    color: white; /* Warna default ikon petir */
    font-family: 'Orbitron';
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem; /* Perbesar sedikit agar efeknya kelihatan */
}

/* Ikon Petir tetap merah solid */
.flash-header h3 i {
    color: #ff3b3b;
    filter: drop-shadow(0 0 5px #ff3b3b);
}

/* --- STYLE BARU: TEKS NEON BERGARIS --- */
.neon-text {
    /* Trik untuk membuat outline gradient: */
    
    /* 1. Buat warna isian teks menjadi transparan */
    color: transparent;
    
    /* 2. Tentukan ketebalan dan warna dasar garis pinggir (stroke) */
    -webkit-text-stroke: 2px #ff3b3b;
    
    /* 3. Buat background gradient (Merah - Oranye/Kuning - Merah) */
    background: linear-gradient(90deg, #ff0000, #ff8c00, #ffe600, #ff0000);
    background-size: 300% auto; /* Ukuran background lebih besar untuk animasi */
    
    /* 4. "Potong" background agar hanya muncul pada bentuk teks/stroke tadi */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* 5. Tambahkan bayangan (glow) agar terlihat seperti neon menyala */
    text-shadow: 
        0 0 5px rgba(255, 0, 0, 0.5),
        0 0 15px rgba(255, 140, 0, 0.3);
        
    /* 6. (Opsional) Animasi agar gradasinya bergerak mengalir */
    animation: neonFlow 3s linear infinite;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Animasi aliran warna neon */
@keyframes neonFlow {
    to {
        background-position: 300% center;
    }
}

.countdown {
    font-family: 'Orbitron';
    font-size: 1.5rem;
    color: white;
    background: #000;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid rgb(10, 255, 243);
}

.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.flash-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.flash-card:hover {
    transform: scale(1.02);
    border-color: #00f7ff;
}

.flash-card img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.discount-tag {
    position: absolute;
    top: 0; right: 0;
    background: red;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}

.coret { text-decoration: line-through; color: #888; font-size: 0.8rem; }
.harga-promo { color: #ff3b3b; font-weight: bold; font-size: 1rem; }

/* Progress Bar Stok */
.bar-container {
    width: 100%;
    height: 5px;
    background: #333;
    border-radius: 5px;
    margin: 5px 0;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: red;
}
/* --- STYLE PILIHAN BANK (SUB MENU) --- */

/* Wadah daftar bank (Awalnya tersembunyi/height 0) */
.bank-grid {
    display: none; /* Sembunyi dulu */
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom */
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: -5px;
    margin-bottom: 10px;
    animation: slideDown 0.3s ease;
}

/* Tampilan Kotak Bank */
.bank-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.bank-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Saat Bank Dipilih */
.bank-item.active {
    border-color: var(--primary-color);
    background: rgba(0, 243, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Ukuran Gambar Logo Bank */
.bank-item img {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.bank-name {
    font-size: 0.9rem;
    font-weight: bold;
}

/* Animasi Muncul */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- STYLE KHUSUS BANNER HALAMAN JOKI --- */

.joki-banner {
    /* Mengatur tinggi banner agar lebih proporsional */
    height: 250px !important; 
    
    /* Menggunakan Gambar sebagai background */
    /* Layer 1 (Atas): Gradien hitam transparan agar tulisan terbaca */
    /* Layer 2 (Bawah): Gambar Gaming (Ganti URL ini jika punya gambar sendiri) */
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9)), 
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    
    /* Mengatur agar isi banner ada di tengah */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Memastikan efek scanline tidak keluar batas */
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    width: 95%;
}

.banner-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: white;
    /* Efek bayangan neon pada teks */
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.banner-content p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(0,0,0,0.5); /* Latar belakang tipis untuk subtitle */
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block; /* Agar background mengikuti panjang teks */
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .joki-banner {
        height: 180px !important;
    }
    .banner-content h2 {
        font-size: 1.5rem;
    }
    .banner-content p {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* --- FOOTER STYLE --- */
footer {
    background: #000;
    border-top: 2px solid var(--secondary-color);
    padding-top: 40px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-section h3 {
    color: white;
    font-family: 'Orbitron';
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
.footer-section ul li a:hover { color: var(--primary-color); padding-left: 5px; }

.socials a {
    display: inline-block;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}
.socials a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #050505;
    color: #666;
    font-size: 0.8rem;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
/* --- STYLE FILTER KATEGORI (CYBER PILL) --- */

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px; /* Jarak antara tombol filter dan daftar item */
}

.filter-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass);
    color: var(--text-dim);
    padding: 8px 20px;
    border-radius: 50px; /* Bentuk kapsul/pill */
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--primary-color);
}

/* Saat tombol filter aktif/dipilih */
.filter-btn.active {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}