:root {
            --bg: #06120c;
            --surface: #0e2619;
            --accent: #ffd54d;
            --accent2: #4ade80;
            --text: #f0fff4;
            --muted: #93b3a0;
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Lora', serif;
            --container-width: 1200px;
            --header-height: 70px;
        }

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

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

        h1, h2, h3, h4, .font-display {
            font-family: var(--font-display);
            line-height: 1.3;
        }

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

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

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

        /* 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: all 0.3s ease;
            text-align: center;
            border: none;
        }

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

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

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

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

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

        /* HEADER (Provided Structure) */
        header {
            background-color: rgba(6, 18, 12, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .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: 10px;
        }

        .nav-links {
            display: flex;
            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(--accent2);
        }

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

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

        /* HERO SECTION - Stadium Night Vibe */
        .hero {
            position: relative;
            padding: 4rem 0 5rem;
            background: radial-gradient(circle at 50% 0%, rgba(74, 222, 128, 0.15) 0%, transparent 60%),
                        linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
            border-bottom: 2px solid rgba(74, 222, 128, 0.2);
            overflow: hidden;
        }

        /* Garuda Wing / Stadium Light Motif */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,213,77,0.05) 0%, transparent 50%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            transform: skewX(-15deg);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent2), transparent);
        }

        .breadcrumb {
            font-family: var(--font-display);
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            display: inline-block;
            background: rgba(14, 38, 25, 0.8);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(147, 179, 160, 0.2);
        }

        .breadcrumb a {
            color: var(--accent2);
        }

        .hero h1 {
            font-size: 2.75rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 1.5rem;
            max-width: 900px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }

        .meta-chips {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .chip {
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            background: rgba(255, 213, 77, 0.1);
            color: var(--accent);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            border: 1px solid rgba(255, 213, 77, 0.3);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .chip::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--accent);
            border-radius: 50%;
        }

        /* ARTICLE CONTENT */
        .article-layout {
            padding: 4rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .intro-block {
            font-size: 1.2rem;
            color: var(--text);
            padding-left: 1.5rem;
            border-left: 4px solid var(--accent);
            margin-bottom: 2rem;
            font-style: italic;
        }

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

        .content-section p {
            margin-bottom: 1.5rem;
            color: #d1e3d8;
        }

        /* Broadcast Style H2 */
        .content-section h2 {
            font-size: 1.4rem;
            color: var(--accent);
            background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
            padding: 1rem 1.5rem;
            border-left: 4px solid var(--accent2);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 1.5rem 0;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 0 8px 8px 0;
        }

        .content-section h2::after {
            content: '';
            flex-grow: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(74, 222, 128, 0.3), transparent);
            margin-left: 15px;
        }

        /* Custom List */
        .custom-list {
            list-style: none;
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .custom-list li {
            background: var(--surface);
            padding: 1.25rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(147, 179, 160, 0.1);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .custom-list li:hover {
            transform: translateX(5px);
            border-color: var(--accent2);
        }

        .custom-list li::before {
            content: '⚽';
            font-size: 1.2rem;
            line-height: 1.5;
            filter: drop-shadow(0 0 5px rgba(255, 213, 77, 0.5));
        }

        /* FAQ Section */
        .faq-container {
            display: grid;
            gap: 1rem;
        }

        details {
            background: var(--surface);
            border: 1px solid rgba(147, 179, 160, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

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

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

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

        details[open] summary::after {
            transform: rotate(45deg);
            color: var(--accent2);
        }

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

        /* RELATED LINKS (Creative Nav Block) */
        .related-nav {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 213, 77, 0.2);
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .related-nav::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
        }

        .related-nav h3 {
            color: var(--text);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.5rem;
        }

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

        .related-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(6, 18, 12, 0.6);
            border: 1px solid rgba(147, 179, 160, 0.2);
            border-radius: 8px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .related-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent2);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
            border-radius: 8px;
        }

        .related-card:hover::after {
            opacity: 0.1;
        }

        .related-card:hover {
            border-color: var(--accent2);
            transform: translateY(-3px);
        }

        .rc-title {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .rc-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--muted);
        }

        /* CTA BOTTOM */
        .cta-bottom {
            background: linear-gradient(135deg, var(--surface) 0%, #0a1c12 100%);
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 16px;
            border: 1px solid rgba(74, 222, 128, 0.3);
            margin-bottom: 4rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-bottom::before {
            content: '';
            position: absolute;
            top: -50px; left: -50px;
            width: 150px; height: 150px;
            background: var(--accent2);
            filter: blur(100px);
            opacity: 0.2;
        }

        .cta-bottom h2 {
            font-size: 2rem;
            color: var(--text);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

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

        .cta-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FOOTER (Provided Structure) */
        footer {
            background-color: var(--bg);
            border-top: 1px solid rgba(147, 179, 160, 0.2);
            padding: 4rem 0 2rem;
            font-family: var(--font-body);
        }

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

        .footer-brand p {
            color: var(--muted);
            margin-top: 1rem;
            font-size: 0.95rem;
        }

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

        .footer-links h4 {
            color: var(--text);
            font-family: var(--font-display);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

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

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

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

        .footer-links ul li a:hover {
            color: var(--accent2);
        }

        .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;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .header-actions {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            /* Simple mobile menu activation via class */
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: var(--header-height);
                left: -1.5rem;
                right: -1.5rem;
                background: var(--surface);
                padding: 1.5rem;
                border-bottom: 1px solid rgba(74, 222, 128, 0.2);
                z-index: 999;
            }
            .header-actions.active {
                display: flex;
                position: absolute;
                top: calc(var(--header-height) + 220px);
                left: -1.5rem;
                right: -1.5rem;
                background: var(--surface);
                padding: 1rem 1.5rem 1.5rem;
                justify-content: center;
                z-index: 999;
                border-bottom: 1px solid rgba(74, 222, 128, 0.2);
            }
            .hero {
                padding: 3rem 0;
            }
            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 390px) {
            .hero h1 {
                font-size: 1.75rem;
            }
            .content-section h2 {
                font-size: 1.1rem;
                padding: 0.8rem 1rem;
            }
            .footer-links-grid {
                grid-template-columns: 1fr;
            }
            .cta-actions {
                flex-direction: column;
            }
            .btn-lg {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.75rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 100%;
            }
        }


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