/* 赛事详情页样式 - 新主题色方案 */

/* 覆盖WordPress主题默认的button:focus样式 */
button:focus,
input[type="submit"]:focus {
    background: initial !important;
    border-color: initial !important;
    color: initial !important;
    outline: none !important;
}

:root {
    /* 主题色定义 */
    --black: #070a0f;             /* 黑色 - 20%占比 */
    --white: #ffffff;             /* 白色 - 60%占比 */
    --green: #21382c;             /* 绿色 - 10%占比 */
    --red: #B2231A;               /* 红色 - 10%占比 */
    
    /* 功能性颜色映射 */
    --primary-color: var(--red);        /* 主色调 */
    --secondary-color: var(--green);    /* 辅助色 */
    --background-color: var(--white);   /* 主背景 */
    --text-color: var(--black);         /* 主文本 */
    --text-light: var(--white);         /* 浅色文本 */
    --text-muted: rgba(7, 10, 15, 0.6); /* 次要文本 */
    --border-color: rgba(7, 10, 15, 0.1); /* 边框色 */
    --box-shadow: 0 2px 8px rgba(7, 10, 15, 0.08);
    --border-radius: 6px;
    
    /* 比赛状态颜色 */
    --live-color: var(--red);           /* 进行中 - 红色 */
    --scheduled-color: var(--green);    /* 即将开始 - 绿色 */
    --completed-color: var(--black);    /* 已完成 - 黑色 */
    
    /* 状态背景色（较淡） */
    --live-bg: rgba(178, 35, 26, 0.05);      /* 进行中背景 - 淡红色 */
    --scheduled-bg: rgba(33, 56, 44, 0.05);  /* 即将开始背景 - 淡绿色 */
    --completed-bg: rgba(7, 10, 15, 0.05);   /* 已完成背景 - 淡黑色 */
}

body {
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 64%; /* 整体字体大小再缩小20%：80% * 80% = 64% */
}

/* 赛事头部 */
.tournament-header {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    position: relative;
}

.tournament-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: linear-gradient(to right, var(--red), var(--green), var(--red));
}

.tournament-info-container {
    color: var(--text-light);
}

.tournament-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tournament-meta {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
}

.tournament-meta-item {
    display: flex;
    align-items: center;
}

.tournament-meta-item i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 页面内容 */
.tournament-details-section {
    padding: 1rem 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 比赛状态组样式 */
.matches-status-group {
    margin-bottom: 1.8rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.status-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    user-select: none;
}

.matches-live .status-title {
    background-color: var(--live-color);
}

.matches-scheduled .status-title {
    background-color: var(--scheduled-color);
}

.matches-completed .status-title {
    background-color: var(--completed-color);
}

.status-title-left {
    display: flex;
    align-items: center;
}

.status-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-collapse-btn {
    background: none;
    border: none;
    color: var(--text-light) !important; /* 强制保持白色，不根据状态调整 */
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 3px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.status-collapse-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.status-collapse-btn:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light) !important; /* 焦点状态也保持白色 */
}

.status-collapse-btn.collapsed {
    color: var(--text-light) !important; /* 折叠状态也保持白色 */
}

.status-collapse-btn.collapsed:focus {
    color: var(--text-light) !important; /* 折叠状态下的焦点也保持白色 */
}

.status-collapse-btn i {
    transition: transform 0.3s ease;
}

.status-collapse-btn.collapsed i {
    transform: rotate(-90deg);
}

/* 比赛状态内容区域 */
.matches-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.matches-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.matches-live .matches-content {
    background-color: var(--background-color);
    border: 1px solid rgba(178, 35, 26, 0.2);
    border-top: none;
}

.matches-scheduled .matches-content {
    background-color: var(--background-color);
    border: 1px solid rgba(33, 56, 44, 0.2);
    border-top: none;
}

.matches-completed .matches-content {
    background-color: var(--background-color);
    border: 1px solid rgba(7, 10, 15, 0.2);
    border-top: none;
}

/* 轮次样式 */
.match-round {
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.match-round:last-child {
    margin-bottom: 0;
    padding-bottom: 1rem;
}

.round-title {
    position: relative;
    text-align: center;
    margin: 1rem 0 0.8rem;
    overflow: hidden;
}

.round-title-text {
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--background-color);
    z-index: 1;
}

.round-title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
}

/* 比赛列表间距 - 双列布局 */
.matches-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem; /* 行间距0.8rem，列间距1rem */
}

/* 比赛卡片 */
.match-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 10, 15, 0.15);
}

/* 简化边框样式 */
.match-card.status-live {
    border-left: 4px solid var(--live-color);
}

.match-card.status-scheduled {
    border-left: 4px solid var(--scheduled-color);
}

.match-card.status-completed {
    border-left: 4px solid var(--completed-color);
}

/* 根据比赛状态微调卡片样式 */
.status-live.match-card {
    box-shadow: 0 3px 10px rgba(178, 35, 26, 0.15);
}

.status-live .match-card-body {
    background-color: var(--live-bg);
}

/* 简化卡片头部样式 */
.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(7, 10, 15, 0.03);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.match-datetime {
    font-size: 0.85rem;
}

.match-datetime i {
    margin-right: 0.5rem;
    color: var(--text-muted);
}

/* PC端轮次和局数水平布局 */
.match-info-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.match-round-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.match-format-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* 调整卡片body的间距和布局 - 双列布局优化 */
.match-card-body {
    padding: 1rem 1rem;
    display: grid;
    grid-template-columns: 2fr 0.8fr 2fr;
    gap: 0.75rem;
    align-items: center;
}

/* 移动端特殊布局覆盖 */
@media (max-width: 768px) {
    .match-card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem;
    }
}

/* 球员样式 */
.player-container {
    display: flex;
    align-items: center;
}

.player1 {
    justify-content: flex-start;
}

.player2 {
    justify-content: flex-end;
    text-align: right;
}

.player-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--background-color);
    flex-shrink: 0;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(7, 10, 15, 0.1);
}

.player1 .player-avatar {
    margin-right: 0.6rem;
}

.player2 .player-avatar {
    margin-left: 0.6rem;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 头像占位符样式 */
.player-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 1.5rem;
}

/* 国旗标识 */
.player-flag {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--background-color);
    box-shadow: 0 1px 2px rgba(7, 10, 15, 0.1);
}

.player-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player2 .player-flag {
    right: auto;
    left: -2px;
}

/* 胜者头像金边发光效果 - 减弱版本 */
.winner .player-avatar {
    border: 1px solid #FFD700;
    box-shadow: 
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2),
        0 0 15px rgba(255, 215, 0, 0.1),
        0 1px 6px rgba(0, 0, 0, 0.08);
    animation: goldenGlow 3s ease-in-out infinite alternate;
}

/* 胜者头像发光动画 - 减弱版本 */
@keyframes goldenGlow {
    0% {
        box-shadow: 
            0 0 5px rgba(255, 215, 0, 0.3),
            0 0 10px rgba(255, 215, 0, 0.2),
            0 0 15px rgba(255, 215, 0, 0.1),
            0 2px 6px rgba(0, 0, 0, 0.08);
    }
    100% {
        box-shadow: 
            0 0 8px rgba(255, 215, 0, 0.4),
            0 0 12px rgba(255, 215, 0, 0.25),
            0 0 18px rgba(255, 215, 0, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* 败者头像保持正常显示，无特殊效果 */
.loser .player-avatar {
    /* 保持默认样式，不添加特殊效果 */
}

.player-details {
    flex: 1;
}

.player-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: var(--text-color);
}

/* 比分样式 - 双列布局优化 */
.match-score-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(7, 10, 15, 0.05);
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(7, 10, 15, 0.05);
}

.score {
    font-size: 1.28rem; /* 1.6rem * 80% = 1.28rem */
    font-weight: 700;
    width: 22px; /* 28px * 80% ≈ 22px */
    text-align: center;
}

.player1-score {
    color: var(--green);
}

.player2-score {
    color: var(--red);
}

/* 胜者比分加粗显示 */
.winner-score {
    font-weight: 900;
    font-size: 1.28rem;
}

.score-separator {
    font-size: 1.28rem; /* 1.6rem * 80% = 1.28rem */
    font-weight: 700;
    color: var(--text-muted);
}

/* 无比赛数据 */
.no-matches {
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.no-data-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-data-text {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* 局比分详情样式 */
.match-card-footer {
    padding: 0;
    border-top: none;
}



.frames-details-container {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-top: 1px solid var(--border-color);
    animation: slideDown 0.3s ease forwards;
}

.frames-details-container.closing {
    animation: slideUp 0.3s ease forwards;
}

.frames-table-wrapper {
    overflow-x: auto;
    border-radius: 0;
    box-shadow: none;
}

.frames-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.68rem; /* 0.85rem * 80% = 0.68rem */
    background-color: #fff;
    border: none;
    box-shadow: none;
}

/* 表头样式 */
.frames-details-table thead {
    background-color: rgba(7, 10, 15, 0.05);
}

.frames-details-table th {
    padding: 0.48rem 0.4rem; /* 0.6rem * 80% = 0.48rem, 0.5rem * 80% = 0.4rem */
    text-align: center;
    border: none;
    font-weight: 600;
    color: var(--text-color);
}

.frames-details-table .player-header {
    width: 44%;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.frames-details-table .frame-header {
    width: 12%;
    background-color: rgba(7, 10, 15, 0.08);
}

.frames-details-table td {
    padding: 0.44rem 0.4rem; /* 0.55rem * 80% = 0.44rem, 0.5rem * 80% = 0.4rem */
    text-align: center;
    border: none;
}

.frames-details-table tr {
    transition: background-color 0.2s;
}

/* 隔行背景色 */
.frames-details-table tr:nth-child(even) {
    background-color: rgba(7, 10, 15, 0.02);
}

.frames-details-table .frame-number {
    font-weight: 500;
    background-color: rgba(7, 10, 15, 0.05);
    color: var(--text-muted);
    width: 12%;
    padding: 0.44rem 0; /* 0.55rem * 80% = 0.44rem */
    position: relative;
}

.frame-number-text {
    display: block;
    font-size: 0.72rem; /* 0.9rem * 80% = 0.72rem */
    color: var(--text-muted);
    font-weight: 500;
}

.frames-details-table .score-cell {
    font-weight: 500;
    position: relative;
    width: 44%;
    padding: 0rem 0rem;
    transition: background-color 0.2s;
}

/* Player 1 (left) - Green styling */
.frames-details-table td:first-child .score-value {
    color: var(--green);
}

/* Player 2 (right) - Red styling */
.frames-details-table td:last-child .score-value {
    color: var(--red);
}
/* 
.frames-details-table td:first-child.winner-score {
   background-color: rgba(33, 56, 44, 0.08);
    border-left: 3px solid var(--green);
}

/* 
.frames-details-table td:last-child.winner-score {
     background-color: rgba(178, 35, 26, 0.08);
    border-right: 3px solid var(--red);
} */

.score-value {
    font-size: 0.9rem; /* 1rem * 80% = 0.8rem */
    display: block;
    font-weight: 600;
    padding: 0.08rem 0; /* 0.1rem * 80% = 0.08rem */
}

/* Break indicators - base styles */
.break-indicator {
    position: absolute;
    top: 3px; /* 4px * 80% ≈ 3px */
    right: 4px; /* 5px * 80% = 4px */
    font-size: 0.6rem; /* 0.65rem * 80% = 0.52rem */
    border-radius: 2px; /* 3px * 80% ≈ 2px */
    font-weight: 600;
    min-width: 24px; /* 30px * 80% = 24px */
    width: 24px;
    text-align: center;
    display: inline-block;
}

/* 50+ break styling */
.break-indicator.fifty-break {
    color: var(--green);
    background-color: rgba(33, 56, 44, 0.1);
}

/* 100+ break styling (century) */
.break-indicator.century-break {
    color: var(--white);
    background-color: var(--red);
}

/* 表脚注样式 */
.frames-details-table tfoot {
    background-color: rgba(7, 10, 15, 0.03);
    border-top: 1px solid var(--border-color);
}

.frames-info {
    padding: 0.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.break-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.break-legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.break-legend-item .break-indicator {
    position: static;
    font-size: 0.65rem;
    min-width: 30px;
    width: 30px;
    display: inline-block;
    text-align: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 48, 47, 0.4);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(212, 48, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 48, 47, 0);
    }
}

.frames-details-table tr:hover {
    background-color: rgba(7, 10, 15, 0.02);
}

.no-frames-data {
    text-align: center;
    padding: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animation for frames details */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* 中等屏幕响应式设计 */
@media (max-width: 992px) and (min-width: 769px) {
    .match-card-body {
        padding: 1.2rem 1rem;
        gap: 0.8rem;
    }
    
    .player-avatar {
        width: 50px;
        height: 50px;
    }
    
    .player-name {
        font-size: 0.9rem;
    }
    
    .score {
        font-size: 1.5rem;
        width: 26px;
    }
    
    .score-separator {
        font-size: 1.5rem;
    }
}

/* 移动端响应式设计 - 高度紧凑 */
@media (max-width: 768px) {
    /* 头部区域紧凑化 */
    .tournament-header {
        padding: 0.8rem 0;
        margin-bottom: 0.8rem;
    }
    
    .tournament-title {
        font-size: 1.3rem;
    }
    
    .tournament-meta {
        flex-direction: column;
        gap: 0.2rem;
        font-size: 0.7rem;
    }
    
    /* 页面内容紧凑化 */
    .tournament-details-section {
        padding: 0.4rem 0 1rem;
    }
    
    .section-header {
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 0.6rem;
    }
    
    /* 状态组紧凑化 */
    .matches-status-group {
        margin-bottom: 0.6rem;
        border-radius: 3px;
    }
    
    .status-title {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .status-icon {
        margin-right: 0.4rem;
        font-size: 0.7rem;
    }
    
    .status-collapse-btn {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    /* 轮次紧凑化 */
    .match-round {
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .round-title {
        margin: 0.4rem 0 0.3rem;
    }
    
    .round-title-text {
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    /* 移动端改为单列布局，更紧凑 */
    .matches-list {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    /* 比赛卡片高度紧凑化 */
    .match-card {
        margin-bottom: 0.3rem;
        border-radius: 3px;
        cursor: pointer;
    }
    
    .match-card-header {
        padding: 0.2rem 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .match-info-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }
    
    .match-round-info {
        font-size: 0.65rem;
        color: var(--text-muted);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    
    .match-format-info {
        font-size: 0.65rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    
    .match-datetime {
        font-size: 0.65rem;
        color: var(--text-muted);
    }
    
    .match-card-body {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 0.4rem;
        position: relative;
    }
    
    /* 移动端球员信息布局 - 一行水平布局 */
    .match-card-body {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.4rem;
        padding: 0.4rem;
    }
    
    .player1 {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-start;
    }
    
    .player2 {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    
    .player-avatar {
        width: 36px;
        height: 36px;
        border-width: 1px;
    }
    
    .player-avatar-placeholder {
        font-size: 1rem;
    }
    
    .player1 .player-avatar {
        margin-right: 0.3rem;
    }
    
    .player2 .player-avatar {
        margin-left: 0.3rem;
    }
    
    .player-name {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    /* 比分容器紧凑化 - 居中显示 */
    .match-score-container {
        flex-shrink: 0;
        justify-content: center;
        padding: 0.2rem 0.3rem;
        gap: 0.2rem;
        margin: 0 0.5rem;
    }
    
    .score {
        font-size: 0.8rem;
        width: 18px;
        text-align: center;
    }
    
    .score-separator {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* 国旗标识紧凑化 */
    .player-flag {
        width: 14px;
        height: 14px;
        bottom: -1px;
        right: -1px;
    }
    
    .player2 .player-flag {
        left: -1px;
    }
    
    /* 比分详情表格紧凑化 */
    .frames-details-table {
        font-size: 0.65rem;
    }
    
    /* 移动端隔行背景色 */
    .frames-details-table tr:nth-child(even) {
        background-color: rgba(7, 10, 15, 0.02);
    }
    
    .frames-details-table th {
        padding: 0.2rem 0.15rem;
    }
    
    .frames-details-table td {
        padding: 0.2rem 0.15rem;
    }
    
    .frames-details-table .frame-number {
        font-size: 0.65rem;
        padding: 0.2rem 0;
    }
    
    .frame-number-text {
        font-size: 0.65rem;
    }
    
    .score-value {
        font-size: 0.65rem;
    }
    
    .break-indicator {
        top: 1px;
        right: 1px;
        font-size: 0.50rem;
        min-width: 16px;
        width: 16px;
    }
    

    
    .frames-details-container {
        padding: 0.2rem;
    }
    
    .break-legend-item .break-indicator {
        min-width: 14px;
        width: 14px;
    }
    
    /* 无数据提示紧凑化 */
    .no-matches {
        padding: 1rem 0.8rem;
    }
    
    .no-data-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .no-data-text {
        font-size: 0.8rem;
    }
    
    /* 移动端轮次导航样式 */
    .round-navigation {
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }
    
    .round-nav-container {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .round-nav-title {
        font-size: 0.8rem;
    }
    
    .round-nav-links {
        gap: 0.3rem;
    }
    
    .round-nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}