:root {
            --bg: #061218;
            --surface: #0d2230;
            --surface-alt: #122b3d;
            --accent: #22d3ee;
            --accent-glow: rgba(34, 211, 238, 0.3);
            --accent2: #a3e635;
            --text: #f0faff;
            --muted: #8fadb8;
            --font-display: 'Chakra Petch', sans-serif;
            --font-body: 'Manrope', sans-serif;
            --container-w: 1200px;
            --radius-md: 12px;
            --radius-lg: 24px;
            --transition: all 0.3s ease;
        }

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

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

        .container {
            width: 100%;
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--text);
        }

        /* HEADER (Matched to Homepage DNA) */
        header {
            background-color: rgba(6, 18, 24, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(34, 211, 238, 0.1);
            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: 24px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }

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

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 28px;
            cursor: pointer;
            min-width: 44px;
            min-height: 44px;
        }

        /* HERO BANNER - Aqua Fortune Specific */
        .hero-banner {
            position: relative;
            padding: 60px 0 40px;
            background: radial-gradient(circle at 50% 0%, #0d2a3d 0%, var(--bg) 80%);
            border-bottom: 1px solid rgba(34, 211, 238, 0.1);
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2322d3ee" fill-opacity="0.03" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,149.3C672,139,768,149,864,170.7C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top center;
            background-size: cover;
            z-index: 0;
        }

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

        .breadcrumb {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(143, 173, 184, 0.2);
        }

        .hero-content h1 {
            font-family: var(--font-display);
            font-size: clamp(32px, 5vw, 48px);
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
            text-shadow: 0 4px 20px rgba(34, 211, 238, 0.2);
        }

        .meta-chips {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .chip {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: rgba(34, 211, 238, 0.05);
            border: 1px solid rgba(34, 211, 238, 0.2);
            padding: 6px 14px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .intro-text {
            font-size: 18px;
            color: var(--muted);
            line-height: 1.8;
            text-align: center;
            background: var(--surface);
            padding: 30px;
            border-radius: var(--radius-md);
            border-top: 3px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* MAIN ARTICLE CONTENT */
        .article-body {
            padding: 60px 0;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .content-section {
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
        }

        .content-section h2 {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--text);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .content-section h2::before {
            content: '';
            display: block;
            width: 8px;
            height: 28px;
            background: var(--accent);
            border-radius: 4px;
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .content-section p {
            margin-bottom: 20px;
            color: var(--muted);
            font-size: 16px;
        }

        .content-section p a {
            text-decoration: underline;
            text-decoration-color: rgba(34, 211, 238, 0.4);
            text-underline-offset: 4px;
        }

        .content-section p a:hover {
            text-decoration-color: var(--accent);
        }

        /* Custom Section Styles */
        /* Section 2: Cara Memulai (Visual Checklist) */
        .step-list {
            list-style: none;
            counter-reset: aqua-step;
            display: grid;
            gap: 16px;
            margin-top: 30px;
        }

        .step-list li {
            position: relative;
            padding: 20px 20px 20px 60px;
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid rgba(143, 173, 184, 0.1);
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
        }

        .step-list li:hover {
            border-color: rgba(34, 211, 238, 0.3);
            transform: translateY(-2px);
        }

        .step-list li::before {
            counter-increment: aqua-step;
            content: counter(aqua-step);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: rgba(34, 211, 238, 0.1);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 14px;
        }

        /* Section 3: Fitur Unggulan (Highlight Card) */
        .feature-card {
            background: linear-gradient(145deg, var(--surface), var(--surface-alt));
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(34, 211, 238, 0.15);
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Section 5: Tips (Money/Focus Accent) */
        .tips-wrapper {
            border-left: 4px solid var(--accent2);
            padding-left: 24px;
            background: linear-gradient(90deg, rgba(163, 230, 53, 0.05) 0%, transparent 100%);
            padding-top: 16px;
            padding-bottom: 16px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }

        /* FAQ SECTION */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid rgba(143, 173, 184, 0.1);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-item summary {
            padding: 20px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            transition: var(--transition);
            min-height: 44px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary {
            background: rgba(34, 211, 238, 0.05);
            border-bottom: 1px solid rgba(34, 211, 238, 0.1);
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item p {
            padding: 20px;
            margin: 0;
            color: var(--muted);
        }

        /* RELATED LINKS */
        .related-section {
            padding: 60px 0;
            background: var(--surface);
            border-top: 1px solid rgba(143, 173, 184, 0.1);
            border-bottom: 1px solid rgba(143, 173, 184, 0.1);
        }

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

        .related-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .related-grid a {
            display: inline-block;
            padding: 12px 24px;
            background: var(--bg);
            border: 1px solid rgba(34, 211, 238, 0.2);
            border-radius: 30px;
            color: var(--muted);
            font-weight: 500;
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .related-grid a:hover {
            background: rgba(34, 211, 238, 0.1);
            color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* GRAND CTA */
        .cta-section {
            padding: 80px 0;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--surface) 0%, #0a1f2d 100%);
            padding: 50px 30px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(34, 211, 238, 0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
        }

        .cta-box h2 {
            font-family: var(--font-display);
            font-size: 32px;
            margin-bottom: 16px;
            color: var(--text);
        }

        .cta-box p {
            color: var(--muted);
            margin-bottom: 32px;
            font-size: 18px;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 48px;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--bg);
            border: none;
            box-shadow: 0 4px 15px var(--accent-glow);
        }

        .btn-primary:hover {
            background: #1cb5cc;
            color: var(--bg);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: rgba(34, 211, 238, 0.1);
            color: var(--text);
            transform: translateY(-2px);
        }

        /* FOOTER (Matched to Homepage DNA) */
        footer {
            background-color: #040c11;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(143, 173, 184, 0.1);
        }

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

        .footer-brand p {
            color: var(--muted);
            margin-top: 16px;
            font-size: 14px;
            max-width: 300px;
        }

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

        .footer-links div {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--muted);
            font-size: 14px;
            min-height: 24px;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(143, 173, 184, 0.1);
            color: var(--muted);
            font-size: 14px;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--surface);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid rgba(34, 211, 238, 0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: 1fr 1fr;
            }
            .intro-text {
                font-size: 16px;
                padding: 20px;
            }
            .content-section h2 {
                font-size: 24px;
            }
            .feature-card {
                padding: 24px;
            }
            .btn-group {
                flex-direction: column;
                width: 100%;
            }
            .btn {
                width: 100%;
            }
            .cta-box {
                padding: 40px 20px;
            }
        }

        @media (max-width: 390px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 28px;
            }
            .meta-chips {
                flex-direction: column;
                align-items: center;
            }
            .step-list li {
                padding: 16px 16px 16px 50px;
                font-size: 14px;
            }
            .step-list li::before {
                left: 12px;
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
        }


/* 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; }
