/* CSS Variables - Palette & Fonts */
        :root {
            --bg: #06120c;
            --surface: #0e2619;
            --surface-alt: #133322;
            --accent: #ffd54d;
            --accent-hover: #e6bd35;
            --accent2: #4ade80;
            --text: #f0fff4;
            --muted: #93b3a0;
            --border: rgba(147, 179, 160, 0.2);

            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Lora', serif;

            --container-px: 1.25rem;
            --transition: all 0.3s ease;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text);
        }

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

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: var(--container-px);
            padding-right: var(--container-px);
        }

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

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

        .btn-primary:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            box-shadow: 0 0 15px rgba(255, 213, 77, 0.4);
        }

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

        .btn-secondary:hover {
            background-color: rgba(255, 213, 77, 0.1);
        }

        /* =========================================
           PART A1: HEADER STYLES (Match Homepage)
           ========================================= */
        header {
            background-color: rgba(6, 18, 12, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .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: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: none; /* Mobile hidden */
        }

        .header-actions {
            display: none; /* Mobile hidden */
        }

        .mobile-toggle {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 1024px) {
            .mobile-toggle { display: none; }

            .nav-links {
                display: flex;
                gap: 2rem;
            }

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

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

            .header-actions {
                display: flex;
                gap: 1rem;
            }
        }

        /* Mobile Menu Active State */
        .nav-active {
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--surface);
            flex-direction: column;
            padding: 1rem var(--container-px);
            border-bottom: 1px solid var(--border);
            display: flex !important;
            gap: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        .nav-active.nav-links {
            padding-bottom: 0;
            border-bottom: none;
            box-shadow: none;
        }

        .nav-active.header-actions {
            top: auto;
            position: relative;
            padding-top: 1rem;
            padding-bottom: 1.5rem;
        }

        /* =========================================
           PAGE SPECIFIC: HERO BANNER
           ========================================= */
        .hero-banner {
            background: linear-gradient(180deg, rgba(6,18,12,0) 0%, var(--bg) 100%),
                        radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.15) 0%, transparent 40%),
                        radial-gradient(circle at 20% 80%, rgba(255, 213, 77, 0.1) 0%, transparent 40%),
                        var(--surface);
            padding: 3rem 0 4rem;
            position: relative;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        /* Garuda Wing Motif (Abstract) */
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 213, 77, 0.02) 10px,
                rgba(255, 213, 77, 0.02) 20px
            );
            opacity: 0.5;
            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;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #fff, var(--muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            position: relative;
            z-index: 2;
        }

        .meta-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            position: relative;
            z-index: 2;
        }

        .chip {
            background-color: rgba(14, 38, 25, 0.8);
            border: 1px solid var(--border);
            color: var(--accent2);
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.4rem 0.75rem;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
        }

        /* =========================================
           PAGE SPECIFIC: CONTENT AREA
           ========================================= */
        .main-content {
            padding: 3rem 0;
            max-width: 800px; /* Editorial width */
            margin: 0 auto;
        }

        /* Intro Blockquote */
        .intro-lead {
            font-size: 1.125rem;
            color: var(--text);
            border-left: 4px solid var(--accent);
            padding-left: 1.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(90deg, rgba(255, 213, 77, 0.05) 0%, transparent 100%);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            line-height: 1.8;
        }

        /* Section Styling */
        .content-section {
            margin-bottom: 3.5rem;
        }

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

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

        .content-section p {
            margin-bottom: 1.25rem;
            color: #d1e0d7; /* Slightly brighter than muted for readability */
        }

        .content-section p:last-child {
            margin-bottom: 0;
        }

        /* Inline Links in Text */
        .content-section a {
            color: var(--accent);
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 213, 77, 0.3);
        }
        .content-section a:hover {
            border-bottom-color: var(--accent);
        }

        /* Custom List (Pasaran) */
        .pasaran-list {
            list-style: none;
            margin-top: 2rem;
            display: grid;
            gap: 1rem;
        }

        .pasaran-list li {
            background-color: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.25rem;
            position: relative;
            overflow: hidden;
            color: #d1e0d7;
            transition: var(--transition);
        }

        .pasaran-list li:hover {
            border-color: rgba(255, 213, 77, 0.3);
            transform: translateY(-2px);
            background-color: var(--surface-alt);
        }

        .pasaran-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--accent);
        }

        /* Mix Parlay Highlight Section */
        .highlight-box {
            background-color: var(--surface-alt);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
        }

        .highlight-box h2::before {
            background-color: var(--accent);
        }

        /* FAQ Accordion */
        .faq-wrapper {
            margin-top: 4rem;
            border-top: 1px solid var(--border);
            padding-top: 3rem;
        }

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

        details {
            background-color: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        summary {
            padding: 1.25rem;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text);
            cursor: pointer;
            position: relative;
            list-style: none; /* Remove default arrow */
            padding-right: 3rem;
        }

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

        summary::after {
            content: '+';
            position: absolute;
            right: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

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

        details p {
            padding: 0 1.25rem 1.25rem;
            color: var(--muted);
            margin: 0;
        }

        /* Related Pages Nav */
        .related-nav-block {
            margin-top: 4rem;
            background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .related-nav-block h3 {
            font-size: 1.25rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .related-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .related-grid a {
            display: inline-block;
            background-color: rgba(6, 18, 12, 0.8);
            border: 1px solid rgba(74, 222, 128, 0.3);
            color: var(--text);
            font-family: var(--font-display);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.875rem;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
        }

        .related-grid a:hover {
            background-color: var(--accent2);
            color: #000;
            border-color: var(--accent2);
        }

        /* Final CTA */
        .grand-cta {
            margin: 4rem 0;
            text-align: center;
            padding: 4rem 2rem;
            background: radial-gradient(circle at center, var(--surface-alt) 0%, var(--bg) 100%);
            border-top: 2px solid var(--accent);
            border-bottom: 2px solid var(--accent);
            position: relative;
        }

        .grand-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 15px,
                rgba(255, 213, 77, 0.03) 15px,
                rgba(255, 213, 77, 0.03) 30px
            );
            pointer-events: none;
        }

        .grand-cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .grand-cta p {
            color: var(--muted);
            margin-bottom: 2rem;
            font-size: 1.125rem;
            position: relative;
            z-index: 2;
        }

        .cta-btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .cta-btn-group .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        /* =========================================
           PART A2: FOOTER STYLES (Match Homepage)
           ========================================= */
        footer {
            background-color: #030906;
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            margin-top: auto;
        }

        .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.875rem;
            max-width: 300px;
        }

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

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

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

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

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

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

        /* Media Queries */
        @media (min-width: 768px) {
            .hero-title { font-size: 3rem; }
            .content-section h2 { font-size: 1.75rem; }
            .footer-grid { grid-template-columns: 300px 1fr; }
            .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 480px) {
            .cta-btn-group { flex-direction: column; }
            .related-grid { flex-direction: column; }
            .related-grid a { text-align: center; }
        }


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