        * { font-family: 'Inter', sans-serif; }
        
        body {
            background: #0a0a0c;
            /* animated gradient overlay */
            position: relative;
            overflow-x: hidden;
        }

        /* Canvas untuk partikel */
        #particle-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        /* Konten utama di atas partikel */
        .content-wrapper {
            position: relative;
            z-index: 10;
        }

        /* Animasi gradient background */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(45, 212, 191, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
            animation: gradientMove 20s ease infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes gradientMove {
            0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
            50% { transform: scale(1.2) rotate(2deg); opacity: 0.8; }
            100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
        }

        /* Kunci scroll saat overlay aktif */
        body.overlay-active {
            overflow: hidden;
        }

        /* Class hidden untuk menyembunyikan overlay */
        .hidden {
            display: none !important;
        }

        /* Glass cards - dengan efek glow */
        .glass-card {
            background: rgba(18, 18, 21, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 34, 42, 0.8);
            border-radius: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .glass-card:hover {
            border-color: rgba(74, 222, 128, 0.5);
            box-shadow: 0 8px 30px rgba(74, 222, 128, 0.15);
            transform: translateY(-2px);
        }

        /* Badge online dengan pulse */
        .badge-online {
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #4ade80;
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
            animation: pulseGlow 2s infinite;
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); }
            50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); }
            100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); }
        }
        
        .badge-offline {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #f87171;
        }
        
        /* Host buttons */
        .host-item {
            background: rgba(26, 26, 32, 0.8);
            backdrop-filter: blur(5px);
            border: 1px solid #2a2a33;
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s;
        }
        
        .host-item:hover {
            background: #22222a;
            border-color: #4ade80;
            box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
        }
        
        .copy-btn {
            background: #25252d;
            border: 1px solid #35353f;
            color: #9ca3af;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }
        
        .copy-btn:hover {
            background: #2f2f3a;
            color: white;
            border-color: #4ade80;
            transform: scale(1.05);
        }
        
        .download-btn {
            background: #25252d;
            border: 1px solid #35353f;
            color: #9ca3af;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .download-btn:hover {
            background: #2f2f3a;
            color: white;
            border-color: #4ade80;
            transform: scale(1.05);
        }
        
        /* World cards */
        .world-card {
            background: rgba(21, 21, 24, 0.8);
            backdrop-filter: blur(5px);
            border: 1px solid #25252d;
            border-radius: 0.75rem;
            padding: 0.75rem;
            text-align: center;
            transition: all 0.2s;
            cursor: pointer;
        }
        
        .world-card:hover {
            border-color: #4ade80;
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(74, 222, 128, 0.2);
        }
        
        /* Owner Cards */
        .owner-card {
            background: rgba(21, 21, 24, 0.8);
            backdrop-filter: blur(5px);
            border: 1px solid #25252d;
            border-radius: 0.75rem;
            padding: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.2s;
        }
        
        .owner-card:hover {
            border-color: #4ade80;
            background: #1a1a22;
            transform: translateX(4px);
        }
        
        /* Animasi fade-in saat scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Typing effect untuk judul (opsional) */
        .typing {
            border-right: 2px solid #4ade80;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #4ade80; }
        }

        /* Progress Bars */
        .progress-bar {
            height: 8px;
            background: #1f1f27;
            border-radius: 999px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            border-radius: 999px;
            transition: width 0.3s ease;
            background: linear-gradient(90deg, #4ade80, #22c55e);
        }
        
        /* Animasi value update */
        .value-update {
            transition: all 0.3s;
        }
        
        .value-update.changed {
            transform: scale(1.1);
            color: #4ade80;
            text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
        }
        
        /* Chart Container */
        .chart-container {
            position: relative;
            height: 200px;
            width: 100%;
        }
        
        /* FAQ Styles */
        .faq-item {
            border-bottom: 1px solid #22222a;
            padding: 1rem 0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            color: #e5e7eb;
        }
        
        .faq-question:hover {
            color: white;
        }
        
        .faq-answer {
            margin-top: 0.75rem;
            color: #9ca3af;
            font-size: 0.9rem;
            line-height: 1.5;
            padding-right: 1.5rem;
        }
        
        .faq-icon {
            transition: transform 0.3s;
            color: #6b7280;
        }
        
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }
        
        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f13;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a33;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4ade80;
        }
        
        /* Copy toast */
        .copy-toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            background: #1e1e26;
            color: #d1d5db;
            padding: 0.75rem 1.5rem;
            border-radius: 999px;
            font-size: 0.875rem;
            border: 1px solid #33333d;
            box-shadow: 0 10px 25px -5px black;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.2s;
            pointer-events: none;
            white-space: nowrap;
        }

        /* Navbar lebih glossy */
        nav.glass-card {
            background: rgba(18, 18, 21, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.2);
        }

        html {
            scroll-behavior: smooth;
        }
        section {
            scroll-margin-top: 120px;
        }
