:root {
            --bg: #06120c;
            --surface: #0e2619;
            --surface-light: #163a26;
            --accent: #ffd54d;
            --accent-hover: #ffc107;
            --accent2: #4ade80;
            --text: #f0fff4;
            --muted: #93b3a0;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Lora', serif;
            --container-w: 1280px;
            --transition: all 0.3s ease;
        }

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

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

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

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

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

        h1, h2, h3, h4, .font-display {
            font-family: var(--font-display);
            line-height: 1.2;
            color: #ffffff;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            min-height: 44px;
            border: none;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #000;
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 213, 77, 0.3);
            color: #000;
        }

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

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            background-color: rgba(255, 213, 77, 0.05);
        }

        /* --- HEADER STYLES (Identical to Homepage) --- */
        header {
            background-color: rgba(6, 18, 12, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(147, 179, 160, 0.1);
        }

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

        .brand-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: none;
            gap: 1.5rem;
        }

        .nav-links a {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text);
            text-transform: uppercase;
        }

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

        .header-actions {
            display: none;
            gap: 1rem;
            align-items: center;
        }

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

        /* --- FOOTER STYLES (Identical to Homepage) --- */
        footer {
            background-color: #040d08;
            border-top: 2px solid var(--surface);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

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

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 1.25rem;
            color: var(--accent2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(147, 179, 160, 0.1);
            color: var(--muted);
            font-size: 0.875rem;
            font-family: var(--font-display);
        }

        /* --- PAGE SPECIFIC STYLES (Bonus Page) --- */

        /* Hero Banner - Stadium Broadcast Vibe */
        .hero-banner {
            position: relative;
            padding: 4rem 0 3rem;
            background: radial-gradient(circle at top right, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
                        linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
            border-bottom: 1px solid rgba(255, 213, 77, 0.2);
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image:
                linear-gradient(rgba(14, 38, 25, 0.5) 1px, transparent 1px),
                linear-gradient(90deg, rgba(14, 38, 25, 0.5) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            pointer-events: none;
        }

        .breadcrumb {
            font-family: var(--font-display);
            font-size: 0.75rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            display: inline-block;
            background: rgba(0,0,0,0.4);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            border: 1px solid rgba(147, 179, 160, 0.2);
        }

        .hero-banner h1 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            background: linear-gradient(to right, #ffffff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
        }

        .meta-chips {
            display: flex;
            gap: 1rem;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .meta-chips span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent2);
        }

        .meta-chips span::before {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            background-color: var(--accent2);
            border-radius: 50%;
        }

        /* Editorial Content Area */
        .content-area {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .article-body {
            max-width: 800px;
        }

        .intro-block {
            font-size: 1.125rem;
            color: var(--text);
            background: linear-gradient(90deg, var(--surface), transparent);
            padding: 1.5rem 2rem;
            border-left: 4px solid var(--accent);
            margin-bottom: 3rem;
            border-radius: 0 8px 8px 0;
        }

        .article-section {
            margin-bottom: 3rem;
        }

        .article-section h2 {
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .article-section h2::before {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--accent2);
        }

        .article-section p {
            margin-bottom: 1.25rem;
            color: #d1e3d8;
        }

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

        .article-section a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }

        /* Custom List styled as tactical points */
        .tactical-list {
            list-style: none;
            margin: 1.5rem 0;
            padding: 0;
        }

        .tactical-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: #d1e3d8;
            background: rgba(14, 38, 25, 0.4);
            padding: 1rem 1rem 1rem 2.5rem;
            border-radius: 4px;
            border: 1px solid rgba(147, 179, 160, 0.1);
        }

        .tactical-list li::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 1.4rem;
            width: 8px;
            height: 8px;
            background-color: var(--accent);
            transform: rotate(45deg);
        }

        /* FAQ Section - Scoreboard Style */
        .faq-wrapper {
            background-color: var(--surface);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid rgba(147, 179, 160, 0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .faq-wrapper h2 {
            font-size: 1.75rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #fff;
        }

        details {
            margin-bottom: 1rem;
            background-color: var(--bg);
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid rgba(147, 179, 160, 0.1);
        }

        summary {
            padding: 1.25rem;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--accent);
            transition: var(--transition);
        }

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

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

        details[open] summary {
            background-color: var(--surface-light);
            color: #fff;
        }

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

        details p {
            padding: 1.25rem;
            border-top: 1px solid rgba(147, 179, 160, 0.1);
            color: #d1e3d8;
            margin: 0;
            background-color: rgba(6, 18, 12, 0.5);
        }

        /* Related Links - Tactical Board */
        .related-board {
            margin-top: 4rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--surface) 0%, #0a1c12 100%);
            border: 2px solid var(--surface-light);
            border-radius: 8px;
            position: relative;
        }

        .related-board::before {
            content: 'NAVIGASI TAKTIKAL';
            position: absolute;
            top: -12px;
            left: 2rem;
            background-color: var(--bg);
            padding: 0 10px;
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--muted);
            letter-spacing: 2px;
        }

        .related-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .related-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            background-color: rgba(6, 18, 12, 0.6);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
        }

        .related-links a::after {
            content: '→';
            color: var(--accent2);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .related-links a:hover {
            border-color: var(--accent2);
            background-color: rgba(74, 222, 128, 0.05);
            color: var(--accent2);
        }

        .related-links a:hover::after {
            transform: translateX(5px);
        }

        /* CTA Section - Garuda Wing Motif */
        .cta-megah {
            margin-top: 4rem;
            background: linear-gradient(45deg, var(--surface) 0%, #113320 100%);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }

        /* Wing decorative elements */
        .cta-megah::before, .cta-megah::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 213, 77, 0.03);
            z-index: 0;
        }

        .cta-megah::before {
            top: -100px; left: -100px;
            clip-path: polygon(0 0, 100% 0, 50% 100%, 0 50%);
        }

        .cta-megah::after {
            bottom: -100px; right: -100px;
            clip-path: polygon(100% 100%, 0 100%, 50% 0, 100% 50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-megah h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .cta-megah p {
            color: #d1e3d8;
            margin-bottom: 2rem;
            font-size: 1.125rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .cta-buttons .btn {
            width: 100%;
            max-width: 250px;
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (min-width: 768px) {
            .nav-links { display: flex; }
            .header-actions { display: flex; }
            .mobile-toggle { display: none; }

            .hero-banner { padding: 5rem 0 4rem; }
            .hero-banner h1 { font-size: 3rem; }

            .footer-grid { grid-template-columns: 1fr 2fr; }
            .footer-links-grid { grid-template-columns: repeat(3, 1fr); }

            .related-links { flex-direction: row; }
            .related-links a { flex: 1; }

            .cta-buttons { flex-direction: row; }

            /* Mobile Nav Active State */
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--surface);
                padding: 1.5rem;
                border-bottom: 1px solid rgba(147, 179, 160, 0.2);
            }
            .header-actions.active {
                display: flex;
                position: absolute;
                top: 250px; /* Adjust based on nav height */
                left: 0;
                right: 0;
                background-color: var(--surface);
                padding: 1.5rem;
                justify-content: center;
            }
        }

        @media (max-width: 767px) {
            /* Mobile Menu Styles */
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--surface);
                padding: 1rem 1.5rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .header-actions.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 260px;
                left: 0;
                width: 100%;
                background-color: var(--surface);
                padding: 0 1.5rem 1.5rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .header-actions.active .btn {
                width: 100%;
            }
        }

        @media (min-width: 1024px) {
            .content-area {
                grid-template-columns: 1fr 350px;
                align-items: start;
            }
            .sidebar {
                position: sticky;
                top: 100px;
            }
            .related-board {
                margin-top: 0;
            }
            .related-links {
                flex-direction: column;
            }
        }


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