/* 全局尺寸规范 - 与style.css保持一致 */
/* 全局尺寸规范 - 与style.css保持一致 */
:root {
    /* 网站标准尺寸 */
    --site-width: 1920px;
    --site-height: 1080px;
    
    /* 主体内容区域宽度 */
    --content-width: 1200px;
    
    /* 导航栏高度范围 */
    --navbar-height-min: 60px;
    --navbar-height-max: 100px;
    
    /* Banner高度范围 */
    --banner-height-min: 300px;
    --banner-height-max: 800px;
}

/* 全新积分榜页面设计 - 现代化卡片式布局 */

/* 页面标题区域 */
.standings-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75), rgba(45, 45, 45, 0.65));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.standings-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff69b4, #00ffff, #ff69b4, #ff69b4);
    animation: heroGlow 4s linear infinite;
}

@keyframes heroGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.standings-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff69b4;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
    background: linear-gradient(135deg, #ff69b4, #ff85c0, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleFloat 3s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.standings-hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.8s forwards;
    font-weight: 300;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 积分榜筛选器样式 - 现代化设计 */
.standings-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75), rgba(45, 45, 45, 0.65));
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.standings-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 105, 180, 0.05), transparent);
    animation: filterGlow 8s linear infinite;
}

@keyframes filterGlow {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.standings-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-right: 30px;
}

.standings-tab {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.7), rgba(55, 55, 55, 0.7));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.standings-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.3), transparent);
    transition: all 0.6s ease;
}

.standings-tab.active {
    background: linear-gradient(135deg, #ff69b4, #ff85c0);
    border-color: #ff69b4;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    transform: translateY(-2px);
    color: white;
}

.standings-tab:hover:not(.active) {
    background: linear-gradient(135deg, rgba(65, 65, 65, 0.8), rgba(75, 75, 75, 0.8));
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.standings-tab:hover::before {
    left: 100%;
}

.season-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.season-selector label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.season-selector select {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.7), rgba(35, 35, 35, 0.7));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.season-selector select:hover {
    border-color: #ff69b4;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
}

.season-selector select:focus {
    outline: none;
    border-color: #ff85c0;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

/* 积分榜分区样式 */
.stat-division {
    margin-bottom: 40px;
}

.division-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ff69b4;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.division-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 30px;
    background-color: #ff69b4;
    border-radius: 5px;
}

/* 积分榜表格样式 */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    table-layout: fixed; /* 固定表格布局 */
}

.standings-table th,
.standings-table td {
    padding: 16px 20px; /* 稍微减少padding以改善对齐 */
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    vertical-align: middle; /* 垂直居中对齐 */
    word-wrap: break-word; /* 单词换行 */
    overflow-wrap: break-word; /* 溢出换行 */
    font-size: 14px; /* 统一字体大小 */
    font-weight: 500; /* 统一字体粗细 */
    color: #ffffff; /* 统一字体颜色 */
    line-height: 1.4; /* 统一行高 */
    height: 48px; /* 固定行高 */
}

.standings-table th {
    background: rgba(45, 45, 45, 0.7);
    font-weight: 600; /* 表头稍微粗一点 */
    color: #ff69b4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    height: 48px; /* 与数据行保持一致的行高 */
    line-height: 1.4; /* 与数据行保持一致的行高 */
}

/* 设置表格列宽 - 常规赛积分榜（8列） */
.standings-table th:nth-child(1),
.standings-table td:nth-child(1) {
    width: 60px; /* 排名列 - 固定宽度 */
    min-width: 60px;
    max-width: 60px;
}

.standings-table th:nth-child(2),
.standings-table td:nth-child(2) {
    width: 180px; /* 战队列 - 固定宽度 */
    min-width: 180px;
    max-width: 180px;
}

.standings-table th:nth-child(3),
.standings-table td:nth-child(3) {
    width: 70px; /* 场次列 - 固定宽度 */
    min-width: 70px;
    max-width: 70px;
}

.standings-table th:nth-child(4),
.standings-table td:nth-child(4) {
    width: 70px; /* 胜场列 - 固定宽度 */
    min-width: 70px;
    max-width: 70px;
}

.standings-table th:nth-child(5),
.standings-table td:nth-child(5) {
    width: 70px; /* 负场列 - 固定宽度 */
    min-width: 70px;
    max-width: 70px;
}

.standings-table th:nth-child(6),
.standings-table td:nth-child(6) {
    width: 80px; /* 胜率列 - 固定宽度 */
    min-width: 80px;
    max-width: 80px;
}

.standings-table th:nth-child(7),
.standings-table td:nth-child(7) {
    width: 80px; /* 积分列 - 固定宽度 */
    min-width: 80px;
    max-width: 80px;
}

.standings-table th:nth-child(8),
.standings-table td:nth-child(8) {
    width: 90px; /* 净胜分列 - 固定宽度 */
    min-width: 90px;
    max-width: 90px;
}

.standings-table th::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #ff69b4;
}

.standings-table tr:last-child td {
    border-bottom: none;
}

.standings-table tr {
    transition: all 0.3s ease;
    position: relative;
}

.standings-table tr:nth-child(1) {
    background-color: rgba(255, 105, 180, 0.08) !important;
    border-left: 4px solid #ffd700;
}

.standings-table tr:nth-child(2) {
    background-color: rgba(192, 192, 192, 0.06) !important;
    border-left: 4px solid #c0c0c0;
}

.standings-table tr:nth-child(3) {
    background-color: rgba(205, 127, 50, 0.06) !important;
    border-left: 4px solid #cd7f32;
}

.standings-table tr:hover {
    background: rgba(45, 45, 45, 0.5);
    transform: scale(1.005);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    position: relative;
}

/* 确保前三名在hover时保持特殊背景色 */
.standings-table tr:nth-child(1):hover {
    background-color: rgba(255, 105, 180, 0.12) !important;
}

.standings-table tr:nth-child(2):hover {
    background-color: rgba(192, 192, 192, 0.1) !important;
}

.standings-table tr:nth-child(3):hover {
    background-color: rgba(205, 127, 50, 0.1) !important;
}

.standings-table tr:hover td {
    color: #ff69b4;
}

/* 排名样式 */
.standings-table td:first-child {
    font-weight: 600; /* 与表头保持一致的粗细 */
    font-size: 14px; /* 与其他列保持一致 */
    color: #ff69b4;
    text-align: center;
    width: 60px;
    line-height: 1.4; /* 与其他行保持一致 */
}

.standings-table tr:nth-child(1) td:first-child {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.standings-table tr:nth-child(2) td:first-child {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.standings-table tr:nth-child(3) td:first-child {
    background: linear-gradient(135deg, #cd7f32, #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

/* 战队信息样式 */
.team-info-cell {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.team-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff85c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.team-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.standings-table tr:hover .team-logo {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.standings-table tr:hover .team-logo::before {
    transform: translateX(100%);
}

.team-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 17px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.standings-table tr:hover .team-name {
    color: #ff69b4;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

/* 数据列样式 */
.standings-table td:nth-child(3),
.standings-table td:nth-child(4),
.standings-table td:nth-child(5),
.standings-table td:nth-child(6),
.standings-table td:nth-child(7),
.standings-table td:nth-child(8) {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    position: relative;
}

/* 场次列样式 */
.standings-table td:nth-child(3) {
    color: #a0a0a0;
    font-weight: 500;
}

/* 胜场列样式 */
.standings-table td:nth-child(4) {
    color: #4ade80;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
}

/* 负场列样式 */
.standings-table td:nth-child(5) {
    color: #f87171;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
}

/* 胜率特殊样式 */
.standings-table td:nth-child(6) {
    color: #ff69b4;
    font-weight: 800;
    font-size: 16px;
    text-shadow: 0 0 12px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 133, 192, 0.1));
    border-radius: 8px;
    margin: 2px 4px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

/* 积分特殊样式 */
.standings-table td:nth-child(7) {
    color: #00ffff;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
    border-radius: 10px;
    margin: 2px 4px;
    padding: 6px 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.standings-table td:nth-child(7)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.standings-table tr:hover td:nth-child(7)::before {
    left: 100%;
}

/* 净胜分样式 */
.standings-table td:nth-child(8) {
    font-weight: 700;
    font-size: 15px;
    position: relative;
}

.standings-table td:nth-child(8)[data-positive] {
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.standings-table td:nth-child(8)[data-negative] {
    color: #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.standings-table td:nth-child(8)[data-zero] {
    color: #9ca3af;
    text-shadow: 0 0 8px rgba(156, 163, 175, 0.3);
}

/* 响应式表格 */
@media (max-width: 1024px) {
    .standings-table {
        font-size: 14px;
    }
    
    .standings-table th,
    .standings-table td {
        padding: 12px 15px;
    }
    
    .team-info-cell {
        gap: 10px;
    }
    
    .team-logo {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .team-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .standings-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .standings-tabs {
        justify-content: center;
    }
    
    .season-selector {
        justify-content: center;
    }
    
    .standings-table {
        font-size: 12px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .standings-table th,
    .standings-table td {
        padding: 10px;
        min-width: 60px;
    }
    
    .team-info-cell {
        gap: 8px;
        min-width: 120px;
    }
    
    .team-logo {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .team-name {
        font-size: 12px;
    }
    
    .division-title {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .division-title::before {
        width: 8px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .standings-table th,
    .standings-table td {
        padding: 8px;
        font-size: 11px;
        min-width: 50px;
    }
    
    .team-info-cell {
        min-width: 100px;
    }
    
    .team-logo {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .team-name {
        font-size: 11px;
    }
    
    .standings-tab {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .season-selector select {
        padding: 8px;
        font-size: 14px;
    }
    
    .division-title {
        font-size: 18px;
        padding-left: 12px;
    }
    
    .division-title::before {
        width: 6px;
        height: 20px;
    }
}

/* 加载动画 */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.standings-loading {
    text-align: center;
    padding: 40px;
    color: #888888;
    animation: pulse 2s infinite;
}

/* 空状态样式 */
.standings-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888888;
}

.standings-empty h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #cccccc;
}

.standings-empty p {
    font-size: 16px;
    line-height: 1.6;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 焦点样式 */
*:focus {
    outline: 2px solid #ff69b4;
    outline-offset: 2px;
}

/* 冠军展示区样式 */
.champion-showcase {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.champion-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: championGlow 2s ease-in-out infinite;
}

.champion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 3s linear infinite;
}

@keyframes championGlow {
    0%, 100% { box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4); }
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.champion-rank {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.champion-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.champion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.champion-info {
    position: relative;
    z-index: 3;
}

.champion-info h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.champion-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.champion-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* 亚军季军展示区样式 */
.podium-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.podium-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 15px 30px rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.podium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.3);
}

.podium-card.silver {
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: 0 15px 30px rgba(192, 192, 192, 0.2);
}

.podium-card.silver:hover {
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.3);
}

.podium-card.bronze {
    border-color: rgba(205, 127, 50, 0.4);
    box-shadow: 0 15px 30px rgba(205, 127, 50, 0.2);
}

.podium-card.bronze:hover {
    box-shadow: 0 20px 40px rgba(205, 127, 50, 0.3);
}

.podium-rank {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: podiumBounce 2s ease-in-out infinite;
}

@keyframes podiumBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.podium-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.podium-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.podium-card.bronze .podium-avatar {
    background: linear-gradient(135deg, #cd7f32, #d4a574);
    box-shadow: 0 8px 20px rgba(205, 127, 50, 0.3);
}

.podium-info {
    position: relative;
    z-index: 3;
}

.podium-info h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c0c0c0;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.podium-card.bronze .podium-info h4 {
    color: #cd7f32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}

.podium-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 3;
}

.podium-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.podium-stat .stat-number {
    font-size: 1.3rem;
    font-weight: 900;
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.4);
}

.podium-card.bronze .podium-stat .stat-number {
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.4);
}

.podium-stat .stat-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

/* 排行榜容器样式 */
.rankings-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.ranking-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff69b4;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    margin: 0;
}

.section-icon {
    font-size: 2.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 排行榜卡片样式 */
.ranking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.ranking-cards.compact {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ranking-card {
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(45, 45, 45, 0.8));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ranking-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.3);
}

.ranking-card.silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    border-color: rgba(192, 192, 192, 0.3);
}

.ranking-card.bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
    border-color: rgba(205, 127, 50, 0.3);
}

.ranking-card.win-rate {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
    border-color: rgba(0, 255, 255, 0.3);
}

.card-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff85c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.card-medal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    animation: medalBounce 2s ease-in-out infinite;
}

@keyframes medalBounce {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.card-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff85c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ranking-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

.team-details {
    flex: 1;
}

.team-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

/* 胜率显示样式 */
.win-rate-display {
    margin-top: 15px;
}

.win-rate-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.win-rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #00cccc);
    border-radius: 6px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.win-rate-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .ranking-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .ranking-cards.compact {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .ranking-card {
        padding: 20px;
    }

    .champion-card {
        padding: 30px;
        max-width: 450px;
    }

    .champion-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .standings-hero {
        padding: 60px 20px;
    }

    .standings-hero h1 {
        font-size: 2.8rem;
    }

    .champion-showcase {
        margin-bottom: 40px;
    }

    .champion-card {
        padding: 25px;
        max-width: 100%;
    }

    .champion-stats {
        flex-direction: column;
        gap: 15px;
    }

    .ranking-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ranking-cards.compact {
        grid-template-columns: 1fr;
    }

    .ranking-section {
        padding: 30px 20px;
    }

    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .team-details h4 {
        font-size: 1.3rem;
    }

    .team-stats {
        align-items: center;
    }

    .stat {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .standings-hero {
        padding: 40px 15px;
    }

    .standings-hero h1 {
        font-size: 2.2rem;
    }

    .standings-hero p {
        font-size: 1rem;
    }

    .champion-card {
        padding: 20px;
    }

    .champion-rank {
        font-size: 3rem;
    }

    .champion-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .champion-info h3 {
        font-size: 1.8rem;
    }

    .ranking-card {
        padding: 20px;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-icon {
        font-size: 2rem;
    }
}

/* 加载动画 */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.standings-loading {
    text-align: center;
    padding: 40px;
    color: #888888;
    animation: pulse 2s infinite;
}

/* 空状态样式 */
.standings-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888888;
}

.standings-empty h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #cccccc;
}

.standings-empty p {
    font-size: 16px;
    line-height: 1.6;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 焦点样式 */
*:focus {
    outline: 2px solid #ff69b4;
    outline-offset: 2px;
}

/* 全新简洁表格样式 */
.standings-table-container {
    width: 100%;
    overflow-x: auto;
    background: transparent;
    border-radius: 8px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    margin-top: 20px;
    backdrop-filter: blur(5px);
}

.standings-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: transparent;
    margin: 0;
    font-size: 14px;
    table-layout: fixed;
}

.standings-table th,
.standings-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    vertical-align: middle;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    height: 44px;
}

.standings-table th {
    background: rgba(45, 45, 45, 0.7);
    font-weight: 600;
    color: #ff69b4;
    border-bottom: 2px solid #ff69b4;
    position: relative;
}

.standings-table th::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 105, 180, 0), #ff69b4, rgba(255, 105, 180, 0));
}

.standings-table tbody tr:hover {
    background: rgba(51, 51, 51, 0.5);
}

.standings-table tbody tr:hover td {
    color: #ff69b4;
}

/* 列宽设置 */
.standings-table th:nth-child(1),
.standings-table td:nth-child(1) {
    width: 60px;
}

.standings-table th:nth-child(2),
.standings-table td:nth-child(2) {
    width: 180px;
}

.standings-table th:nth-child(3),
.standings-table td:nth-child(3) {
    width: 70px;
}

.standings-table th:nth-child(4),
.standings-table td:nth-child(4) {
    width: 70px;
}

.standings-table th:nth-child(5),
.standings-table td:nth-child(5) {
    width: 70px;
}

.standings-table th:nth-child(6),
.standings-table td:nth-child(6) {
    width: 80px;
}

.standings-table th:nth-child(7),
.standings-table td:nth-child(7) {
    width: 80px;
}

.standings-table th:nth-child(8),
.standings-table td:nth-child(8) {
    width: 90px;
}

/* 战队信息列 */
.standings-table td:nth-child(2) {
    text-align: left;
    padding-left: 12px;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.team-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff85c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.team-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    flex: 1;
}

/* 数据列颜色 */
.standings-table td:nth-child(3) {
    color: #a0a0a0;
}

.standings-table .wins {
    color: #4ade80;
    font-weight: 600;
}

.standings-table .losses {
    color: #f87171;
    font-weight: 600;
}

.standings-table .win-rate {
    color: #ff69b4;
    font-weight: 600;
}

.standings-table .points {
    color: #00ffff;
    font-weight: 700;
    font-size: 15px;
}

.standings-table .net-wins.positive {
    color: #10b981;
    font-weight: 600;
}

.standings-table .net-wins.negative {
    color: #ef4444;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .standings-table {
        min-width: 750px;
        font-size: 13px;
    }

    .standings-table th,
    .standings-table td {
        padding: 10px 6px;
        height: 40px;
    }

    .team-logo {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .team-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .standings-table {
        min-width: 650px;
        font-size: 12px;
    }

    .standings-table th,
    .standings-table td {
        padding: 8px 4px;
        height: 36px;
    }

    .team-cell {
        gap: 8px;
    }

    .team-logo {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .team-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .standings-table {
        min-width: 550px;
        font-size: 11px;
    }

    .standings-table th,
    .standings-table td {
        padding: 6px 3px;
        height: 32px;
    }

    .team-cell {
        gap: 6px;
    }

    .team-logo {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .team-name {
        font-size: 11px;
    }
}

/* 自定义滚动条 */
.standings-table::-webkit-scrollbar,
.standings-table-container::-webkit-scrollbar {
    height: 8px;
}

.standings-table::-webkit-scrollbar-track,
.standings-table-container::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 4px;
}

.standings-table::-webkit-scrollbar-thumb,
.standings-table-container::-webkit-scrollbar-thumb {
    background: #ff69b4;
    border-radius: 4px;
}

.standings-table::-webkit-scrollbar-thumb:hover,
.standings-table-container::-webkit-scrollbar-thumb:hover {
    background: #ff85c0;
}
