
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0b0f19 0%, #1a1a2e 50%, #16213e 100%);
            color: #ecf2ff; line-height: 1.7; min-height: 100vh;
        }
        .container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
        a { color: inherit; text-decoration: none; }

        /* Navbar */
        .site-nav { position: sticky; top: 0; z-index: 1000; background: rgba(11,15,25,0.95); border-bottom: 1px solid rgba(234,191,17,0.2); backdrop-filter: blur(10px); }
        .site-nav-inner { max-width: 900px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }
        .site-nav .brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #ecf2ff; }
        .site-nav .brand-link img { height: 36px; width: auto; border-radius: 6px; }
        .site-nav .brand-link span { font-weight: 700; }
        .nav-right { display: flex; align-items: center; gap: 10px; }
        .nav-wa { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(45deg,#25D366,#128C7E); color: #fff; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: transform 0.2s; }
        .nav-wa:hover { transform: translateY(-1px); }
        .nav-menu-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.14); background: transparent; cursor: pointer; color: #fff; }
        .nav-menu-btn:hover { background: rgba(255,255,255,0.06); }
        .nav-dropdown { display: none; background: rgba(11,15,25,0.98); border-bottom: 1px solid rgba(234,191,17,0.2); padding: 8px 0; }
        .nav-dropdown.open { display: block; }
        .nav-dropdown a { display: block; padding: 12px 24px; color: #ecf2ff; text-decoration: none; font-weight: 500; transition: background 0.2s; }
        .nav-dropdown a:hover { background: rgba(255,255,255,0.06); }
        @media (max-width: 600px) { .nav-wa span { display: none; } .nav-wa { padding: 8px 12px; } }

        /* Hero */
        .hero { text-align: center; padding: 60px 20px 40px; background: linear-gradient(180deg, rgba(234,191,17,0.08) 0%, transparent 100%); }
        .hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); color: #ffd700; margin-bottom: 16px; }
        .hero .subtitle { color: #a5b4c7; font-size: 1.1rem; }
        .breadcrumb { font-size: 0.9rem; color: #888; margin-bottom: 16px; }
        .breadcrumb a { color: #1357a9; text-decoration: none; }

        /* Legal Content */
        .content { padding: 40px 0 60px; }
        .legal-content h2 { color: #ffd700; font-size: 1.3rem; margin: 32px 0 12px; padding-bottom: 6px; border-bottom: 2px solid rgba(234,191,17,0.2); }
        .legal-content h3 { color: #eabf11; font-size: 1.1rem; margin: 24px 0 8px; }
        .legal-content p { color: #c8d6e5; margin-bottom: 12px; font-size: 0.95rem; }
        .legal-content ul, .legal-content ol { color: #c8d6e5; margin: 8px 0 16px 20px; font-size: 0.95rem; }
        .legal-content li { margin-bottom: 6px; }
        .legal-content strong { color: #ecf2ff; }
        .legal-content a { color: #eabf11; text-decoration: underline; text-underline-offset: 2px; }
        .legal-content a:hover { color: #ffd700; }
        .legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.85rem; }
        .legal-content th { background: rgba(234,191,17,0.15); color: #ffd700; padding: 10px; text-align: left; }
        .legal-content td { padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); color: #c8d6e5; }
        .legal-content .info-box { padding: 16px; border-radius: 10px; background: rgba(234,191,17,0.06); border: 1px solid rgba(234,191,17,0.15); margin: 16px 0; }
        .legal-content .update-badge { display: inline-block; padding: 6px 14px; border-radius: 8px; background: rgba(234,191,17,0.1); border: 1px solid rgba(234,191,17,0.2); color: #a5b4c7; font-size: 0.85rem; margin-bottom: 24px; }

        /* Responsive table */
        @media (max-width: 600px) {
            .legal-content table { font-size: 0.78rem; }
            .legal-content th, .legal-content td { padding: 7px 6px; }
        }

        /* Footer */
        .footer { text-align: center; padding: 30px 20px; border-top: 1px solid rgba(255,255,255,0.06); color: #666; font-size: 0.85rem; }
        .footer a { color: #1357a9; text-decoration: none; }
    