:root {
            --bg: #0a0726;
            --surface: #171238;
            --surface-hover: #1f184b;
            --accent: #fbbf24;
            --accent-hover: #f59e0b;
            --accent2: #818cf8;
            --text: #f2f0ff;
            --muted: #a5a1c9;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Sora', sans-serif;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
            --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;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        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: 0 1.5rem;
        }

        /* HEADER STYLES (Matching provided HTML) */
        header {
            background-color: var(--bg);
            border-bottom: 1px solid rgba(251, 191, 36, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .brand {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--accent);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        nav ul {
            display: none;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 600;
        }
        nav a:hover {
            color: var(--accent);
        }
        .header-actions {
            display: none;
            gap: 1rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            text-align: center;
            min-height: 44px;
        }
        .btn-primary {
            background-color: var(--accent);
            color: var(--bg);
        }
        .btn-primary:hover {
            background-color: var(--accent-hover);
            color: var(--bg);
        }
        .btn-secondary {
            background-color: transparent;
            color: var(--text);
            border: 1px solid var(--muted);
        }
        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .mobile-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            min-width: 44px;
            min-height: 44px;
        }
        .mobile-menu {
            display: none;
            background-color: var(--surface);
            padding: 1.5rem;
            border-bottom: 1px solid rgba(251, 191, 36, 0.1);
        }
        .mobile-menu.active {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-menu a {
            color: var(--text);
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(165, 161, 201, 0.1);
        }

        /* HERO BANNER */
        .hero {
            padding: 4rem 0 3rem;
            background: radial-gradient(circle at top center, var(--surface) 0%, var(--bg) 100%);
            border-bottom: 1px solid rgba(129, 140, 248, 0.1);
            position: relative;
            overflow: hidden;
        }
        /* Gold Bar Stack Motif - Decorative */
        .hero::before {
            content: '';
            position: absolute;
            top: 2rem;
            right: 10%;
            width: 40px;
            height: 4px;
            background: var(--accent);
            box-shadow: 0 12px 0 var(--accent), 0 24px 0 var(--accent);
            opacity: 0.2;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 2rem;
            left: 5%;
            width: 60px;
            height: 2px;
            background: var(--accent2);
            box-shadow: 0 8px 0 var(--accent2), 0 16px 0 var(--accent2);
            opacity: 0.1;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            line-height: 1.1;
            color: var(--text);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        .hero h1 span {
            color: var(--accent);
        }
        .meta-chips {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .chip {
            background-color: rgba(23, 18, 56, 0.8);
            border: 1px solid rgba(165, 161, 201, 0.2);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--muted);
            display: inline-flex;
            align-items: center;
        }
        .chip::before {
            content: '•';
            color: var(--accent);
            margin-right: 0.5rem;
        }

        /* CONTENT LAYOUT */
        .content-area {
            padding: 3rem 0 5rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .intro-quote {
            font-size: 1.1rem;
            color: var(--text);
            padding: 2rem;
            background-color: var(--surface);
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 2rem;
            position: relative;
        }

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

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        /* Gold Bar Stack Motif for headings */
        .motif-stack {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .motif-stack span {
            display: block;
            height: 3px;
            background-color: var(--accent);
            border-radius: 2px;
        }
        .motif-stack span:nth-child(1) { width: 24px; }
        .motif-stack span:nth-child(2) { width: 16px; }
        .motif-stack span:nth-child(3) { width: 8px; }

        .section-block h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--accent2);
            letter-spacing: 0.5px;
        }

        .section-block p {
            margin-bottom: 1.2rem;
            color: var(--muted);
        }
        .section-block p:last-child {
            margin-bottom: 0;
        }
        .section-block a {
            border-bottom: 1px dashed var(--accent);
            padding-bottom: 2px;
        }
        .section-block a:hover {
            border-bottom-style: solid;
        }

        /* Custom List Styling (Cards style) */
        .bet-types-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .bet-card {
            background-color: var(--surface);
            padding: 1.2rem 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(251, 191, 36, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: var(--transition);
        }
        .bet-card:hover {
            border-color: rgba(251, 191, 36, 0.4);
            transform: translateY(-2px);
            background-color: var(--surface-hover);
        }
        .bet-card::before {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            background-color: var(--accent);
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        }
        .bet-card span {
            color: var(--text);
            font-size: 0.95rem;
        }

        /* FAQ SECTION */
        .faq-wrapper {
            background-color: var(--surface);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid rgba(165, 161, 201, 0.1);
        }
        .faq-wrapper h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            color: var(--text);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        details {
            border-bottom: 1px solid rgba(165, 161, 201, 0.1);
            padding: 1rem 0;
        }
        details:last-child {
            border-bottom: none;
        }
        summary {
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            padding-right: 1rem;
        }
        summary::-webkit-details-marker {
            display: none;
        }
        summary::after {
            content: '+';
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }
        details[open] summary::after {
            transform: rotate(45deg);
        }
        details p {
            margin-top: 1rem;
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
            padding-right: 2rem;
        }

        /* RELATED LINKS BLOCK */
        .related-nav {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(129, 140, 248, 0.2);
        }
        .related-nav h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--accent2);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .related-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        .related-card {
            background-color: var(--bg);
            border: 1px solid rgba(165, 161, 201, 0.2);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .related-card:hover {
            border-color: var(--accent);
            background-color: var(--surface);
        }
        .related-card a {
            font-weight: 600;
            color: var(--text);
            text-transform: capitalize;
            border: none;
        }
        .related-card a::after {
            content: '→';
            display: block;
            margin-top: 0.5rem;
            color: var(--accent);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        .related-card:hover a::after {
            transform: translateX(5px);
        }

        /* CTA BLOCK */
        .cta-final {
            margin-top: 4rem;
            background: linear-gradient(135deg, var(--surface) 0%, #1a1640 100%);
            padding: 3rem 2rem;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid rgba(251, 191, 36, 0.2);
            position: relative;
            overflow: hidden;
        }
        .cta-final::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 4px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
        }
        .cta-final h3 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            color: var(--text);
            margin-bottom: 1rem;
        }
        .cta-final p {
            color: var(--muted);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-buttons .btn {
            min-width: 160px;
        }

        /* FOOTER STYLES (Matching provided HTML) */
        footer {
            background-color: #050314;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(165, 161, 201, 0.1);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-brand {
            display: block;
            margin-bottom: 1rem;
        }
        footer p {
            color: var(--muted);
            font-size: 0.9rem;
            max-width: 300px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .footer-links a {
            color: var(--muted);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            color: var(--muted);
            font-size: 0.8rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(165, 161, 201, 0.1);
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (min-width: 768px) {
            .hero h1 { font-size: 3.5rem; }
            .content-grid { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; }
            .bet-types-grid { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: 1fr 2fr; }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) {
            header .mobile-toggle { display: none; }
            header nav ul { display: flex; }
            header .header-actions { display: flex; }
            .hero { padding: 5rem 0 4rem; text-align: center; }
            .breadcrumb { justify-content: center; }
            .meta-chips { justify-content: center; }
            .content-grid { max-width: 900px; }
        }


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