/* ================= Base Styles ================= */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Nunito', sans-serif; }
body { background-color: #0b132b; color: #ffffff; overflow-x: hidden; }

/* Canvas Background */
#lines-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; opacity: 0.6; }

/* ================= Header & Logo ================= */
header { padding: 20px 50px; text-align: center; }
.logo-text { 
    font-size: 3rem; 
    font-weight: 900; 
    fill: url(#gold-gradient); /* SVG Gradient dari HTML */
    color: #00FFFF; /* Fallback */
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ================= Sections & Utility ================= */
section { padding: 60px 20px; text-align: center; max-width: 1200px; margin: auto; }
.section-title { font-size: 2.5rem; color: #FFD700; margin-bottom: 30px; }

/* ================= Hero & Buttons ================= */
.hero-content p { font-size: 1.2rem; margin: 20px 0; color: #e0e0e0; }
.cta-btn {
    background: linear-gradient(45deg, #00FFFF, #00b3b3);
    color: #0b132b; border: none; padding: 15px 40px; border-radius: 50px;
    font-size: 1.2rem; font-weight: bold; cursor: pointer; display: inline-flex;
    align-items: center; gap: 10px; box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
    transition: transform 0.3s ease;
}
.cta-btn:hover { transform: scale(1.05); }

/* Balon Sosmed */
.social-balloons { position: absolute; top: 20%; right: 10%; display: flex; flex-direction: column; gap: 15px; }
.balloon { width: 50px; height: 50px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; border: 1px solid #00FFFF; }

/* ================= TABS KATEGORI (GLOWING PILLS) ================= */
.tabs { 
    display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; 
}
.tab-btn { 
    background: rgba(0, 255, 255, 0.05); border: 1px solid rgba(0, 255, 255, 0.3); 
    padding: 10px 25px; border-radius: 30px; color: #fff; font-weight: bold;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    backdrop-filter: blur(5px); 
}
.tab-btn.active, .tab-btn:hover { 
    background: rgba(0, 255, 255, 0.2); border-color: #00FFFF; color: #FFD700;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4); transform: translateY(-3px); 
}
/* ================= CINEMATIC GLASS PLAYER ================= */
.video-wrapper {
    position: relative; width: 100%; max-width: 400px; margin: 0 auto; /* Ukuran proporsional HP/Reels */
    background: rgba(11, 19, 43, 0.7);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px; /* Sudut membulat seperti HP modern */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(0, 255, 255, 0.1);
    padding: 12px; /* Menciptakan efek Bezel (bingkai) di pinggir video */
    display: flex; justify-content: center; align-items: center;
    min-height: 400px; transition: all 0.4s ease;
}

/* Menyala saat di-hover (Desktop) */
.video-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    border-color: #00FFFF;
}

/* FLEXIBLE VIDEO: Bisa Portrait atau Landscape */
.flexible-video {
    width: 100%; height: auto; max-height: 65vh; 
    border-radius: 12px; /* Melengkung mengikuti bingkai luar */
    object-fit: contain; opacity: 0; transition: opacity 0.5s ease;
}

/* Indikator Loading Cepat */
.loader {
    position: absolute;
    color: #00FFFF;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}
.spinner { font-size: 2rem; animation: spin 2s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.loader.hidden { display: none; }

/* ================= NAVIGASI (FLOATING BAR) ================= */
.video-nav {
    margin-top: -25px; /* Menarik navigasi naik ke atas bingkai bawah video */
    position: relative; z-index: 5;
    background: rgba(28, 37, 65, 0.9); backdrop-filter: blur(10px);
    padding: 10px 25px; border-radius: 50px; 
    display: inline-flex; align-items: center; gap: 20px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.nav-btn {
    background: transparent; color: #00FFFF; border: none; 
    font-size: 1.2rem; font-weight: bold; cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}
.nav-btn:hover:not(:disabled) { transform: scale(1.3); color: #FFD700; }
.nav-btn:disabled { color: #555; cursor: not-allowed; }
.counter-text { color: #FFD700; font-weight: 900; font-size: 1.1rem; }
.hidden { display: none !important; }

/* ================= PREMIUM BENEFIT CARDS ================= */
.benefit-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Agar rapi turun ke bawah jika di layar HP */
    padding: 20px 0;
}

.benefit-card {
    background: rgba(28, 37, 65, 0.4);
    backdrop-filter: blur(10px); /* Efek Kaca (Glassmorphism) */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    width: 300px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek memantul saat hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Kilauan emas saat kursor mendekat */
.benefit-card:hover {
    transform: translateY(-15px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    background: rgba(28, 37, 65, 0.8);
}

/* Garis Neon Cyan di atas kartu */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #00FFFF;
    transition: width 0.4s ease;
}

.benefit-card:hover::before {
    width: 80%; /* Garis menyala dari tengah ke samping saat di-hover */
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0,255,255,0.1), rgba(255,215,0,0.1));
    border: 2px solid #00FFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #FFD700;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: #00FFFF;
    color: #0b132b;
    transform: rotateY(360deg); /* Animasi icon berputar 3D */
    border-color: #FFD700;
}

.benefit-card h3 {
    color: #00FFFF;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= Modal ================= */
.modal-hidden { display: none; }
/* ================= MODAL BOX & SCROLLBAR ================= */
.modal-content {
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background: #1c2541; 
    padding: 40px 30px; /* Sedikit dikurangi padding kiri-kanan agar pas di HP */
    border-radius: 20px; 
    z-index: 10000;
    border: 2px solid #00FFFF; 
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    width: 90%; 
    max-width: 500px; 
    text-align: center;
    
    /* SIHIR ANTI-OVERFLOW (Mencegah termakan layar) */
    max-height: 85vh; /* Tinggi maksimal 85% dari layar HP/Laptop */
    overflow-y: auto; /* Munculkan scrollbar otomatis jika konten kepanjangan */
}

/* --- Kustomisasi Scrollbar Keren (Tema Neon) --- */
.modal-content::-webkit-scrollbar {
    width: 6px; /* Scrollbar tipis dan elegan */
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 255, 255, 0.05); 
    border-radius: 10px;
    margin: 10px 0; /* Memberi jarak atas bawah */
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.5); 
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #FFD700; /* Berubah emas saat disentuh/hover */
}
.payment-options { display: flex; justify-content: space-around; margin: 20px 0; }
.pay-btn { background: #3a506b; color: white; border: none; padding: 10px; border-radius: 10px; cursor: pointer; }
.form-hidden { display: none; }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Inputs & Actions */
input { width: 100%; padding: 10px; margin: 10px 0; border-radius: 5px; border: 1px solid #00FFFF; background: #0b132b; color: white; }
.submit-btn { background: #00FFFF; color: #0b132b; padding: 10px 20px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; margin-top: 10px; }
.cancel-btn { background: transparent; color: #ff4d4d; border: 1px solid #ff4d4d; padding: 10px 20px; border-radius: 5px; cursor: pointer; margin-left: 10px; }

/* ================= FAQ & Footer ================= */
details { background: rgba(255,255,255,0.05); padding: 15px; margin-bottom: 10px; border-radius: 10px; text-align: left; cursor: pointer; border-left: 3px solid #FFD700; }
summary { font-weight: bold; font-size: 1.1rem; }
/* ================= SECTION FAQ (GLASS ACCORDION) ================= */
#faq {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(11, 19, 43, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.faq-item summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #00FFFF;
    cursor: pointer;
    list-style: none; /* Hilangkan panah bawaan browser */
    position: relative;
    outline: none;
}

/* Kustomisasi Icon Panah Buka/Tutup */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFD700;
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding-top: 15px;
}

.faq-answer b {
    color: #FFD700; /* Highlight kata kunci penting di jawaban */
}

/* ================= FOOTER ELEGAN ================= */
footer {
    background: linear-gradient(to top, rgba(11, 19, 43, 1), transparent);
    text-align: center;
    padding: 60px 20px 40px; /* Padding atas besar agar tidak nabrak FAQ */
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-logo {
    color: #00FFFF;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Pastikan di layar HP, footer tidak tertutup oleh Bottom Navigation Bar */
@media (max-width: 768px) {
    footer {
        padding-bottom: 100px; 
    }
}

/* Tombol Minimize */
.minimize-modal { position: absolute; top: 10px; right: 50px; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; font-weight: bold; }

/* Floating Timer Widget (Otomatis menyesuaikan layar) */
#floating-timer {
    position: fixed; bottom: 30px; right: 30px; background: linear-gradient(45deg, #0b132b, #1c2541);
    color: #FFD700; border: 2px solid #00FFFF; padding: 15px 25px; border-radius: 50px;
    cursor: pointer; z-index: 9999; box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: bold;
    transition: transform 0.3s ease;
}
#floating-timer:hover { transform: scale(1.05); }

/* Jika di Mobile, ubah jadi Lingkaran */
@media (max-width: 768px) {
    #floating-timer { 
        width: 70px; height: 70px; border-radius: 50%; justify-content: center; 
        padding: 0; bottom: 20px; right: 20px; font-size: 1rem; flex-direction: column; gap: 2px;
    }
    .float-icon { display: none; } /* Sembunyikan ikon di HP agar pas */
}

/* Notifikasi Error Download Elegan */
#elegant-error {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(255, 77, 77, 0.9); border: 2px solid #ff1a1a;
    padding: 15px 30px; border-radius: 10px; z-index: 10000;
    color: white; font-weight: bold; text-align: center; box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}
#elegant-error button { background: white; color: red; border: none; padding: 5px 15px; margin-top: 10px; border-radius: 5px; cursor: pointer; }

/* Kontak Timeout */
.timeout-contacts { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.timeout-contacts a { font-size: 2rem; text-decoration: none; transition: transform 0.2s; }
.timeout-contacts a:hover { transform: scale(1.2); }

/* ================= TESTIMONI MARQUEE ================= */
#testimonials {
    overflow: hidden;
    padding: 60px 0;
    
    /* TEKNIK BREAKOUT CONTAINER */
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important; /* Mematikan margin auto dari CSS global */
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Efek fade out di pinggiran kiri-kanan */
    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);
}

.marquee-track {
    display: flex;
    width: max-content;
    /* Kita pindahkan gap ke dalam content */
    animation: scrollMarquee 20s linear infinite;
}

/* Pause animasi saat pengguna menyorot (hover) dengan mouse */
.marquee-track:hover {
    animation-play-state: paused;
}

/* CLASS BARU UNTUK MEMBUNGKUS GRUP */
.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px; /* RAHASIA MASTER: Padding ini harus persis sama dengan ukuran gap agar sambungan ke grup 2 mulus tanpa patah */
}

.testi-card {
    background: rgba(28, 37, 65, 0.8);
    border: 1px solid #00FFFF;
    border-radius: 20px;
    padding: 20px;
    width: 320px; /* Ukuran pas untuk HP dan Desktop */
    flex-shrink: 0; /* Cegah card gepeng */
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
    text-align: left;
    transition: transform 0.3s;
}

.testi-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    font-size: 2.5rem;
    background: #0b132b;
    border: 2px solid #FFD700;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testi-header h4 {
    color: #00FFFF;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.stars {
    font-size: 0.9rem;
}

.testi-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
    margin: 0;
}

/* Animasi Inti Scroll (Lebih Sederhana & Presisi) */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* ========================================== */
/* WARNA BRAND RESMI SOCIAL BALLOONS          */
/* ========================================== */

/* 1. Hilangkan garis bawah (underline) bawaan link browser */
.social-balloons .balloon {
    text-decoration: none !important;
}

/* 2. Transisi halus agar icon terasa hidup saat disentuh/hover */
.social-balloons .balloon i {
    transition: transform 0.3s ease;
    font-size: 1.5rem; /* Pastikan ukuran icon proporsional di dalam lingkaran */
}

/* Efek membesar saat kursor diarahkan */
.social-balloons .balloon:hover i {
    transform: scale(1.2);
}

/* 3. Facebook (Biru Resmi) */
.balloon.fb i {
    color: #1877F2 !important;
}

/* 4. Instagram (Gradient Emas ke Pink Resmi) */
.balloon.ig i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Wajib agar efek gradient text bekerja sempurna pada icon */
}

/* 5. Telegram (Biru Langit Resmi) */
.balloon.tt i {
    color: #0088cc !important;
}

/* 6. WhatsApp (Hijau Terang Resmi) */
.balloon.wa i {
    color: #25D366 !important;
}

/* ================= SECTION PRICING (VIP PASS) ================= */
#pricing {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    background: rgba(11, 19, 43, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.5); /* Emas tipis */
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 800px; /* Lebar optimal untuk Desktop */
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 20px rgba(0, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0b132b;
    font-weight: 900;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.pricing-header h2 {
    color: #00FFFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    margin-bottom: 10px;
}

.price-display .currency {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-top: 5px;
    margin-right: 5px;
}

.price-display .amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.price-display .zeros {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-top: 5px;
}

.price-subtitle {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ================= GRID CHECKLIST BENEFIT ================= */
.pricing-features {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Rahasia Desktop 2 Kolom, Mobile 1 Kolom Otomatis! */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: left;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-checklist li i {
    color: #00FFFF;
    font-size: 1.2rem;
    margin-top: 2px;
}

.feature-checklist li b {
    color: #fff;
}

/* ================= TOMBOL BELI BESAR ================= */
.buy-cta-pulse {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0b132b;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
    animation: pulseBig 2s infinite;
}

.buy-cta-pulse:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.6);
}

.secure-checkout {
    color: #888;
    font-size: 0.8rem;
    margin-top: 15px;
}

.secure-checkout i {
    color: #25D366; /* Warna hijau aman */
    margin-right: 5px;
}

/* Animasi Tombol Beli */
@keyframes pulseBig {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Penyesuaian khusus layar HP yang sangat kecil */
@media (max-width: 480px) {
    .pricing-card { padding: 25px 15px; }
    .price-display .amount { font-size: 3.5rem; }
    .buy-cta-pulse { font-size: 1.1rem; padding: 15px; }
}

/* ================= EFEK BLUR MODAL ================= */
#payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 19, 43, 0.85) !important; /* Kaca gelap pekat */
    backdrop-filter: blur(15px); /* Efek blur level bioskop */
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999; /* Memastikan layar belakang tertutup total */
}

/* ================= DRAG & DROP ZONE ================= */
.drop-zone {
    border: 2px dashed #00FFFF;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px 0;
}

.drop-zone:hover, .drop-zone.dragover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #FFD700;
    transform: scale(1.02);
}

.drop-zone i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.drop-zone p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ================= PROGRESS BAR UPLOAD ================= */
.progress-container {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 25px;
    display: none; /* Disembunyikan sebelum upload dimulai */
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00FFFF, #FFD700);
    text-align: center;
    line-height: 25px;
    color: #0b132b;
    font-size: 0.85rem;
    font-weight: 900;
    transition: width 0.2s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ================= IMAGE PREVIEW UPLOAD ================= */
.preview-image {
    max-width: 100%;
    max-height: 180px; /* Batasi tinggi agar modal tidak kepanjangan */
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
    object-fit: contain; /* Agar gambar tidak gepeng */
}

/* ================= LANGUAGE SWITCHER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 50px;
}

.lang-switcher {
    background: rgba(11, 19, 43, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    display: flex;
    overflow: hidden;
}

.lang-switcher a {
    text-decoration: none;
    color: #888;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    color: #00FFFF;
}

.lang-switcher a.active {
    background: #00FFFF;
    color: #0b132b;
}

/* Penyesuaian Mobile */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; padding: 20px; }
}

/* ================= FITUR COPY & QR CODE ================= */
.copy-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px dashed #00FFFF;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.copy-text {
    font-family: monospace;
    color: #FFD700;
    font-size: 1rem;
    word-break: break-all;
}

.btn-icon-action {
    background: #00FFFF;
    color: #0b132b;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.2s;
    margin-left: 10px;
    white-space: nowrap;
}

.btn-icon-action:hover {
    background: #FFD700;
    transform: scale(1.05);
}

.btn-qr {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    margin-top: 5px;
    width: 100%;
}

.qr-image-container {
    margin-top: 10px;
    display: none; /* Sembunyikan default */
    text-align: center;
}

.qr-image-container img {
    max-width: 150px;
    border-radius: 10px;
    border: 2px solid #00FFFF;
    padding: 5px;
    background: white;
}