/* 全局样式重置 */
* {
    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;
    }
}

/* 容器 */
.z95dfdcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.z95dfdheader {
    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;
}

.z95dfdheader .z95dfdcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z95dfdlogo {
    display: flex;
    flex-direction: column;
}

.z95dfdlogo_text {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.z95dfdlogo_subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.z95dfdnav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.z95dfdnav_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.z95dfdnav_link:hover,
.z95dfdnav_link.z95dfdactive {
    background-color: rgba(255,255,255,0.2);
}


.z95dfdmenu_checkbox {
    display: none;
}

.z95dfdmobile_menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.z95dfdmenu_icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.z95dfdmenu_icon::before,
.z95dfdmenu_icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.z95dfdmenu_icon::before {
    top: -10px;
}

.z95dfdmenu_icon::after {
    top: 10px;
}

/* 轮播横幅 */
.z95dfdbanner {
    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;
}

.z95dfdbanner_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.z95dfdbanner_content {
    text-align: left;
    z-index: 2;
    position: relative;
}

.z95dfdbanner_title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z95dfdbanner_desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.z95dfdbanner_btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.z95dfdbanner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.z95dfdbanner_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);
    }
}

.z95dfdbtn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.z95dfdbtn_primary {
    background-color: #ff6b6b;
    color: #fff;
}

.z95dfdbtn_primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.z95dfdbtn_secondary {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.z95dfdbtn_secondary:hover {
    background-color: rgba(255,255,255,0.3);
}

/* 主要内容区域 */
.z95dfdmain {
    padding: 40px 0;
}

.z95dfdsection {
    margin-bottom: 40px;
}

.z95dfdsection:last-of-type {
    margin-bottom: 30px;
}

.z95dfdsection_header {
    text-align: center;
    margin-bottom: 40px;
}

.z95dfdsection_title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

.z95dfdsection_subtitle {
    color: #666;
    font-size: 16px;
}

/* 今日热门茶席 - 框架布局 */
.z95dfdhot_matches {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 0;
    border-radius: 15px;
}

.z95dfdhot_matches_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z95dfdhot_matches_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 焦点茶席大卡片 */
.z95dfdfeatured_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;
}

.z95dfdfeatured_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); }
}

.z95dfdfeatured_match_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z95dfdfeatured_match_league {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z95dfdleague_badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.z95dfdbadge_premier {
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.z95dfdbadge_laliga {
    background-color: rgba(255, 200, 0, 0.9);
    color: #1e3c72;
}

.z95dfdbadge_nba {
    background-color: rgba(255, 80, 0, 0.9);
    color: #fff;
}

.z95dfdbadge_cba {
    background-color: rgba(0, 150, 255, 0.9);
    color: #fff;
}

.z95dfdbadge_bundesliga {
    background-color: rgba(220, 20, 60, 0.9);
    color: #fff;
}

.z95dfdmatch_round {
    font-size: 13px;
    opacity: 0.9;
}

.z95dfdfeatured_match_status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.z95dfdstatus_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.z95dfdstatus_live_dot {
    background-color: #ff6b6b;
    animation: pulse 2s infinite;
}

.z95dfdviewers {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.z95dfdfeatured_match_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z95dfdfeatured_team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z95dfdfeatured_team_home {
    justify-content: flex-start;
}

.z95dfdfeatured_team_away {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.z95dfdteam_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);
}

.z95dfdteam_info {
    flex: 1;
}

.z95dfdteam_name_large {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z95dfdteam_stats {
    font-size: 12px;
    opacity: 0.9;
}

.z95dfdscore_large {
    font-size: 36px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z95dfdfeatured_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);
}

.z95dfdmatch_minute {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.z95dfdmatch_events {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

.z95dfdfeatured_match_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.z95dfdbtn_featured {
    background-color: #fff;
    color: #667eea;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s;
}

.z95dfdbtn_featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.z95dfdmatch_highlights {
    display: flex;
    gap: 10px;
}

.z95dfdhighlight_item {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* 紧凑茶席列表 */
.z95dfdcompact_matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z95dfdcompact_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;
}

.z95dfdcompact_match:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.z95dfdcompact_live {
    border-left-color: #ff6b6b;
}

.z95dfdcompact_upcoming {
    border-left-color: #4ecdc4;
}

.z95dfdcompact_match_left {
    flex: 1;
}

.z95dfdcompact_league {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.z95dfdcompact_time {
    font-size: 12px;
    color: #999;
}

.z95dfdcompact_teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
}

.z95dfdcompact_team {
    font-weight: bold;
    color: #333;
}

.z95dfdcompact_score {
    font-weight: bold;
    color: #1e3c72;
    min-width: 25px;
    text-align: center;
    font-size: 16px;
}

.z95dfdcompact_separator {
    color: #999;
    font-size: 12px;
}

.z95dfdcompact_info {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.z95dfdcompact_viewers {
    color: #ff6b6b;
    font-weight: 500;
}

.z95dfdcompact_remind {
    color: #4ecdc4;
    font-weight: 500;
}

.z95dfdcompact_events {
    color: #999;
}

.z95dfdcompact_importance {
    color: #ffa500;
    font-weight: 500;
}

.z95dfdcompact_match_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.z95dfdstatus_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z95dfdstatus_live_badge {
    background-color: #ff6b6b;
    color: #fff;
    animation: pulse 2s infinite;
}

.z95dfdstatus_upcoming_badge {
    background-color: #4ecdc4;
    color: #fff;
}

.z95dfdcompact_btn {
    padding: 6px 18px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.z95dfdcompact_btn:hover {
    background-color: #2a5298;
    transform: scale(1.05);
}

/* 右侧信息栏 */
.z95dfdhot_matches_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z95dfdsidebar_stats,
.z95dfdsidebar_trending,
.z95dfdsidebar_upcoming {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z95dfdsidebar_stats_title,
.z95dfdsidebar_trending_title,
.z95dfdsidebar_upcoming_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z95dfdstats_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.z95dfdstats_item:last-child {
    border-bottom: none;
}

.z95dfdstats_label {
    font-size: 14px;
    color: #666;
}

.z95dfdstats_value {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
}

.z95dfdtrending_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z95dfdtrending_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z95dfdtrending_item:hover {
    background-color: #f0f0f0;
}

.z95dfdtrending_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;
}

.z95dfdtrending_content {
    flex: 1;
}

.z95dfdtrending_match {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z95dfdtrending_meta {
    font-size: 12px;
    color: #999;
}

.z95dfdupcoming_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z95dfdupcoming_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z95dfdupcoming_item:hover {
    background-color: #f0f0f0;
}

.z95dfdupcoming_time {
    min-width: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #1e3c72;
    text-align: center;
}

.z95dfdupcoming_match {
    flex: 1;
}

.z95dfdupcoming_teams {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z95dfdupcoming_league {
    font-size: 12px;
    color: #999;
}

/* 内容网格布局 */
.z95dfdcontent_grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.z95dfdcontent_main {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 品类标签 */
.z95dfdleague_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.z95dfdtab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.z95dfdtab:hover {
    border-color: #1e3c72;
    color: #1e3c72;
}

.z95dfdtab.z95dfdtab_active {
    background-color: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

/* 茶席列表 */
.z95dfdmatch_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z95dfdmatch_item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z95dfdmatch_item:hover {
    background-color: #f0f0f0;
}

.z95dfdmatch_time_small {
    min-width: 60px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.z95dfdmatch_details {
    flex: 1;
    margin-left: 15px;
}

.z95dfdmatch_league_small {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.z95dfdmatch_teams_small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.z95dfdteam_small {
    font-weight: bold;
}

.z95dfdscore_small {
    color: #1e3c72;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z95dfdmatch_action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z95dfdlive_badge {
    padding: 5px 10px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z95dfdupcoming_badge {
    padding: 5px 10px;
    background-color: #4ecdc4;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z95dfdwatch_btn {
    padding: 8px 20px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.z95dfdwatch_btn:hover {
    background-color: #2a5298;
}

/* 侧边栏 */
.z95dfdsidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.z95dfdsidebar_block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z95dfdsidebar_title {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.z95dfdtable_wrapper {
    overflow-x: auto;
}

.z95dfdtable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.z95dfdtable thead {
    background-color: #f5f5f5;
}

.z95dfdtable th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.z95dfdtable td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.z95dfdtable tbody tr:hover {
    background-color: #f9f9f9;
}

/* 平台特色 - 框架布局 */
.z95dfdfeatures {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 0;
    border-radius: 15px;
    margin-bottom: 0;
}

.z95dfdfeatures_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z95dfdfeatures_main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 核心特色大卡片 */
.z95dfdfeature_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;
}

.z95dfdfeature_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;
}

.z95dfdfeature_hero_content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.z95dfdfeature_hero_icon {
    flex-shrink: 0;
}

.z95dfdhero_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);
}

.z95dfdicon_hd_bg {
    background: rgba(255,255,255,0.25);
}

.z95dfdfeature_hero_text {
    flex: 1;
}

.z95dfdfeature_hero_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.z95dfdfeature_hero_desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z95dfdfeature_hero_stats {
    display: flex;
    gap: 30px;
}

.z95dfdhero_stat_item {
    text-align: center;
}

.z95dfdhero_stat_value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z95dfdhero_stat_label {
    font-size: 13px;
    opacity: 0.9;
}

/* 紧凑特色功能网格 */
.z95dfdfeatures_grid_compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.z95dfdfeature_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;
}

.z95dfdfeature_card_compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-left-color: #667eea;
}

.z95dfdfeature_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.z95dfdfeature_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;
}

.z95dfdicon_text {
    font-size: 14px;
}

.z95dfdicon_realtime_bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z95dfdicon_multi_bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z95dfdicon_mobile_bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z95dfdicon_speed_bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.z95dfdicon_interactive_bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.z95dfdicon_free_bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.z95dfdfeature_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z95dfdbadge_hot {
    background-color: #ff6b6b;
    color: #fff;
}

.z95dfdbadge_new {
    background-color: #4ecdc4;
    color: #fff;
}

.z95dfdfeature_title_compact {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 8px;
}

.z95dfdfeature_desc_compact {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.z95dfdfeature_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.z95dfdfeature_tag {
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 11px;
    color: #666;
}

/* 右侧信息栏 */
.z95dfdfeatures_sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z95dfdfeatures_stats,
.z95dfdfeatures_advantages {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z95dfdfeatures_stats_title,
.z95dfdfeatures_advantages_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z95dfdfeatures_stats_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z95dfdfeatures_stat_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z95dfdfeatures_stat_item:hover {
    background-color: #f0f0f0;
}

.z95dfdfeatures_stat_icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.z95dfdstat_icon_users {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.z95dfdstat_icon_matches {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z95dfdstat_icon_quality {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z95dfdstat_icon_uptime {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z95dfdfeatures_stat_content {
    flex: 1;
}

.z95dfdfeatures_stat_value {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 4px;
}

.z95dfdfeatures_stat_label {
    font-size: 12px;
    color: #999;
}

/* 核心优势列表 */
.z95dfdadvantages_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z95dfdadvantage_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z95dfdadvantage_item:hover {
    background-color: #f0f0f0;
}

.z95dfdadvantage_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;
}

.z95dfdadvantage_text {
    flex: 1;
}

.z95dfdadvantage_title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z95dfdadvantage_desc {
    font-size: 12px;
    color: #999;
}


/* 页脚 */
.z95dfdfooter {
    background-color: #1e3c72;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 30px;
}

.z95dfdfooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.z95dfdfooter_section {
    display: flex;
    flex-direction: column;
}

.z95dfdfooter_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.z95dfdfooter_text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.z95dfdfooter_list {
    list-style: none;
}

.z95dfdfooter_list li {
    margin-bottom: 10px;
}

.z95dfdfooter_link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z95dfdfooter_link:hover {
    color: #fff;
}

.z95dfdfooter_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.z95dfdcopyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* 响应式设计 */
/* 中等屏幕（平板横屏） */
@media (max-width: 1024px) {
    .z95dfdcontainer {
        padding: 0 20px;
    }

    .z95dfdbanner_wrapper {
        gap: 30px;
    }

    .z95dfdbanner_title {
        font-size: 36px;
    }

    .z95dfdhot_matches_wrapper {
        gap: 20px;
    }

    .z95dfdfeatures_wrapper {
        gap: 20px;
    }

    .z95dfdfeatures_grid_compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板竖屏和小屏幕 */
@media (max-width: 768px) {
    .z95dfdheader .z95dfdcontainer {
        flex-wrap: wrap;
        position: relative;
    }

    .z95dfdmobile_menu {
        display: block;
        order: 2;
    }

    .z95dfdnav {
        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;
    }

    .z95dfdmenu_checkbox:checked ~ .z95dfdnav {
        display: block;
    }

    .z95dfdmenu_checkbox:checked ~ .z95dfdmobile_menu .z95dfdmenu_icon {
        background-color: transparent;
    }

    .z95dfdmenu_checkbox:checked ~ .z95dfdmobile_menu .z95dfdmenu_icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .z95dfdmenu_checkbox:checked ~ .z95dfdmobile_menu .z95dfdmenu_icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .z95dfdnav_list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .z95dfdnav_item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z95dfdnav_item:last-child {
        border-bottom: none;
    }

    .z95dfdnav_link {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .z95dfdnav_link:hover,
    .z95dfdnav_link.z95dfdactive {
        background-color: rgba(255,255,255,0.15);
    }

    .z95dfdbanner_title {
        font-size: 28px;
    }

    .z95dfdbanner_desc {
        font-size: 16px;
    }

    .z95dfdbanner {
        padding: 40px 0;
        min-height: auto;
    }

    .z95dfdbanner_wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .z95dfdbanner_content {
        text-align: center;
        order: 2;
    }

    .z95dfdbanner_btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .z95dfdbanner_image {
        order: 1;
        max-width: 100%;
    }

    .z95dfdbanner_img {
        max-width: 85%;
        height: auto;
    }

    .z95dfdsection_title {
        font-size: 24px;
    }

    .z95dfdmatch_grid {
        grid-template-columns: 1fr;
    }

    /* 今日热门茶席响应式 */
    .z95dfdhot_matches_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z95dfdfeatured_match {
        padding: 20px;
    }

    .z95dfdfeatured_match_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .z95dfdteam_name_large {
        font-size: 18px;
    }

    .z95dfdscore_large {
        font-size: 28px;
    }

    .z95dfdfeatured_match_footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .z95dfdmatch_highlights {
        justify-content: center;
    }

    .z95dfdcompact_match {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
    }

    .z95dfdcompact_match_left {
        width: 100%;
    }

    .z95dfdcompact_match_right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z95dfdcontent_grid {
        grid-template-columns: 1fr;
    }

    .z95dfdleague_tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .z95dfdleague_tabs::-webkit-scrollbar {
        height: 4px;
    }

    .z95dfdleague_tabs::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .z95dfdtab {
        white-space: nowrap;
        min-width: fit-content;
    }

    .z95dfdmatch_item {
        flex-wrap: wrap;
        padding: 12px;
    }

    .z95dfdmatch_time_small {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }

    .z95dfdmatch_details {
        margin-left: 0;
        width: 100%;
        flex: 1;
    }

    .z95dfdmatch_action {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z95dfdwatch_btn {
        min-width: 80px;
        text-align: center;
    }

    .z95dfdfeatures_grid {
        grid-template-columns: 1fr;
    }

    /* 平台特色响应式 */
    .z95dfdfeatures_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z95dfdfeature_hero {
        padding: 20px;
    }

    .z95dfdfeature_hero_content {
        flex-direction: column;
        text-align: center;
    }

    .z95dfdfeature_hero_stats {
        justify-content: center;
    }

    .z95dfdfeatures_grid_compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .z95dfdfeature_card_compact {
        padding: 18px;
    }

    .z95dfdfooter_content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z95dfdfooter {
        margin-top: 20px;
        padding: 40px 0 15px;
    }

    /* 表格响应式优化 */
    .z95dfdtable_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z95dfdtable {
        min-width: 300px;
        font-size: 13px;
    }

    .z95dfdtable th,
    .z95dfdtable td {
        padding: 8px 6px;
    }

    /* 侧边栏优化 */
    .z95dfdsidebar {
        margin-top: 0;
    }

    .z95dfdhot_matches_sidebar,
    .z95dfdfeatures_sidebar {
        margin-top: 0;
    }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
    .z95dfdcontainer {
        padding: 0 12px;
    }

    .z95dfdheader {
        padding: 12px 0;
    }

    .z95dfdlogo_text {
        font-size: 18px;
    }

    .z95dfdlogo_subtitle {
        font-size: 11px;
    }

    .z95dfdmobile_menu {
        padding: 5px;
    }

    .z95dfdmenu_icon,
    .z95dfdmenu_icon::before,
    .z95dfdmenu_icon::after {
        width: 25px;
    }

    .z95dfdnav {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z95dfdbanner {
        padding: 30px 0;
        min-height: auto;
    }

    .z95dfdbanner_title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .z95dfdbanner_desc {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .z95dfdbanner_wrapper {
        gap: 20px;
    }

    .z95dfdbanner_img {
        max-width: 90%;
    }

    .z95dfdbanner_btns {
        flex-direction: column;
        width: 100%;
    }

    .z95dfdbtn {
        width: 100%;
        text-align: center;
    }

    .z95dfdbtn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .z95dfdsection_title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .z95dfdsection_subtitle {
        font-size: 13px;
    }

    .z95dfdsection_header {
        margin-bottom: 25px;
    }

    .z95dfdmatch_card {
        padding: 15px;
    }

    .z95dfdcontent_main {
        padding: 15px;
    }

    .z95dfdfeature_card {
        padding: 20px;
    }

    .z95dfdmain {
        padding: 30px 0;
    }

    .z95dfdsection {
        margin-bottom: 30px;
    }

    .z95dfdsection:last-of-type {
        margin-bottom: 20px;
    }

    /* 平台特色小屏幕响应式 */
    .z95dfdfeature_hero {
        padding: 15px;
    }

    .z95dfdfeature_hero_title {
        font-size: 22px;
    }

    .z95dfdfeature_hero_desc {
        font-size: 14px;
    }

    .z95dfdhero_icon_bg {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .z95dfdfeature_hero_stats {
        flex-direction: column;
        gap: 15px;
    }

    .z95dfdhero_stat_value {
        font-size: 20px;
    }

    .z95dfdfeature_card_compact {
        padding: 15px;
    }

    /* 今日热门茶席小屏幕响应式 */
    .z95dfdfeatured_match {
        padding: 15px;
    }

    .z95dfdteam_name_large {
        font-size: 16px;
    }

    .z95dfdscore_large {
        font-size: 24px;
        min-width: 40px;
    }

    .z95dfdteam_logo_placeholder {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .z95dfdteam_stats {
        font-size: 11px;
    }

    .z95dfdcompact_match {
        padding: 12px;
    }

    .z95dfdcompact_teams {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .z95dfdcompact_score {
        font-size: 13px;
    }

    .z95dfdcompact_info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .z95dfdsidebar_stats,
    .z95dfdsidebar_trending,
    .z95dfdsidebar_upcoming {
        padding: 15px;
    }

    .z95dfdfeatures_stats_list,
    .z95dfdadvantages_list {
        gap: 10px;
    }

    .z95dfdfeatures_stat_item,
    .z95dfdadvantage_item {
        padding: 10px;
    }

    /* 触摸优化 */
    .z95dfdbtn,
    .z95dfdtab,
    .z95dfdwatch_btn,
    .z95dfdcompact_btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* 文字可读性优化 */
    .z95dfdfeature_desc_compact,
    .z95dfdcompact_time {
        font-size: 12px;
    }

    /* 间距优化 */
    .z95dfdhot_matches_wrapper,
    .z95dfdfeatures_wrapper {
        gap: 15px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .z95dfdcontainer {
        padding: 0 10px;
    }

    .z95dfdbanner_title {
        font-size: 20px;
    }

    .z95dfdbanner_desc {
        font-size: 12px;
    }

    .z95dfdsection_title {
        font-size: 16px;
    }

    .z95dfdbtn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 打印样式 */
@media print {
    .z95dfdheader,
    .z95dfdfooter,
    .z95dfdbanner,
    .z95dfdmatch_link,
    .z95dfdwatch_btn {
        display: none;
    }

    .z95dfdmain {
        padding: 0;
    }
}
