/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #00a8ff;
    --primary-dark: #0062cc;
    --accent: #2ecc71; /* Warna hijau WA */
    --dark-bg: #060b18; /* Background utama */
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --neon-shadow: 0 0 15px rgba(0, 168, 255, 0.5); /* Efek cahaya */
    --text-main: #e2e8f0;
    --text-muted: #cbd5e1;
    --accent: #2ecc71; /* Warna hijau untuk Tripay */
}

/* Tema Siang */
[data-theme="light"] {
    --dark-bg: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 168, 255, 0.4);
    --text-main: #0f172a;
    --text-muted: #475569;
    --sidebar-bg: #ffffff;
    --primary-dark: #0056b3;
}

[data-theme="light"] .olt-table {
    color: #1e293b; /* Teks tabel menjadi gelap */
}

[data-theme="light"] .olt-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .olt-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03); /* Garis selang-seling tipis gelap */
}

[data-theme="light"] .status-dot {
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.8); /* Glow status lebih tipis */
}

/* Memperjelas tag code di mode siang */
[data-theme="light"] code {
    background: rgba(0, 168, 255, 0.1);
    color: #0077cc;
    padding: 2px 6px;
    border-radius: 4px;
}

[data-theme="light"] .sidebar-links li a {
    color: #334155;
    /* Warna teks menu sidebar */
}

[data-theme="light"] .sidebar-links li a:hover {
    background: rgba(0, 168, 255, 0.1);
    color: var(--primary);
}

[data-theme="light"] body {
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 168, 255, 0.05) 0%, transparent 80%),
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

*   {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Hilangkan highlight biru di Android saat tap */
    }
    
body {
    text-align: center;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-top: 70px; /* Sudah disesuaikan agar lebih rapat */
    color: var(--text-main);
    overflow-x: hidden;
    background-color: #060b18; /* Biru Gelap Luar Angkasa */
        background-image: 
            url('img/world-map.png');
        background-attachment: fixed;
        position: relative;
        overflow-x: hidden;
}

/* Menambahkan Elemen Cahaya Laser yang Berjalan */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent, 
        #2ecc71, /* Hijau */
        #ffffff, /* Putih */
        #00a8ff, /* Biru */
        transparent);
    animation: internetFlow 5s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

/* Animasi Cahaya Tambahan (Acak) */
body::after {
    content: "";
    position: fixed;
    top: -100%;
    right: 10%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    animation: dataStreamVertical 6s linear infinite;
    z-index: -1;
    opacity: 0.3;
}


/* Animasi Cahaya Laser Mengalir (Fiber Optic) */
.laser-line {
    position: fixed;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2ecc71, #ffffff, #00a8ff, transparent);
    z-index: -1;
    opacity: 0.5;
    left: -100%;
}

/* Posisi laser yang berbeda-beda */
.l1 { top: 20%; animation: flow 6s linear infinite; }
.l2 { top: 50%; animation: flow 8s linear infinite 2s; }
.l3 { top: 80%; animation: flow 10s linear infinite 1s; }

@keyframes flow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Animasi Pergerakan Cahaya */
@keyframes internetFlow {
    0% { left: -100%; top: 10%; }
    100% { left: 100%; top: 15%; }
}

@keyframes verticalFlow {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Keyframes Cahaya Berjalan */
@keyframes dataStream {
    0% { left: -100%; top: 20%; }
    100% { left: 100%; top: 25%; }
}

@keyframes dataStreamVertical {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Tambahkan Dot Cahaya Statis seperti Node Internet */
.bg-nodes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: -2;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png'); /* Efek titik cahaya */
    opacity: 0.2;
    pointer-events: none;
    z-index: -2;
}

/* Container pembungkus agar konten di dalamnya ke tengah */
.theme-switch-wrapper {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center; /* Pusatkan secara horizontal */
    align-items: center;     /* Pusatkan secara vertical */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Styling label tombolnya */
.theme-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    background: var(--glass);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    min-width: 160px; /* Ukuran tetap agar tidak goyang saat ganti teks */
}

.theme-switch:hover {
    background: rgba(0, 168, 255, 0.1);
    border-color: var(--primary);
}

/* Warna ikon */
#theme-icon {
    font-size: 1.1rem;
    color: var(--primary);
}

.welcome-container-top {
    position: absolute;
    top: 20px;      /* Jarak dari atas */
    left: 65px;     /* Memberi ruang agar tidak menabrak tombol menu (sidebar-toggle) */
    z-index: 1002;  /* Pastikan di atas overlay video */
    pointer-events: none; /* Agar tidak menghalangi klik */
}

/* Container untuk tulisan agar presisi */
.welcome-container {
    padding: 20px 0;
    margin-top: 0px;
}

/* Animasi Tulisan JDS-NET SUKAMULYA */
.moving-text {
    font-size: 0.9rem; /* Ukuran teks besar */
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: uppercase;
    
    /* Membuat Gradasi Biru, Hijau, Putih */
    background: linear-gradient(
        to right, 
        #00a8ff 0%,   /* Biru */
        #2ecc71 25%,  /* Hijau */
        #ffffff 50%,  /* Putih */
        #2ecc71 75%,  /* Hijau */
        #00a8ff 100%  /* Biru Kembali */
    );
    
    /* Ukuran background diperlebar untuk animasi */
    background-size: 200% auto;
    
    /* Memotong warna agar hanya muncul di teks */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Menjalankan Animasi */
    animation: shine 3s linear infinite;
    
    /* Efek Glow Neon di sekitar teks */
    text-shadow: 0 0 10px rgba(0,0,0,0.5); /* Agar teks terbaca jelas di atas video */
}

/* Keyframes untuk menggerakkan gradasi */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* =========================================
   2. TYPOGRAPHY & BUTTONS
   ========================================= */
h1, h2, h3, h4, h5, h6, p, span {
    text-align: center;
    justify-content: center;
    margin-top: 0;
    color: white;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Efek Teks Bercahaya */
.glow-text {
    color: #fff;
    text-shadow: 0 0 10px var(--primary), 0 0 20px rgba(0, 168, 255, 0.4);
}

/* Button Styles */
.btn-primary, .btn-wa, .btn-submit, .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    cursor: pointer;
}

.btn-primary:hover, .btn-wa:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* =========================================
   3. LAYOUT & CONTAINERS
   ========================================= */
.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px); /* Memberikan efek kaca buram */
    border-radius: 20px;
    margin: 10px;
}

/* =========================================
   4. HEADER & LOGO
   ========================================= */
.top-logo-container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    
}

.header-logo {
    height: auto;           /* Biarkan tinggi mengikuti lebar secara otomatis */
    width: 140px;           /* Perpanjang lebar (sebelumnya mungkin hanya 80px) */
    max-width: 180px;       /* Batas maksimal agar tidak terlalu memenuhi layar */
    filter: drop-shadow(0 0 12px rgba(0, 168, 255, 0.6));
    transition: transform 0.3s ease;
    object-fit: contain;    /* Memastikan gambar tetap rapi di dalam wadah */
}

.header-logo:hover {
    transform: scale(1.05);
}

/* =========================================
   5. NAVIGATION (BOTTOM TOOLBAR)
   ========================================= */
.bottom-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(15, 23, 42, 0.95); /* Dark Navy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    display: none; /* Hidden on desktop by default */
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    padding-bottom: env(safe-area-inset-bottom);
}

.toolbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #64748b;
    font-size: 0.75rem;
    flex: 1;
}

.toolbar-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: 0.3s;
}

.toolbar-item.active {
    color: var(--primary);
}

.toolbar-item.active i {
    text-shadow: 0 0 10px var(--primary);
}

/* Floating Action Button (Center) */
.fab-item {
    position: relative;
    top: -25px;
}

.fab-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
}

.fab-icon i {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* =========================================
   6. GLASS CARDS (Core Component)
   ========================================= */
/* Semua elemen kartu menggunakan style dasar ini */
.card, .price-card, .feature-card, .form-container, .about-card, .table-container, .cta-box {
    background: var(--glass) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover, .price-card:hover, .feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 168, 255, 0.15);
}

/* Teks di dalam kartu */
.card p, .price-card p, .feature-card p, .about-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.card h3, .price-card h3, .feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* =========================================
   7. PAGE SPECIFIC: HOME
   ========================================= */
.hero-home {
    min-height: vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

/* --- UPDATE UKURAN BANNER --- */
/* Styling untuk Banner Video */
/* Kontainer Utama Banner */
.banner-logo-container {
    position: relative;
    width: 100%;
    /* Tinggi untuk Komputer/Laptop */
    height: 500px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Warna cadangan jika video loading */
}

/* Video agar memenuhi layar (Responsive) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; /* Ini penting agar video tidak tertarik/gepeng */
    z-index: 1;
}

/* Overlay transparan agar logo lebih menonjol */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Hitam transparan 40% */
    z-index: 2;
}

/* Logo di atas video */
.hero-banner-logo {
    position: relative;
    z-index: 3;
    /* PERBESAR DI SINI: Sesuaikan angkanya sampai pas */
    width: 550px; 
    max-width: 100%; /* Menjaga agar tidak meluber keluar layar di tablet */
    height: auto;
    padding: 20px;
    /* Efek bayangan agar logo lebih 'menyala' di atas video */
    filter: drop-shadow(0 0 20px rgba(0, 168, 255, 0.8)); 
    transition: transform 0.3s ease;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.badge {
    background: rgba(0, 168, 255, 0.2);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--primary);
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    /* Membuat grid otomatis menyesuaikan jumlah card */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    padding: 20px 0;
}


.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* CTA Banner */
.cta-box {
    background: linear-gradient(90deg, rgba(0,168,255,0.2), rgba(0,98,204,0.2)) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-cta {
    background: white;
    color: var(--primary-dark);
}

/* =========================================
   8. PAGE SPECIFIC: PAKET
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.price-card.featured {
    background: rgba(0, 168, 255, 0.1) !important;
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.price-card .period {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Ribbon Paling Laris */
.price-card.featured::before {
    content: "FAVORIT";
    position: absolute;
    top: 25px;
    right: -30px;
    background: #ff4757;
    color: white;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* =========================================
   9. PAGE SPECIFIC: REGISTRASI & FORMS
   ========================================= */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--accent); /* Warna Hijau untuk tombol kirim */
    margin-top: 10px;
}
.btn-submit:hover {
    background: #27ae60;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* =========================================
   10. PAGE SPECIFIC: MIKHMON & TABLES
   ========================================= */
/* --- TAMPILAN BARU MIKHMON DASHBOARD --- */
.mikhmon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding: 10px;
}

.mikhmon-item-card {
    background: var(--glass) !important;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mikhmon-item-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
}

.server-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.4));
}

.status-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-indicator.online {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.btn-open {
    margin-top: 20px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    transition: 0.3s;
}

.btn-open:hover {
    box-shadow: 0 0 15px var(--primary);
    letter-spacing: 1px;
}

/* Ukuran kolom spesifik */
.mikhmon-table td:nth-child(1) { width: 50px; } /* Kolom No */
.mikhmon-table td:nth-child(3) { width: 150px; } /* Kolom Aksi */

/* Tombol di dalam tabel agar ukurannya pas */
.btn-table {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary);
    color: white;
    border-radius: 5px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-table:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* =========================================
   11. PAGE SPECIFIC: TENTANG & STATS
   ========================================= */
.hero-about {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.icon-large {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(0, 168, 255, 0.2);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.feature-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

.stat-label {
    color: white; /* Perbaikan bug warna 'tra' */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* =========================================
   12. FOOTER
   ========================================= */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* =========================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 600px) {
    /* Layout Mobile */
    .bottom-toolbar {
        display: flex; /* Munculkan toolbar */
    }

    body {
        padding-bottom: 90px; /* Tambah ruang bawah agar tidak tertutup toolbar */
    }
	
	.banner-logo-container {
        height: 300px; /* Tinggi banner lebih pendek di HP */
    }
    
    .hero-banner-logo {
        max-width: 200px; /* Logo lebih kecil di HP */
    }
    
    .moving-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
    }

    .header-logo {
        width: 38px;       /* Ukuran di HP sedikit lebih panjang dari sebelumnya */
    }

    .hero-banner-logo {
        width: 300px; /* Ukuran logo di HP */
        max-width: 85%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* Penyesuaian Grid & Kartu */
    .pricing-grid, .features-grid, .about-grid {
        grid-template-columns: 1fr; /* Satu kolom */
    }

    .price-card.featured {
        transform: none; /* Matikan scale di HP */
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
	
	.mikhmon-grid {
        grid-template-columns: 1fr; /* Satu kolom di HP agar lega */
    }
	
	.top-logo-container { display: none;
	    
	}
	
	.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    transition: 0.3s;
	}
	
	.olt-table thead {
        display: none;
    }

    .olt-table, .olt-table tbody, .olt-table tr, .olt-table td {
        display: block;
        width: 100%;
    }

    .olt-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        overflow: hidden;
    }

    .olt-table td {
        text-align: right;
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Menambahkan Label Judul di Samping Kiri */
    .olt-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: bold;
        color: var(--primary);
        text-transform: uppercase;
        font-size: 0.75rem;
    }

    .olt-table td:last-child {
        border-bottom: none;
        text-align: center; /* Tombol jadi di tengah */
        background: rgba(0, 168, 255, 0.05);
        padding: 15px;
    }

    .olt-table td:last-child::before {
        display: none; /* Hilangkan label untuk baris tombol */
    }

    .btn-olt {
        width: 100%; /* Tombol memenuhi lebar kartu di HP */
        justify-content: center;
    }
}

/* --- SIDEBAR STYLES --- */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* Sembunyi di kiri */
    width: 280px;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 3000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--glass-border);
}

.sidebar.active {
    left: 0; /* Muncul ke layar */
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

/* Tombol Buka Menu */
.sidebar-toggle {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 1002;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Sidebar */
.sidebar-header {
    padding: 30px 20px;
    display: flex;
    flex-direction: column; /* Ubah ke kolom agar tombol close bisa diatur posisinya */
    align-items: center;    /* Pusatkan secara horizontal */
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;     /* Penting untuk posisi tombol close */
}

.sidebar-logo { 
    height: 50px; /* Ukuran bisa Anda sesuaikan */
    display: block;
    margin: 0 auto;
}

.close-sidebar {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Link Navigasi */
.sidebar-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.sidebar-links li a {
    display: block;
    padding: 15px 25px;
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: 0.3s;
}

.sidebar-links li a i {
    margin-right: 15px;
    width: 20px;
    color: var(--primary);
}

.sidebar-links li a:hover {
    background: rgba(0, 168, 255, 0.1);
    color: white;
    padding-left: 35px;
}

/* Overlay Gelap */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

/* Efek Running Text (Marquee) */
.marquee {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    font-size: 0.95rem;
    color: var(--text-main);
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- OLT Management Table Styles --- */
.table-container {
    overflow-x: auto;
    background: rgba(15, 23, 42, 0.8); /* Background lebih gelap agar teks kontras */
    /* --- INI KUNCI EFEK BLUR --- */
backdrop-filter: blur(15px) saturate(150%);
-webkit-backdrop-filter: blur(15px) saturate(150%);
/* --------------------------- */
    border-radius: 15px;
    border: 2px solid var(--primary); /* Border lebih tebal dengan warna utama */
    margin: 20px 0 50px 0;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.9); /* Efek glow di sekitar tabel */
}

.olt-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff; /* Paksa warna putih agar terbaca */
}

.olt-table th {
    background: var(--primary); /* Background header penuh warna */
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    padding: 18px 15px;
    border-bottom: 2px solid var(--primary-dark);
}

.olt-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Warna selang-seling (Zebra striping) agar mata tidak lelah */
.olt-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.05);
}

.olt-table tr:hover td {
    background: rgba(0, 168, 255, 0.1); /* Highlight saat baris disentuh */
    color: var(--primary);
    font-weight: bold;
}

.olt-table th {
    background: rgba(0, 168, 255, 0.15);
    color: var(--primary);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.olt-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-olt {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
    border: none;
}

.btn-olt:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow);
    color: white;
}

/* Label Status (Opsional, untuk mempercantik) */
.status-olt {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    background: var(--accent);
    color: #000;
    font-weight: bold;
    margin-right: 5px;
}

/* --- Style Tombol Ambil Lokasi --- */
.btn-location {
    background: linear-gradient(135deg, blue, green);
    /* Warna Orange-Kuning agar mencolok */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.5);
    filter: brightness(1.1);
}

.btn-location i {
    font-size: 1rem;
}

/* Warna saat sedang proses (Loading) */
.btn-location.loading {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

/* Label Best Seller */
.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: var(--neon-shadow);
}
