:root {
            --primary: #ffe101;
            --dark: #080d1a;
            --dark-2: #0c1422;
            --dark-card: #101c30;
            --text: #e2e8f0;
            --text-muted: #94a3b8;
            --border: rgba(255,255,255,0.07);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); line-height: 1.7; }
        ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: var(--dark); } ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

        .topbar {
            background: rgba(12, 20, 34, 0.97);
            border-bottom: 1px solid var(--border);
            padding: .875rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(16px);
        }
        .topbar-logo { height: 44px; width: auto; }
        .topbar-back {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            color: var(--primary);
            text-decoration: none;
            font-size: .875rem;
            font-weight: 600;
            transition: gap .25s;
        }
        .topbar-back:hover { gap: .75rem; }

        .hero-pp {
            background: linear-gradient(135deg, #0c1422 0%, #080d1a 100%);
            border-bottom: 1px solid var(--border);
            padding: 4rem 2rem 3rem;
            text-align: center;
        }
        .hero-pp h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: .75rem;
        }
        .hero-pp h1 span {
            background: linear-gradient(135deg, #ffe101, #ffc400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-pp p { color: var(--text-muted); font-size: .95rem; }

        .pp-container {
            max-width: 860px;
            margin: 0 auto;
            padding: 3rem 2rem 5rem;
        }

        .toc {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1.75rem 2rem;
            margin-bottom: 3rem;
        }
        .toc h2 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 1rem; color: var(--primary); }
        .toc ol { list-style: none; counter-reset: toc; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
        .toc ol li { counter-increment: toc; display: flex; align-items: baseline; gap: .6rem; }
        .toc ol li::before { content: counter(toc) '.'; color: var(--primary); font-weight: 700; font-size: .82rem; flex-shrink: 0; }
        .toc ol li a { color: var(--text-muted); text-decoration: none; font-size: .875rem; transition: color .25s; }
        .toc ol li a:hover { color: var(--primary); }

        .pp-section { margin-bottom: 3rem; }
        .pp-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: .75rem;
            padding-bottom: .75rem;
            border-bottom: 1px solid var(--border);
        }
        .pp-section h2 .num {
            background: linear-gradient(135deg, #ffe101, #ffc400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1rem;
        }
        .pp-section h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin: 1.5rem 0 .75rem; color: var(--primary); }
        .pp-section p { color: var(--text-muted); margin-bottom: 1rem; font-size: .93rem; }
        .pp-section ul, .pp-section ol { color: var(--text-muted); font-size: .93rem; padding-left: 1.5rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
        .pp-section a { color: var(--primary); text-decoration: underline; }

        .pp-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .85rem; }
        .pp-table th { background: var(--dark-card); color: var(--primary); font-weight: 700; padding: .75rem 1rem; text-align: left; border: 1px solid var(--border); }
        .pp-table td { padding: .65rem 1rem; border: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
        .pp-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }

        .pp-highlight {
            background: rgba(255, 225, 1, .06);
            border: 1px solid rgba(255, 225, 1, .2);
            border-radius: .75rem;
            padding: 1.25rem 1.5rem;
            margin: 1.25rem 0;
            font-size: .88rem;
            color: var(--text-muted);
        }
        .pp-highlight strong { color: var(--primary); }

        .pp-contact-box {
            background: var(--dark-card);
            border: 1px solid rgba(255,225,1,.2);
            border-radius: 1rem;
            padding: 2rem;
            margin-top: 2rem;
        }
        .pp-contact-box h3 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem; }
        .pp-contact-box p { font-size: .9rem; color: var(--text-muted); margin-bottom: .5rem; }

        .update-date {
            text-align: center;
            color: var(--text-muted);
            font-size: .8rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        footer {
            background: var(--dark-2);
            border-top: 1px solid var(--border);
            padding: 1.5rem 2rem;
            text-align: center;
            font-size: .82rem;
            color: var(--text-muted);
        }
        footer a { color: var(--primary); text-decoration: none; }