﻿/* 通用赛事播放器容器 */
.sports-player {
    position: relative;
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    color: #ffffff;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* 足球赛事专属背景 */
.sports-player.football {
    background-image: url('/images/zuqiulx.jpg');
}

/* 篮球赛事专属背景 */
.sports-player.basketball {
    background-image: url('/images/lanqiulx.jpg');
}

/* 顶部赛事信息行 */
.player-top-meta {
    position: absolute;
    top: 18px;
    left: 24px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.85);
}

/* 中央对阵比分面板 */
.player-match-scoreboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
}

/* 球队信息包裹盒 */
.scoreboard-team-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    text-align: center;
}

.team-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
}

.team-name-text {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
}

/* 中间比分与直播状态区 */
.scoreboard-center-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
}

.status-live-tag {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

.status-score-num {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.95);
}

/* 底部虚拟控制条 */
.player-bottom-control-bar {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 迷你播放图标 */
.mock-play-icon {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mock-play-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
    margin-left: 2px;
}

/* 模拟进度条 */
.mock-progress-line {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

/* 操作按钮整合区域 */
.live-signal-action-buttons {
    margin: 30px auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* 主操作按钮样式 */
.signal-btn-red {
    display: inline-block;
    padding: 12px 36px;
    background: #007aff;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 34, 34, 0.4);
    transition: all 0.2s ease-in-out;
}

.signal-btn-red:hover {
    background: #007aff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 34, 34, 0.5);
}

.signal-btn-red:active {
    transform: translateY(0);
}

/* 移动端适配 */
@media (max-width: 600px) {
    .player-top-meta {
        font-size: 13px;
        top: 10px;
        left: 12px;
    }
    .team-logo-img {
        width: 45px;
        height: 45px;
    }
    .team-name-text {
        font-size: 13px;
        margin-top: 8px;
    }
    .status-live-tag {
        font-size: 15px;
        margin-bottom: 4px;
        letter-spacing: 1px;
    }
    .status-score-num {
        font-size: 26px;
    }
    .player-bottom-control-bar {
        bottom: 10px;
        left: 12px;
        right: 12px;
    }
    .signal-btn-red {
        padding: 10px 20px;
        font-size: 14px;
    }
    .live-signal-action-buttons {
        gap: 12px;
    }
}