/* stadium-article.css - 共享的球场文章样式 */

/* 文章布局 */
.article-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* 侧边栏 */
.article-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D32F2F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 倒计时 */
.sidebar-countdown {
    text-align: center;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.countdown-item {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #FFD966;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFE484;
    margin-top: 5px;
}

.timezone-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.timezone-label {
    font-weight: 600;
    color: #D32F2F;
}

.match-badge {
    background: #D32F2F;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 作者卡片 */
.author-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #ddd;
}

.author-avatar {
    width: 100px;
    height: 100px;
    background: #D32F2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(211,47,47,0.2);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #999;
}

/* CTA卡片 */
.cta-card {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(211,47,47,0.2);
}

.cta-content {
    flex: 2;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-description {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-button {
    flex: 1;
    background: white;
    color: #D32F2F;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #FFD966;
    border-color: #FFD966;
    color: #333;
    transform: translateY(-2px);
}

/* 比赛卡片 */
.match-schedule {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.match-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    border-left: 6px solid;
}

.match-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.match-stage {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.stage-group { background: #2a5298; color: white; }
.stage-round32 { background: #FFB347; color: white; }
.stage-round16 { background: #9b59b6; color: white; }
.stage-quarter { background: #9b59b6; color: white; }
.stage-semifinal { background: #D32F2F; color: white; }
.stage-final { background: #FFD700; color: #333; }

.match-teams {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 5px 0;
}

.match-info {
    color: #666;
    font-size: 0.95rem;
}

.match-time-local {
    text-align: right;
}

.local-time-box {
    background: #f0f7ff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    color: #2a5298;
    border: 1px solid #cce5ff;
}

.match-note {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.match-note-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.match-note-icon {
    font-size: 1rem;
    min-width: 20px;
}

.explain-box {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.95rem;
    border-left: 4px solid #2a5298;
}

.explain-title {
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 8px;
}

/* ===== 响应式设计 - 针对不同屏幕尺寸 ===== */

/* 平板和小桌面 (992px 以下) */
@media (max-width: 992px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
        margin-bottom: 20px;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .match-header {
        flex-direction: column;
        text-align: center;
    }
    
    .match-time-local {
        text-align: center;
        margin-top: 10px;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== 手机专用优化 (768px 以下) ===== */
@media (max-width: 768px) {
    /* 文章包装器 */
    .article-wrapper {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    /* 标题优化 */
    .post-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .post-excerpt {
        font-size: 1rem;
    }
    
    /* 元数据行 */
    .post-meta {
        margin-bottom: 5px !important;
        flex-wrap: wrap;
        gap: 4px 8px;
        font-size: 0.85rem;
    }
    
    .post-meta span {
        display: inline-block;
        margin-right: 0;
    }
    
    .post-read-time {
        white-space: nowrap;
    }
    
    .post-header {
        margin-bottom: 15px !important;
    }
    
    .post-excerpt {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    /* 快速统计卡片 */
    .post-content > div:first-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }
    
    .post-content > div:first-child > div {
        padding: 15px 10px !important;
    }
    
    .post-content > div:first-child > div div:first-child {
        font-size: 1.8rem !important;
    }
    
    /* 特色图片 */
    .post-header div:first-of-type {
        height: 250px !important;
        margin-bottom: 20px !important;
    }
    
    /* 侧边栏小工具 */
    .sidebar-widget {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .countdown-grid {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 5px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    /* 比赛卡片 */
    .match-schedule {
        padding: 15px;
        margin: 20px 0;
    }
    
    .match-card {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .match-teams {
        font-size: 1.1rem;
    }
    
    .match-info {
        font-size: 0.85rem;
    }
    
    .local-time-box {
        font-size: 0.8rem;
        padding: 6px 12px;
        min-width: 100px;
        width: auto;
    }
    
    .match-note-item {
        font-size: 0.85rem;
    }
    
    .match-note-icon {
        font-size: 0.9rem;
    }
    
    /* 比赛阶段标签 */
    .match-stage {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    /* 深夜比赛标签 */
    .match-info span[style*="background: #FFD966"] {
        display: inline-block;
        margin-left: 0 !important;
        margin-top: 5px;
        font-size: 0.7rem !important;
    }
    
    /* 球场事实卡片 */
    .post-content > div[style*="background: #f0f7ff"] {
        padding: 15px !important;
        margin: 20px 0 !important;
        font-size: 0.9rem;
    }
    
    /* 作者卡片 */
    .author-card {
        padding: 20px;
        margin: 30px 0;
        gap: 15px;
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .author-name {
        font-size: 1.2rem;
    }
    
    .author-bio {
        font-size: 0.9rem;
    }
    
    .author-meta {
        gap: 15px;
        font-size: 0.8rem;
    }
    
    /* CTA卡片 */
    .cta-card {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-features {
        gap: 10px;
    }
    
    .cta-feature {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    /* 解释框 */
    .explain-box {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .explain-title {
        font-size: 1rem;
    }
    
    .explain-box ul {
        padding-left: 15px;
    }
    
    /* FAQ部分 */
    .post-content > div[style*="margin-top: 40px"] {
        margin-top: 30px !important;
    }
    
    .post-content > div[style*="margin-top: 40px"] h2 {
        font-size: 1.5rem !important;
    }
    
    .post-content > div[style*="margin-top: 40px"] h3 {
        font-size: 1.1rem !important;
    }
    
    .post-content > div[style*="margin-top: 40px"] p {
        font-size: 0.9rem !important;
    }
    
    .post-content > div[style*="border-bottom: 1px solid #eee"] {
        padding: 15px 0 !important;
    }
    
    /* 导航栏 */
    .global-navigation .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .nav-separator {
        display: none;
    }
    
    /* 时间区域信息 */
    .timezone-info {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    /* 相关文章推荐 */
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    /* 高亮网格 */
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    /* 邮件订阅表单 */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 40px;
        margin-bottom: 10px;
    }
    
    /* 比赛表格 */
    .match-table {
        font-size: 0.9rem;
    }
    
    .match-table th, 
    .match-table td {
        padding: 10px 8px;
    }
    
    /* 中场CTA */
    .mid-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* 底部CTA按钮 */
    .bottom-cta-buttons {
        flex-direction: column;
    }
    
    .bottom-cta-card {
        padding: 30px 20px;
    }
    
    .bottom-cta-card h2 {
        font-size: 1.6rem;
    }
}

/* ===== 小屏手机 (480px 以下) ===== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .article-wrapper {
        padding: 0 12px;
    }
    
    .post-meta {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
        gap: 4px 6px;
    }
    
    .post-category {
        background: #f0f0f0;
        padding: 2px 6px;
        border-radius: 20px;
    }
    
    .post-title {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }
    
    .post-excerpt {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    /* 快速统计卡片优化 */
    .post-content > div:first-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .post-content > div:first-child > div {
        padding: 12px 8px !important;
    }
    
    .post-content > div:first-child > div div:first-child {
        font-size: 1.5rem !important;
    }
    
    .post-content > div:first-child > div div:last-child {
        font-size: 0.7rem !important;
    }
    
    /* 特色图片 */
    .post-header div:first-of-type {
        height: 200px !important;
    }
    
    /* 比赛卡片 */
    .match-teams {
        font-size: 1rem;
    }
    
    .match-info {
        font-size: 0.8rem;
    }
    
    .match-note-item {
        font-size: 0.8rem;
    }
    
    /* 侧边栏 */
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .sidebar-widget ul li {
        font-size: 0.85rem;
    }
    
    /* 快速事实列表 */
    .sidebar-widget ul li strong {
        display: block;
        margin-bottom: 3px;
    }
    
    /* 重点比赛列表 */
    .sidebar-widget > div[style*="margin-bottom: 15px"] {
        margin-bottom: 12px !important;
    }
    
    .sidebar-widget > div[style*="margin-bottom: 15px"] div:first-child {
        font-size: 0.95rem !important;
    }
    
    .sidebar-widget > div[style*="margin-bottom: 15px"] div:last-child {
        font-size: 0.75rem !important;
    }
    
    /* 作者卡片 */
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* CTA卡片 */
    .cta-features {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-feature {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* 返回链接 */
    .sidebar-widget a {
        display: block;
        padding: 5px 0;
    }
    
    /* 独家数据分析模块优化 */
    .exclusive-data {
        padding: 15px !important;
        margin: 20px 0 !important;
    }
    
    .exclusive-data h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .exclusive-data p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* 高亮卡片优化 */
    .match-highlights {
        padding: 15px !important;
    }
    
    .highlights-grid {
        gap: 12px !important;
    }
    
    .highlight-card {
        padding: 15px !important;
    }
    
    .highlight-card ul {
        padding-left: 15px;
        font-size: 0.85rem;
    }
    
    /* 底部CTA卡片优化 */
    .bottom-cta-card {
        padding: 25px 15px !important;
    }
    
    .bottom-cta-card h2 {
        font-size: 1.4rem !important;
    }
    
    .bottom-cta-stats {
        gap: 15px !important;
    }
    
    .bottom-cta-stat-number {
        font-size: 1.5rem !important;
    }
    
    .bottom-cta-buttons {
        gap: 10px !important;
    }
    
    .bottom-cta-btn-primary,
    .bottom-cta-btn-secondary {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        width: 100%;
    }
    
    /* 相关文章推荐优化 */
    .related-grid {
        gap: 8px !important;
    }
    
    .related-item {
        padding: 10px !important;
    }
    
    .related-item strong {
        font-size: 0.9rem;
    }
    
    .related-item p {
        font-size: 0.75rem;
    }
    
    /* 场馆特色模块优化 */
    .stadium-features,
    .transport-guide,
    .faq-section {
        padding: 15px !important;
        margin: 30px 0 !important;
    }
    
    .stadium-features h2,
    .transport-guide h2,
    .faq-section h2 {
        font-size: 1.3rem !important;
        padding-left: 12px !important;
    }
    
    .feature-item {
        padding: 12px !important;
    }
    
    .feature-icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .feature-item strong {
        font-size: 1rem !important;
    }
    
    .feature-item p {
        font-size: 0.8rem !important;
    }
    
    /* 交通指南优化 */
    .transport-card {
        padding: 12px !important;
        gap: 10px !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .transport-icon {
        font-size: 1.5rem !important;
        min-width: 40px !important;
        height: 40px !important;
    }
    
    .transport-content strong {
        font-size: 0.95rem !important;
    }
    
    .transport-content p {
        font-size: 0.8rem !important;
    }
    
    /* 地址框优化 */
    .address-box {
        padding: 12px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .address-icon {
        font-size: 1.5rem !important;
    }
    
    .address-text strong {
        font-size: 1rem !important;
    }
    
    .address-text p {
        font-size: 0.85rem !important;
    }
    
    /* FAQ列表优化 */
    .faq-row {
        padding: 12px !important;
    }
    
    .faq-row h3 {
        font-size: 0.95rem !important;
    }
    
    .faq-row p {
        font-size: 0.85rem !important;
        padding-left: 0 !important;
    }
}

/* ===== 横屏手机优化 ===== */
@media (max-width: 896px) and (orientation: landscape) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .post-header div:first-of-type {
        height: 300px !important;
    }
    
    .author-card {
        flex-direction: row;
        text-align: left;
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
    }
    
    .cta-card {
        flex-direction: row;
        text-align: left;
    }
    
    .cta-features {
        flex-direction: row;
    }
}

/* ===== 模块化样式 ===== */

/* 场馆特色模块 */
.stadium-features {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stadium-features h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #D32F2F;
    padding-left: 20px;
}

.stadium-features h2:before {
    content: "🏟️";
    font-size: 2rem;
}

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

.feature-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item strong {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* 交通指南模块 */
.transport-guide {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.transport-guide h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #D32F2F;
    padding-left: 20px;
}

.transport-guide h2:before {
    content: "🗺️";
    font-size: 2rem;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.transport-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.transport-card:hover {
    background: #e9ecef;
}

.transport-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.transport-content {
    flex: 1;
}

.transport-content strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

.transport-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.address-box {
    background: #D32F2F;
    color: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.address-icon {
    font-size: 2rem;
}

.address-text {
    flex: 1;
}

.address-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #FFD966;
}

.address-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* FAQ模块 */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #D32F2F;
    padding-left: 20px;
}

.faq-section h2:before {
    content: "❓";
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.faq-question .toggle-icon {
    margin-left: auto;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* 简化版FAQ（无交互） */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-row {
    background: white;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-row:hover {
    background: #f8f9fa;
    border-color: #D32F2F;
}

.faq-row h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-row h3:before {
    content: "❓";
    font-size: 1rem;
    color: #D32F2F;
}

.faq-row p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    padding-left: 24px;
}

/* 独家数据模块 */
.exclusive-data {
    background: #f0f7ff;
    border-left: 4px solid #D32F2F;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.exclusive-data h3 {
    margin-top: 0;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exclusive-data h3:before {
    content: "📊";
    font-size: 1.5rem;
}

/* 相关文章推荐 */
.related-stadiums {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
}

.related-stadiums h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.related-item {
    text-decoration: none;
    color: #333;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eee;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #D32F2F;
}

.related-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #D32F2F;
}

.related-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* 邮件订阅 */
.newsletter-signup {
    margin: 40px 0;
    padding: 35px;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(211,47,47,0.2);
}

.newsletter-signup h3 {
    margin-top: 0;
    color: white;
    font-size: 1.5rem;
}

.newsletter-signup p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 40px 0 0 40px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 14px 25px;
    background: #FFD966;
    color: #333;
    border: none;
    border-radius: 0 40px 40px 0;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #FFC107;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}

/* 比赛表格样式 - 优化Your Local Time列 */
.match-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.match-table th {
    background: #2a5298;
    color: white;
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.match-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.match-table tr:last-child td {
    border-bottom: none;
}

.match-table tr:hover td {
    background: #f5f9ff;
}

.local-time-badge {
    background: #FFD966;
    color: #333;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
    display: inline-block;
}

/* 比赛亮点卡片 */
.match-highlights {
    margin-top: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 16px;
    border-left: 4px solid #D32F2F;
}

.match-highlights h3 {
    margin-top: 0;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.highlight-card ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    color: #555;
}

.highlight-card li {
    margin-bottom: 5px;
    line-height: 1.5;
}

/* CTA引导样式 - 文章开头 */
.top-cta {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px solid #cce5ff;
}

.top-cta-badge {
    background: #D32F2F;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}

.top-cta-btn {
    background: #D32F2F;
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-cta-btn:hover {
    background: #B71C1C;
}

/* 中场CTA - 蓝色渐变 */
.mid-cta {
    margin: 40px 0;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 30px;
    border-radius: 16px;
}

.mid-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.mid-cta-text {
    flex: 2;
}

.mid-cta h3 {
    color: white;
    margin-top: 0;
    font-size: 1.4rem;
}

.mid-cta p {
    color: rgba(255,255,255,0.9);
}

.mid-cta-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.mid-cta-feature {
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.mid-cta-btn {
    flex: 1;
    text-align: center;
    background: #FFD966;
    color: #333;
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: background 0.3s ease;
    display: inline-block;
}

.mid-cta-btn:hover {
    background: #FFC107;
}

.mid-cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* 底部CTA卡片 - 强化版 */
.bottom-cta-card {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(211,47,47,0.2);
}

.bottom-cta-card h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.bottom-cta-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

.bottom-cta-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.bottom-cta-stat {
    text-align: center;
}

.bottom-cta-stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.bottom-cta-stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.bottom-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-cta-btn-primary {
    background: white;
    color: #D32F2F;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.bottom-cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid white;
    transition: background 0.3s ease;
}

.bottom-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.bottom-cta-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
}

/* ===== 触摸优化 ===== */
@media (hover: none) and (pointer: coarse) {
    .nav-item,
    .cta-button,
    .bottom-cta-btn-primary,
    .bottom-cta-btn-secondary,
    .related-item,
    .faq-row {
        cursor: default;
        -webkit-tap-highlight-color: rgba(211, 47, 47, 0.1);
    }
    
    .faq-row:active {
        background: #f0f0f0;
        transition: none;
    }
    
    .feature-item:hover,
    .transport-card:hover,
    .related-item:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
}

.matches-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 25px 0;
        }
        
        /* 单个比赛卡片 */
        .match-card-modern {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .match-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        /* 卡片头部 - 阶段标签 */
        .match-card-header {
            padding: 12px 18px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .match-stage-badge {
            background: #2a5298;
            color: white;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .match-stage-badge.group { background: #2a5298; }
        .match-stage-badge.round32 { background: #FFB347; }
        .match-stage-badge.round16 { background: #9b59b6; }
        .match-stage-badge.semifinal { background: #D32F2F; }
        .match-stage-badge.final { background: #FFD966; color: #333; }
        
        .match-date {
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
        }
        
        /* 卡片主体 */
        .match-card-body {
            padding: 20px 18px;
            flex: 1;
        }
        
        /* 球队对阵 */
        .match-teams-modern {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 40%;
        }
        
        .team-flag {
            font-size: 2.5rem;
            margin-bottom: 8px;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }
        
        .team-name {
            font-weight: 700;
            font-size: 1rem;
            color: #333;
        }
        
        .team-code {
            font-size: 0.75rem;
            color: #999;
            margin-top: 2px;
        }
        
        .vs-divider {
            font-weight: 800;
            color: #D32F2F;
            background: #f8f9fa;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        /* 比赛时间信息 */
        .match-time-info {
            background: #f0f7ff;
            border-radius: 12px;
            padding: 12px;
            margin: 15px 0;
            text-align: center;
            border: 1px solid #cce5ff;
        }
        
        .match-time-main {
            font-weight: 700;
            font-size: 1.1rem;
            color: #2a5298;
        }
        
        .match-time-local {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .local-time-box-card {
            background: #FFD966;
            color: #333;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }
        
        /* 比赛亮点列表 */
        .match-highlights-list {
            margin-top: 15px;
            border-top: 1px dashed #eee;
            padding-top: 15px;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }
        
        .highlight-icon {
            color: #D32F2F;
            font-size: 1rem;
            min-width: 18px;
        }
        
        /* 小组信息 */
        .match-group {
            display: inline-block;
            background: #f0f0f0;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #666;
            margin-top: 10px;
        }
        
        /* 决赛特殊卡片 */
        .match-card-modern.final-card {
            border: 3px solid #FFD966;
            grid-column: span 2;
        }
        
        .final-card .match-card-header {
            background: linear-gradient(135deg, #FFD966, #FFC107);
        }
        
        .final-card .match-stage-badge.final {
            background: #D32F2F;
            color: white;
        }
        
        /* 分组标题 */
        .stage-section-title {
            font-size: 1.4rem;
            margin: 40px 0 20px;
            color: #333;
            border-left: 4px solid #D32F2F;
            padding-left: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .stage-section-title span {
            background: #f0f0f0;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #666;
        }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .matches-grid {
                grid-template-columns: 1fr;
            }
            
            .match-card-modern.final-card {
                grid-column: span 1;
            }
            
            .team-flag {
                font-size: 2rem;
            }
            
            .team-name {
                font-size: 0.9rem;
            }
        }