:root {
            --bg: #050e16;
            --surface: #0c1e2e;
            --surface-alt: #12283d;
            --accent: #ffc857;
            --accent-hover: #e6b44e;
            --accent2: #22d3ee;
            --accent2-hover: #1cb8d1;
            --text: #f0faff;
            --muted: #8fadc2;

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

            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;

            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            --container-px: 1.5rem;
            --max-width: 1200px;
        }

        * {
            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;
            overflow-x: hidden;
        }

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

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

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

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

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 99px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #000;
            box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
            color: #000;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent2);
            border-color: var(--accent2);
        }

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

        /* HEADER (Exact Match Styling) */
        header {
            background-color: rgba(5, 14, 22, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(34, 211, 238, 0.1);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

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

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

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

        .nav-actions {
            display: none;
            gap: 1rem;
        }

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

        @media (min-width: 1024px) {
            .nav-links, .nav-actions {
                display: flex;
                align-items: center;
            }
            .mobile-toggle {
                display: none;
            }
        }

        /* Mobile Menu Active State */
        header.nav-active .nav-links,
        header.nav-active .nav-actions {
            display: flex;
            flex-direction: column;
            position: absolute;
            left: 0;
            right: 0;
            background: var(--surface);
            padding: 1.5rem var(--container-px);
            border-bottom: 1px solid rgba(34, 211, 238, 0.2);
        }

        header.nav-active .nav-links {
            top: 80px;
            gap: 1rem;
        }

        header.nav-active .nav-actions {
            top: calc(80px + 230px); /* Approx height of links */
            padding-bottom: 2rem;
        }

        /* INNER PAGE SPECIFIC STYLES - Carnival by the Bay */

        /* Hero Banner */
        .hero-banner {
            position: relative;
            padding: 4rem 0;
            background: linear-gradient(180deg, rgba(12, 30, 46, 0) 0%, var(--surface-alt) 100%);
            overflow: hidden;
            text-align: center;
            border-bottom: 1px solid rgba(34, 211, 238, 0.1);
        }

        /* Decorative Background Elements (Carnival Bubbles & Confetti) */
        .hero-banner::before, .hero-banner::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            z-index: -1;
        }
        .hero-banner::before {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, rgba(34,211,238,0) 70%);
            top: -100px;
            left: -100px;
        }
        .hero-banner::after {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,200,87,0.1) 0%, rgba(255,200,87,0) 70%);
            bottom: -50px;
            right: -50px;
        }

        .breadcrumb {
            font-size: 0.875rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            font-family: var(--font-display);
            font-weight: 600;
        }

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

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--text);
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
            max-width: 900px;
            margin-inline: auto;
        }

        .hero-title span {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }

        .meta-chips {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .chip {
            background: rgba(12, 30, 46, 0.8);
            border: 1px solid rgba(34, 211, 238, 0.3);
            color: var(--accent2);
            padding: 0.5rem 1rem;
            border-radius: 99px;
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(4px);
        }

        /* Content Layout */
        .content-wrapper {
            padding: 4rem 0;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        /* Intro Block */
        .intro-block {
            background: linear-gradient(135deg, var(--surface), var(--surface-alt));
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border-left: 6px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            font-size: 1.125rem;
            position: relative;
        }

        .intro-block::before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 20px;
            font-family: var(--font-display);
            font-size: 6rem;
            color: rgba(255, 200, 87, 0.05);
            line-height: 1;
        }

        /* Content Sections */
        .content-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .content-card:hover {
            border-color: rgba(34, 211, 238, 0.2);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            transform: translateY(-2px);
        }

        /* Monas Needle Motif - Subtle background decoration on cards */
        .content-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 2rem;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 100px solid rgba(255, 200, 87, 0.03);
            z-index: 0;
            pointer-events: none;
        }

        .content-card h2 {
            color: var(--accent2);
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .content-card h2::before {
            content: '';
            display: block;
            width: 12px;
            height: 12px;
            background-color: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent);
        }

        .content-card p {
            margin-bottom: 1.25rem;
            color: var(--muted);
            position: relative;
            z-index: 1;
        }

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

        /* Custom List Styling */
        .custom-list {
            list-style: none;
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .custom-list li {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1rem;
            color: var(--text);
            font-weight: 500;
        }

        .custom-list li::before {
            content: '★';
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent);
            font-size: 1.2rem;
            text-shadow: 0 0 8px rgba(255, 200, 87, 0.5);
        }

        /* Highlight Card (Commitment) */
        .highlight-card {
            background: linear-gradient(145deg, var(--surface-alt), #0a1b2a);
            border: 1px solid rgba(255, 200, 87, 0.2);
        }
        .highlight-card h2 {
            color: var(--accent);
        }
        .highlight-card h2::before {
            background-color: var(--accent2);
            box-shadow: 0 0 10px var(--accent2);
        }

        /* FAQ Section */
        .faq-wrapper {
            margin-top: 2rem;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-header h2 {
            font-size: 2.25rem;
            color: var(--text);
        }

        details {
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }

        details[open] {
            border-color: rgba(34, 211, 238, 0.3);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        summary {
            padding: 1.5rem;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            background: rgba(12, 30, 46, 0.5);
        }

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

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

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

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

        /* Related Pages Nav */
        .related-nav {
            margin: 4rem 0;
        }

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

        .related-card {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: var(--surface-alt);
            border-radius: var(--radius-md);
            border: 1px dashed rgba(34, 211, 238, 0.3);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: capitalize;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .related-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(45deg, rgba(34,211,238,0.1), transparent);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .related-card:hover {
            border-style: solid;
            border-color: var(--accent2);
            color: var(--accent);
            transform: translateY(-5px);
        }

        .related-card:hover::before {
            opacity: 1;
        }

        /* Grand CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #0a2540 0%, #050e16 100%);
            border: 2px solid rgba(255, 200, 87, 0.2);
            border-radius: var(--radius-xl);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(34, 211, 238, 0.03) 20px,
                rgba(34, 211, 238, 0.03) 40px
            );
            z-index: 0;
            animation: moveStripes 60s linear infinite;
        }

        @keyframes moveStripes {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

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

        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--text);
            margin-bottom: 1rem;
        }

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

        .cta-text {
            color: var(--muted);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            max-width: 600px;
            margin-inline: auto;
        }

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

        .cta-actions .btn {
            min-width: 200px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        /* FOOTER (Exact Match Styling) */
        footer {
            background-color: var(--surface);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 2fr;
            }
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 0.95rem;
            max-width: 300px;
        }

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

        .footer-links div {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

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

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

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(143, 173, 194, 0.6);
            font-size: 0.875rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 767px) {
            .content-card { padding: 1.5rem; }
            .intro-block { padding: 1.5rem; font-size: 1rem; }
            .hero-banner { padding: 3rem 0; }
            .cta-banner { padding: 3rem 1.5rem; }
            .cta-actions .btn { width: 100%; min-width: unset; }
        }


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