﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%);
            color: #f0e6ff;
            min-height: 100vh;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        nav {
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        .nav-links a {
            color: #d4c4f0;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #b388ff;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #e1d4ff, #b388ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 40px 0 20px 0;
            text-align: center;
            letter-spacing: 1px;
        }
        .subhead {
            text-align: center;
            color: #c9b8e8;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        .geo-intro {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 32px 36px;
            margin: 20px 0 40px 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 1.05rem;
            line-height: 1.9;
            color: #e0d4f0;
        }
        .geo-intro strong {
            color: #b388ff;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 40px 0;
        }
        .card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            border-radius: 24px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 18px;
            display: block;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.05);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #e1d4ff;
        }
        .card p {
            color: #c9b8e8;
            font-size: 0.95rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin: 60px 0 24px 0;
            color: #e1d4ff;
            border-left: 5px solid #b388ff;
            padding-left: 20px;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        @media (max-width: 768px) {
            .faq-grid { grid-template-columns: 1fr; }
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .faq-item h4 {
            font-size: 1.1rem;
            color: #d4c4f0;
            margin-bottom: 12px;
        }
        .faq-item p {
            color: #b8a8d8;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
            margin: 30px 0;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .news-card .date {
            display: inline-block;
            font-size: 0.85rem;
            color: #9e8ac0;
            background: rgba(255,255,255,0.08);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
        .news-card h4 {
            font-size: 1.15rem;
            color: #e1d4ff;
            margin-bottom: 10px;
        }
        .news-card p {
            color: #b8a8d8;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 30px 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #b388ff;
        }
        .stat-label {
            color: #c9b8e8;
            margin-top: 8px;
            font-size: 1rem;
        }
        .cta-section {
            background: linear-gradient(135deg, rgba(74, 26, 111, 0.6), rgba(26, 10, 46, 0.8));
            backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 48px 40px;
            text-align: center;
            margin: 50px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .cta-section h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 16px;
        }
        .cta-section p {
            color: #d4c4f0;
            max-width: 600px;
            margin: 0 auto 28px auto;
        }
        .btn-primary {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #7c4dff, #b388ff);
            color: #fff;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(124, 77, 255, 0.3);
        }
        .btn-primary:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 32px rgba(124, 77, 255, 0.5);
        }
        footer {
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px 0 24px 0;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h5 {
            color: #e1d4ff;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .footer-col p, .footer-col a {
            color: #b8a8d8;
            font-size: 0.9rem;
            line-height: 2;
            text-decoration: none;
            display: block;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.06);
            margin: 20px 0;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            color: #8a7aa8;
        }
        .footer-links a {
            color: #9e8ac0;
            text-decoration: none;
            margin: 0 8px;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        .partner-logos img {
            height: 40px;
            border-radius: 8px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .partner-logos img:hover {
            opacity: 1;
        }
        @media (max-width: 640px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 6px 12px; }
            .nav-links a { font-size: 13px; }
            .geo-intro { padding: 24px 20px; }
        }

/* TianCMS dynamic template additions */
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    color: #f4edff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
}
.site-logo {
    display: block;
    width: 156px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
}
.site-brand-text {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .site-brand { gap: 8px; }
    .site-logo { width: 132px; height: 38px; }
    .site-brand-text { max-width: 110px; font-size: 0.92rem; }
}
.nav-links a[aria-current="page"] { color: #fff; border-bottom-color: #b388ff; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: #9e8ac0; margin: 28px 0 8px; font-size: 0.92rem; }
.breadcrumb a { color: #c9b8e8; text-decoration: none; }
.breadcrumb span::before { content: "/"; margin-right: 8px; color: #7c6a99; }
.news-card a { color: inherit; text-decoration: none; }
.news-card .read-more { display: inline-flex; margin-top: 14px; color: #d8c5ff; font-weight: 600; }
.pagination { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 36px 0 12px; }
.pagination a { min-width: 48px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #d4c4f0; text-decoration: none; }
.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; margin-top: 26px; }
.article-detail { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 34px; box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.article-meta { color: #9e8ac0; margin: 0 0 18px; }
.article-desc { display: block; color: #d4c4f0; font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; }
.article-body { color: #e0d4f0; line-height: 1.95; font-size: 1.02rem; }
.article-body p, .article-body h2, .article-body h3, .article-body ul, .article-body ol, .article-body blockquote { margin-bottom: 18px; }
.lead-media, .body-media-grid figure { margin: 24px 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 12px; }
.lead-media img, .body-media-grid img { width: 100%; height: auto; border-radius: 14px; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.lead-media figcaption, .body-media-grid figcaption { color: #9e8ac0; font-size: 0.88rem; margin-top: 8px; }
.body-media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.sidebar-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 22px; margin-bottom: 22px; }
.sidebar-card h2 { color: #e1d4ff; font-size: 1.18rem; margin-bottom: 14px; }
.sidebar-card a { display: block; color: #c9b8e8; text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.article-neighbors { display: grid; gap: 12px; margin-top: 28px; }
.empty-state { padding: 32px; border-radius: 20px; background: rgba(255,255,255,0.05); color: #c9b8e8; text-align: center; }
.live-score-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; margin: 30px 0; }
.score-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 20px; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.24); }
.score-card .league, .score-card .status { color: #c9b8e8; font-size: 0.92rem; }
.score-card .teams { color: #fff; font-weight: 700; margin: 10px 0; }
.score-card .score { color: #b388ff; font-size: 1.7rem; font-weight: 800; }
@media (max-width: 900px) { .article-shell { grid-template-columns: 1fr; } .article-detail { padding: 24px 20px; } }
