/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 锚点定位偏移（考虑固定头部导航栏） */
section[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 60px;
    }
}

/* 容器 */
.z96bdacontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.z96bdaheader {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.z96bdaheader .z96bdacontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z96bdalogo {
    display: flex;
    flex-direction: column;
}

.z96bdalogo_text {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.z96bdalogo_subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.z96bdanav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.z96bdanav_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.z96bdanav_link:hover,
.z96bdanav_link.z96bdaactive {
    background-color: rgba(255,255,255,0.2);
}


.z96bdamenu_checkbox {
    display: none;
}

.z96bdamobile_menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.z96bdamenu_icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.z96bdamenu_icon::before,
.z96bdamenu_icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.z96bdamenu_icon::before {
    top: -10px;
}

.z96bdamenu_icon::after {
    top: 10px;
}

/* 轮播横幅 */
.z96bdabanner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.z96bdabanner_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.z96bdabanner_content {
    text-align: left;
    z-index: 2;
    position: relative;
}

.z96bdabanner_title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z96bdabanner_desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.z96bdabanner_btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.z96bdabanner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.z96bdabanner_img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    display: block;
}

/* 图片响应式优化 */
img {
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.z96bdabtn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.z96bdabtn_primary {
    background-color: #ff6b6b;
    color: #fff;
}

.z96bdabtn_primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.z96bdabtn_secondary {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.z96bdabtn_secondary:hover {
    background-color: rgba(255,255,255,0.3);
}

/* 主要内容区域 */
.z96bdamain {
    padding: 40px 0;
}

.z96bdasection {
    margin-bottom: 40px;
}

.z96bdasection:last-of-type {
    margin-bottom: 30px;
}

.z96bdasection_header {
    text-align: center;
    margin-bottom: 40px;
}

.z96bdasection_title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

.z96bdasection_subtitle {
    color: #666;
    font-size: 16px;
}

/* 今日热门茶席 - 框架布局 */
.z96bdahot_matches {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 0;
    border-radius: 15px;
}

.z96bdahot_matches_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z96bdahot_matches_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 焦点茶席大卡片 */
.z96bdafeatured_match {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.z96bdafeatured_match::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.z96bdafeatured_match_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z96bdafeatured_match_league {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z96bdaleague_badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.z96bdabadge_premier {
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.z96bdabadge_laliga {
    background-color: rgba(255, 200, 0, 0.9);
    color: #1e3c72;
}

.z96bdabadge_nba {
    background-color: rgba(255, 80, 0, 0.9);
    color: #fff;
}

.z96bdabadge_cba {
    background-color: rgba(0, 150, 255, 0.9);
    color: #fff;
}

.z96bdabadge_bundesliga {
    background-color: rgba(220, 20, 60, 0.9);
    color: #fff;
}

.z96bdamatch_round {
    font-size: 13px;
    opacity: 0.9;
}

.z96bdafeatured_match_status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.z96bdastatus_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.z96bdastatus_live_dot {
    background-color: #ff6b6b;
    animation: pulse 2s infinite;
}

.z96bdaviewers {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.z96bdafeatured_match_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z96bdafeatured_team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z96bdafeatured_team_home {
    justify-content: flex-start;
}

.z96bdafeatured_team_away {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.z96bdateam_logo_placeholder {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.z96bdateam_info {
    flex: 1;
}

.z96bdateam_name_large {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z96bdateam_stats {
    font-size: 12px;
    opacity: 0.9;
}

.z96bdascore_large {
    font-size: 36px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z96bdafeatured_vs {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.z96bdamatch_minute {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.z96bdamatch_events {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

.z96bdafeatured_match_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.z96bdabtn_featured {
    background-color: #fff;
    color: #667eea;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s;
}

.z96bdabtn_featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.z96bdamatch_highlights {
    display: flex;
    gap: 10px;
}

.z96bdahighlight_item {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* 紧凑茶席列表 */
.z96bdacompact_matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z96bdacompact_match {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.z96bdacompact_match:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.z96bdacompact_live {
    border-left-color: #ff6b6b;
}

.z96bdacompact_upcoming {
    border-left-color: #4ecdc4;
}

.z96bdacompact_match_left {
    flex: 1;
}

.z96bdacompact_league {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.z96bdacompact_time {
    font-size: 12px;
    color: #999;
}

.z96bdacompact_teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
}

.z96bdacompact_team {
    font-weight: bold;
    color: #333;
}

.z96bdacompact_score {
    font-weight: bold;
    color: #1e3c72;
    min-width: 25px;
    text-align: center;
    font-size: 16px;
}

.z96bdacompact_separator {
    color: #999;
    font-size: 12px;
}

.z96bdacompact_info {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.z96bdacompact_viewers {
    color: #ff6b6b;
    font-weight: 500;
}

.z96bdacompact_remind {
    color: #4ecdc4;
    font-weight: 500;
}

.z96bdacompact_events {
    color: #999;
}

.z96bdacompact_importance {
    color: #ffa500;
    font-weight: 500;
}

.z96bdacompact_match_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.z96bdastatus_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z96bdastatus_live_badge {
    background-color: #ff6b6b;
    color: #fff;
    animation: pulse 2s infinite;
}

.z96bdastatus_upcoming_badge {
    background-color: #4ecdc4;
    color: #fff;
}

.z96bdacompact_btn {
    padding: 6px 18px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.z96bdacompact_btn:hover {
    background-color: #2a5298;
    transform: scale(1.05);
}

/* 右侧信息栏 */
.z96bdahot_matches_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z96bdasidebar_stats,
.z96bdasidebar_trending,
.z96bdasidebar_upcoming {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z96bdasidebar_stats_title,
.z96bdasidebar_trending_title,
.z96bdasidebar_upcoming_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z96bdastats_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.z96bdastats_item:last-child {
    border-bottom: none;
}

.z96bdastats_label {
    font-size: 14px;
    color: #666;
}

.z96bdastats_value {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
}

.z96bdatrending_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z96bdatrending_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z96bdatrending_item:hover {
    background-color: #f0f0f0;
}

.z96bdatrending_rank {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.z96bdatrending_content {
    flex: 1;
}

.z96bdatrending_match {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z96bdatrending_meta {
    font-size: 12px;
    color: #999;
}

.z96bdaupcoming_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z96bdaupcoming_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z96bdaupcoming_item:hover {
    background-color: #f0f0f0;
}

.z96bdaupcoming_time {
    min-width: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #1e3c72;
    text-align: center;
}

.z96bdaupcoming_match {
    flex: 1;
}

.z96bdaupcoming_teams {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z96bdaupcoming_league {
    font-size: 12px;
    color: #999;
}

/* 内容网格布局 */
.z96bdacontent_grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.z96bdacontent_main {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 品类标签 */
.z96bdaleague_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.z96bdatab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.z96bdatab:hover {
    border-color: #1e3c72;
    color: #1e3c72;
}

.z96bdatab.z96bdatab_active {
    background-color: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

/* 茶席列表 */
.z96bdamatch_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z96bdamatch_item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z96bdamatch_item:hover {
    background-color: #f0f0f0;
}

.z96bdamatch_time_small {
    min-width: 60px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.z96bdamatch_details {
    flex: 1;
    margin-left: 15px;
}

.z96bdamatch_league_small {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.z96bdamatch_teams_small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.z96bdateam_small {
    font-weight: bold;
}

.z96bdascore_small {
    color: #1e3c72;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z96bdamatch_action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z96bdalive_badge {
    padding: 5px 10px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z96bdaupcoming_badge {
    padding: 5px 10px;
    background-color: #4ecdc4;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z96bdawatch_btn {
    padding: 8px 20px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.z96bdawatch_btn:hover {
    background-color: #2a5298;
}

/* 侧边栏 */
.z96bdasidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.z96bdasidebar_block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z96bdasidebar_title {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.z96bdatable_wrapper {
    overflow-x: auto;
}

.z96bdatable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.z96bdatable thead {
    background-color: #f5f5f5;
}

.z96bdatable th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.z96bdatable td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.z96bdatable tbody tr:hover {
    background-color: #f9f9f9;
}

/* 平台特色 - 框架布局 */
.z96bdafeatures {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 0;
    border-radius: 15px;
    margin-bottom: 0;
}

.z96bdafeatures_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z96bdafeatures_main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 核心特色大卡片 */
.z96bdafeature_hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.z96bdafeature_hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.z96bdafeature_hero_content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.z96bdafeature_hero_icon {
    flex-shrink: 0;
}

.z96bdahero_icon_bg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.z96bdaicon_hd_bg {
    background: rgba(255,255,255,0.25);
}

.z96bdafeature_hero_text {
    flex: 1;
}

.z96bdafeature_hero_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.z96bdafeature_hero_desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z96bdafeature_hero_stats {
    display: flex;
    gap: 30px;
}

.z96bdahero_stat_item {
    text-align: center;
}

.z96bdahero_stat_value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z96bdahero_stat_label {
    font-size: 13px;
    opacity: 0.9;
}

/* 紧凑特色功能网格 */
.z96bdafeatures_grid_compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.z96bdafeature_card_compact {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.z96bdafeature_card_compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-left-color: #667eea;
}

.z96bdafeature_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.z96bdafeature_icon_compact {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.z96bdaicon_text {
    font-size: 14px;
}

.z96bdaicon_realtime_bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z96bdaicon_multi_bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z96bdaicon_mobile_bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z96bdaicon_speed_bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.z96bdaicon_interactive_bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.z96bdaicon_free_bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.z96bdafeature_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z96bdabadge_hot {
    background-color: #ff6b6b;
    color: #fff;
}

.z96bdabadge_new {
    background-color: #4ecdc4;
    color: #fff;
}

.z96bdafeature_title_compact {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 8px;
}

.z96bdafeature_desc_compact {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.z96bdafeature_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.z96bdafeature_tag {
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 11px;
    color: #666;
}

/* 右侧信息栏 */
.z96bdafeatures_sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z96bdafeatures_stats,
.z96bdafeatures_advantages {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z96bdafeatures_stats_title,
.z96bdafeatures_advantages_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z96bdafeatures_stats_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z96bdafeatures_stat_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z96bdafeatures_stat_item:hover {
    background-color: #f0f0f0;
}

.z96bdafeatures_stat_icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.z96bdastat_icon_users {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.z96bdastat_icon_matches {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z96bdastat_icon_quality {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z96bdastat_icon_uptime {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z96bdafeatures_stat_content {
    flex: 1;
}

.z96bdafeatures_stat_value {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 4px;
}

.z96bdafeatures_stat_label {
    font-size: 12px;
    color: #999;
}

/* 核心优势列表 */
.z96bdaadvantages_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z96bdaadvantage_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z96bdaadvantage_item:hover {
    background-color: #f0f0f0;
}

.z96bdaadvantage_check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.z96bdaadvantage_text {
    flex: 1;
}

.z96bdaadvantage_title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z96bdaadvantage_desc {
    font-size: 12px;
    color: #999;
}


/* 页脚 */
.z96bdafooter {
    background-color: #1e3c72;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 30px;
}

.z96bdafooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.z96bdafooter_section {
    display: flex;
    flex-direction: column;
}

.z96bdafooter_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.z96bdafooter_text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.z96bdafooter_list {
    list-style: none;
}

.z96bdafooter_list li {
    margin-bottom: 10px;
}

.z96bdafooter_link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z96bdafooter_link:hover {
    color: #fff;
}

.z96bdafooter_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.z96bdacopyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* 响应式设计 */
/* 中等屏幕（平板横屏） */
@media (max-width: 1024px) {
    .z96bdacontainer {
        padding: 0 20px;
    }

    .z96bdabanner_wrapper {
        gap: 30px;
    }

    .z96bdabanner_title {
        font-size: 36px;
    }

    .z96bdahot_matches_wrapper {
        gap: 20px;
    }

    .z96bdafeatures_wrapper {
        gap: 20px;
    }

    .z96bdafeatures_grid_compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板竖屏和小屏幕 */
@media (max-width: 768px) {
    .z96bdaheader .z96bdacontainer {
        flex-wrap: wrap;
        position: relative;
    }

    .z96bdamobile_menu {
        display: block;
        order: 2;
    }

    .z96bdanav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    .z96bdamenu_checkbox:checked ~ .z96bdanav {
        display: block;
    }

    .z96bdamenu_checkbox:checked ~ .z96bdamobile_menu .z96bdamenu_icon {
        background-color: transparent;
    }

    .z96bdamenu_checkbox:checked ~ .z96bdamobile_menu .z96bdamenu_icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .z96bdamenu_checkbox:checked ~ .z96bdamobile_menu .z96bdamenu_icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .z96bdanav_list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .z96bdanav_item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z96bdanav_item:last-child {
        border-bottom: none;
    }

    .z96bdanav_link {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .z96bdanav_link:hover,
    .z96bdanav_link.z96bdaactive {
        background-color: rgba(255,255,255,0.15);
    }

    .z96bdabanner_title {
        font-size: 28px;
    }

    .z96bdabanner_desc {
        font-size: 16px;
    }

    .z96bdabanner {
        padding: 40px 0;
        min-height: auto;
    }

    .z96bdabanner_wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .z96bdabanner_content {
        text-align: center;
        order: 2;
    }

    .z96bdabanner_btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .z96bdabanner_image {
        order: 1;
        max-width: 100%;
    }

    .z96bdabanner_img {
        max-width: 85%;
        height: auto;
    }

    .z96bdasection_title {
        font-size: 24px;
    }

    .z96bdamatch_grid {
        grid-template-columns: 1fr;
    }

    /* 今日热门茶席响应式 */
    .z96bdahot_matches_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z96bdafeatured_match {
        padding: 20px;
    }

    .z96bdafeatured_match_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .z96bdateam_name_large {
        font-size: 18px;
    }

    .z96bdascore_large {
        font-size: 28px;
    }

    .z96bdafeatured_match_footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .z96bdamatch_highlights {
        justify-content: center;
    }

    .z96bdacompact_match {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
    }

    .z96bdacompact_match_left {
        width: 100%;
    }

    .z96bdacompact_match_right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z96bdacontent_grid {
        grid-template-columns: 1fr;
    }

    .z96bdaleague_tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .z96bdaleague_tabs::-webkit-scrollbar {
        height: 4px;
    }

    .z96bdaleague_tabs::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .z96bdatab {
        white-space: nowrap;
        min-width: fit-content;
    }

    .z96bdamatch_item {
        flex-wrap: wrap;
        padding: 12px;
    }

    .z96bdamatch_time_small {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }

    .z96bdamatch_details {
        margin-left: 0;
        width: 100%;
        flex: 1;
    }

    .z96bdamatch_action {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z96bdawatch_btn {
        min-width: 80px;
        text-align: center;
    }

    .z96bdafeatures_grid {
        grid-template-columns: 1fr;
    }

    /* 平台特色响应式 */
    .z96bdafeatures_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z96bdafeature_hero {
        padding: 20px;
    }

    .z96bdafeature_hero_content {
        flex-direction: column;
        text-align: center;
    }

    .z96bdafeature_hero_stats {
        justify-content: center;
    }

    .z96bdafeatures_grid_compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .z96bdafeature_card_compact {
        padding: 18px;
    }

    .z96bdafooter_content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z96bdafooter {
        margin-top: 20px;
        padding: 40px 0 15px;
    }

    /* 表格响应式优化 */
    .z96bdatable_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z96bdatable {
        min-width: 300px;
        font-size: 13px;
    }

    .z96bdatable th,
    .z96bdatable td {
        padding: 8px 6px;
    }

    /* 侧边栏优化 */
    .z96bdasidebar {
        margin-top: 0;
    }

    .z96bdahot_matches_sidebar,
    .z96bdafeatures_sidebar {
        margin-top: 0;
    }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
    .z96bdacontainer {
        padding: 0 12px;
    }

    .z96bdaheader {
        padding: 12px 0;
    }

    .z96bdalogo_text {
        font-size: 18px;
    }

    .z96bdalogo_subtitle {
        font-size: 11px;
    }

    .z96bdamobile_menu {
        padding: 5px;
    }

    .z96bdamenu_icon,
    .z96bdamenu_icon::before,
    .z96bdamenu_icon::after {
        width: 25px;
    }

    .z96bdanav {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z96bdabanner {
        padding: 30px 0;
        min-height: auto;
    }

    .z96bdabanner_title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .z96bdabanner_desc {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .z96bdabanner_wrapper {
        gap: 20px;
    }

    .z96bdabanner_img {
        max-width: 90%;
    }

    .z96bdabanner_btns {
        flex-direction: column;
        width: 100%;
    }

    .z96bdabtn {
        width: 100%;
        text-align: center;
    }

    .z96bdabtn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .z96bdasection_title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .z96bdasection_subtitle {
        font-size: 13px;
    }

    .z96bdasection_header {
        margin-bottom: 25px;
    }

    .z96bdamatch_card {
        padding: 15px;
    }

    .z96bdacontent_main {
        padding: 15px;
    }

    .z96bdafeature_card {
        padding: 20px;
    }

    .z96bdamain {
        padding: 30px 0;
    }

    .z96bdasection {
        margin-bottom: 30px;
    }

    .z96bdasection:last-of-type {
        margin-bottom: 20px;
    }

    /* 平台特色小屏幕响应式 */
    .z96bdafeature_hero {
        padding: 15px;
    }

    .z96bdafeature_hero_title {
        font-size: 22px;
    }

    .z96bdafeature_hero_desc {
        font-size: 14px;
    }

    .z96bdahero_icon_bg {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .z96bdafeature_hero_stats {
        flex-direction: column;
        gap: 15px;
    }

    .z96bdahero_stat_value {
        font-size: 20px;
    }

    .z96bdafeature_card_compact {
        padding: 15px;
    }

    /* 今日热门茶席小屏幕响应式 */
    .z96bdafeatured_match {
        padding: 15px;
    }

    .z96bdateam_name_large {
        font-size: 16px;
    }

    .z96bdascore_large {
        font-size: 24px;
        min-width: 40px;
    }

    .z96bdateam_logo_placeholder {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .z96bdateam_stats {
        font-size: 11px;
    }

    .z96bdacompact_match {
        padding: 12px;
    }

    .z96bdacompact_teams {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .z96bdacompact_score {
        font-size: 13px;
    }

    .z96bdacompact_info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .z96bdasidebar_stats,
    .z96bdasidebar_trending,
    .z96bdasidebar_upcoming {
        padding: 15px;
    }

    .z96bdafeatures_stats_list,
    .z96bdaadvantages_list {
        gap: 10px;
    }

    .z96bdafeatures_stat_item,
    .z96bdaadvantage_item {
        padding: 10px;
    }

    /* 触摸优化 */
    .z96bdabtn,
    .z96bdatab,
    .z96bdawatch_btn,
    .z96bdacompact_btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* 文字可读性优化 */
    .z96bdafeature_desc_compact,
    .z96bdacompact_time {
        font-size: 12px;
    }

    /* 间距优化 */
    .z96bdahot_matches_wrapper,
    .z96bdafeatures_wrapper {
        gap: 15px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .z96bdacontainer {
        padding: 0 10px;
    }

    .z96bdabanner_title {
        font-size: 20px;
    }

    .z96bdabanner_desc {
        font-size: 12px;
    }

    .z96bdasection_title {
        font-size: 16px;
    }

    .z96bdabtn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 打印样式 */
@media print {
    .z96bdaheader,
    .z96bdafooter,
    .z96bdabanner,
    .z96bdamatch_link,
    .z96bdawatch_btn {
        display: none;
    }

    .z96bdamain {
        padding: 0;
    }
}
