:root {
            --bg: #0c0a16;
            --surface: #181430;
            --surface-light: #241e45;
            --accent: #e879f9;
            --accent-glow: rgba(232, 121, 249, 0.4);
            --accent2: #38bdf8;
            --accent2-glow: rgba(56, 189, 248, 0.4);
            --text: #f5f2ff;
            --muted: #a295b8;

            --font-display: 'Orbitron', sans-serif;
            --font-body: 'Exo 2', sans-serif;

            /* Shatter / Crystal Motif Paths */
            --clip-crystal: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
            --clip-button: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: var(--accent2);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--accent);
            text-shadow: 0 0 8px var(--accent-glow);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER STYLES */
        header {
            background: rgba(12, 10, 22, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(232, 121, 249, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--accent);
            text-shadow: 0 0 10px var(--accent-glow);
        }

        nav .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav .nav-links a {
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
        }

        nav .nav-links a:hover {
            color: var(--accent2);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* HERO BANNER - DAFTAR SPECIFIC */
        .hero-daftar {
            position: relative;
            padding: 60px 0 40px;
            background: radial-gradient(circle at 50% 0%, rgba(232, 121, 249, 0.15), transparent 60%),
                        radial-gradient(circle at 80% 50%, rgba(56, 189, 248, 0.1), transparent 50%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }

        .hero-daftar::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, transparent 48%, rgba(232, 121, 249, 0.03) 50%, transparent 52%);
            background-size: 30px 30px;
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 15px;
            font-family: var(--font-display);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--text), var(--accent2), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(232, 121, 249, 0.2);
        }

        .meta-chips {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .chip {
            background: rgba(24, 20, 48, 0.8);
            border: 1px solid rgba(56, 189, 248, 0.3);
            padding: 5px 12px;
            font-size: 0.8rem;
            color: var(--accent2);
            clip-path: var(--clip-button);
            font-weight: 600;
        }

        /* MAIN CONTENT AREA */
        .content-area {
            padding: 50px 0;
        }

        .intro-blockquote {
            background: var(--surface);
            border-left: 4px solid var(--accent);
            padding: 25px 30px;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 50px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
        }

        .intro-blockquote::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0;
            width: 20px; height: 20px;
            background: rgba(232, 121, 249, 0.2);
        }

        .section-block {
            margin-bottom: 50px;
            background: linear-gradient(180deg, var(--surface) 0%, rgba(24,20,48,0) 100%);
            padding: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-radius: 8px 8px 0 0;
        }

        .section-block h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--accent2);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-block h2::before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--accent);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            box-shadow: 0 0 10px var(--accent);
        }

        .section-block p {
            margin-bottom: 15px;
            color: var(--muted);
            font-size: 1.05rem;
        }

        .section-block p strong {
            color: var(--text);
        }

        .section-block a {
            font-weight: 600;
            border-bottom: 1px dashed var(--accent2);
        }

        .section-block a:hover {
            border-bottom-style: solid;
        }

        /* CUSTOM CHECKLIST */
        .custom-list {
            list-style: none;
            margin: 20px 0;
            padding: 20px;
            background: rgba(0,0,0,0.2);
            border: 1px solid rgba(56, 189, 248, 0.2);
            clip-path: var(--clip-crystal);
        }

        .custom-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            color: var(--text);
        }

        .custom-list li:last-child {
            margin-bottom: 0;
        }

        .custom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--bg);
            background: var(--accent2);
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
        }

        /* FAQ SECTION */
        .faq-section {
            margin-top: 60px;
        }

        .faq-section h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--text);
        }

        details {
            background: var(--surface);
            margin-bottom: 15px;
            border: 1px solid rgba(255,255,255,0.05);
            clip-path: var(--clip-crystal);
            transition: all 0.3s ease;
        }

        details[open] {
            border-color: rgba(232, 121, 249, 0.4);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        summary {
            padding: 20px;
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--accent2);
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        details[open] summary::after {
            content: '-';
            transform: rotate(180deg);
        }

        details p {
            padding: 0 20px 20px;
            color: var(--muted);
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 10px;
            padding-top: 15px;
        }

        /* RELATED PAGES BLOCK */
        .related-pages {
            margin: 60px 0;
            padding: 40px;
            background: var(--surface);
            border: 1px solid rgba(232, 121, 249, 0.3);
            position: relative;
        }

        .related-pages::before {
            content: '';
            position: absolute;
            top: -1px; left: -1px;
            width: 30px; height: 30px;
            border-top: 3px solid var(--accent);
            border-left: 3px solid var(--accent);
        }

        .related-pages::after {
            content: '';
            position: absolute;
            bottom: -1px; right: -1px;
            width: 30px; height: 30px;
            border-bottom: 3px solid var(--accent2);
            border-right: 3px solid var(--accent2);
        }

        .related-pages h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
            color: var(--text);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .related-grid a {
            display: block;
            padding: 15px;
            background: var(--surface-light);
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            border: 1px solid transparent;
            clip-path: var(--clip-button);
            transition: all 0.3s ease;
        }

        .related-grid a:hover {
            background: var(--surface);
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: 0 0 15px rgba(232, 121, 249, 0.2) inset;
            transform: translateY(-2px);
        }

        /* CTA SECTION */
        .cta-grand {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, rgba(24, 20, 48, 0.8), rgba(12, 10, 22, 0.9)),
                        url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(232,121,249,0.1)"/></svg>');
            border-top: 1px solid rgba(232, 121, 249, 0.3);
            border-bottom: 1px solid rgba(56, 189, 248, 0.3);
            margin-bottom: 40px;
        }

        .cta-grand h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--text);
            text-shadow: 0 0 10px rgba(255,255,255,0.2);
        }

        .cta-grand p {
            color: var(--muted);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            clip-path: var(--clip-button);
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--accent), #b026c4);
            color: var(--text);
            border: none;
            box-shadow: 0 0 20px rgba(232, 121, 249, 0.4);
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #b026c4, var(--accent));
            box-shadow: 0 0 30px rgba(232, 121, 249, 0.6);
            color: #fff;
            transform: scale(1.02);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent2);
            border: 2px solid var(--accent2);
            box-shadow: 0 0 15px rgba(56, 189, 248, 0.2) inset;
        }

        .btn-outline:hover {
            background: rgba(56, 189, 248, 0.1);
            color: #fff;
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.4) inset, 0 0 10px rgba(56, 189, 248, 0.4);
            transform: scale(1.02);
        }

        /* FOOTER STYLES */
        footer {
            background: #08070e;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(56, 189, 248, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            display: inline-block;
            margin-bottom: 15px;
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 0.9rem;
            max-width: 300px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .link-group h4 {
            font-family: var(--font-display);
            color: var(--text);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .link-group ul {
            list-style: none;
        }

        .link-group ul li {
            margin-bottom: 10px;
        }

        .link-group ul li a {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .link-group ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--muted);
            font-size: 0.85rem;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-brand {
                text-align: center;
            }
            .footer-tagline {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--surface);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--accent);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav .nav-links.active {
                display: flex;
            }
            .footer-links {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-daftar {
                padding: 40px 0 30px;
            }
            .section-block {
                padding: 20px;
            }
        }

        @media (max-width: 390px) {
            h1 {
                font-size: 1.8rem;
            }
            .btn-group {
                flex-direction: column;
            }
            .btn {
                width: 100%;
            }
            .related-pages {
                padding: 20px 15px;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .intro-blockquote {
                padding: 20px 15px;
                font-size: 1rem;
            }
        }


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
