:root {
            --primary: #7c3aed;
            --accent: #9b6cff;
            --bg: #0b0b14;
            --surface: #15152a;
            --card: #1b1b33;
            --text: #e2e8f0;
            --muted: #94a3b8;
            --danger: #ef4444;
            --success: #10b981;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; -webkit-tap-highlight-color: transparent; }
        body { background: var(--bg); color: var(--text); overflow-x: hidden; min-height: 100vh; }

        /* --- UI NOTIFICATION (TOAST) --- */
        #toast-container { position: fixed; top: 85px; right: 20px; z-index: 9999; }
        .toast { 
            background: var(--surface); border: 1px solid #333; color: white; padding: 12px 20px; 
            border-radius: 15px; margin-bottom: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: flex; align-items: center; gap: 10px; animation: slideIn 0.3s ease-out;
        }
        
        /* --- MODERN BOTTOM NAV --- */
        .bottom-nav {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 420px;
            background: rgba(21, 21, 42, 0.8);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-around;
            padding: 10px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            z-index: 2000;
        }

        .nav-item {
            color: var(--muted);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.65rem;
            transition: 0.3s;
            flex: 1;
        }

        .nav-item i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .nav-item.active {
            color: var(--primary);
        }

        /* Biar konten bawah gak ketutup */
        .main-content {
            padding-bottom: 100px !important;
        }

        /* Tetap muncul cuma di HP */
        @media (min-width: 769px) {
            .bottom-nav { display: none; }
        }
        
        @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

        /* --- NAVBAR --- */
        .header { 
            background: rgba(11, 11, 20, 0.85); backdrop-filter: blur(20px); 
            padding: 18px 6%; display: flex; justify-content: space-between; 
            align-items: center; position: sticky; top: 0; z-index: 1000; 
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .nav-left { display: flex; align-items: center; gap: 20px; }
        .logo-wrapper { display: flex; align-items: center; gap: 12px; }
        .logo-box { 
            background: var(--primary); color: white; width: 32px; height: 32px; 
            display: flex; align-items: center; justify-content: center; 
            border-radius: 8px; font-weight: bold; font-size: 1.1rem;
            box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
        }
        .logo-text { font-size: 1.2rem; font-weight: 800; background: linear-gradient(to right, #fff, var(--accent)); -webkit-background-clip: text; color: transparent; }

        /* --- SIDEBAR --- */
        .sidebar { position: fixed; top: 0; left: -320px; width: 280px; height: 100%; background: var(--surface); z-index: 2000; padding: 30px 20px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); border-right: 1px solid #222; }
        .sidebar.active { left: 0; }
        .overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: none; z-index: 1999; backdrop-filter: blur(4px); }
        .overlay.active { display: block; }
        .menu-item { display: flex; align-items: center; gap: 15px; padding: 14px 18px; color: var(--text); text-decoration: none; border-radius: 12px; margin-bottom: 8px; cursor: pointer; }
        .menu-item:hover { background: rgba(124, 58, 237, 0.1); color: var(--accent); }

        /* --- HERO BANNER AURA --- */
        .hero-banner-custom {
        	
            margin: 25px 5%; height: 350px; background: #000; border-radius: 30px; 
            position: relative; border: 2px solid rgba(124, 58, 237, 0.4);
            box-shadow: 0 0 25px rgba(124, 58, 237, 0.2); animation: aura-pulse 3s infinite alternate;
            overflow: hidden;
        }
        
        /* Video Container */
        .video-container {
        	background: #000000;
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .header .logo-wrapper {
    filter: none !important;
}

.header .logo-wrapper img {
    filter: none !important;
}
        
        .video-container video {
        	background: #000000;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 28px;
        }
        
        @keyframes aura-pulse { 
            0% { box-shadow: 0 0 10px rgba(124, 58, 237, 0.2); } 
            100% { box-shadow: 0 0 35px rgba(124, 58, 237, 0.5); } 
        }

        /* --- CATEGORY --- */
        .category-container { display: flex; gap: 12px; padding: 10px 5% 25px; overflow-x: auto; scrollbar-width: none; }
        .cat-btn { padding: 10px 22px; background: var(--surface); border: 1px solid #333; color: var(--muted); border-radius: 14px; cursor: pointer; white-space: nowrap; font-weight: 500; }
        .cat-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

        /* --- APPS GRID --- */
        .apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; padding: 0 5% 100px; }
        .app-card { background: var(--card); border-radius: 28px; padding: 20px; border: 1px solid #222; text-align: center; position: relative; }
        .app-icon { width: 75px; height: 75px; border-radius: 22px; object-fit: cover; margin-bottom: 12px; }
        .app-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; color: #fff; }
        .dl-btn { display: block; padding: 10px; background: #fff; color: #000; text-decoration: none; border-radius: 14px; font-size: 0.85rem; font-weight: 800; }

        /* --- MODALS (Login, Upload, Confirm) --- */
        .modal { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 4000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); }
        .modal-content { background: var(--surface); width: 100%; max-width: 400px; padding: 30px; border-radius: 30px; border: 1px solid #333; animation: popUp 0.3s ease; }
        @keyframes popUp { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        
        .input-group label { font-size: 0.75rem; color: var(--muted); display: block; margin-bottom: 5px; }
        .input-group input, .input-group select { width: 100%; padding: 14px; background: #000; border: 1px solid #333; border-radius: 15px; color: white; outline: none; margin-bottom: 15px; }
        
        .primary-btn { width: 100%; padding: 16px; background: var(--primary); border: none; color: white; border-radius: 18px; font-weight: bold; cursor: pointer; }
        .ghost-btn { width: 100%; background: none; border: none; color: var(--muted); margin-top: 15px; cursor: pointer; }
        .danger-btn { background: var(--danger); }