/* 勇士主题视频容器样式 */
.warriors-video-container {
    width: 100%;
    margin-bottom: 20px;
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9比例 */
    overflow: hidden;
}

/* 勇士主题背景样式 */
.warriors-bg-pattern {
    position: relative;
}

.warriors-bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color, #1D428A); /* 勇士蓝色 */
    background-image: 
        linear-gradient(45deg, 
            var(--main-color, #1D428A) 0%, 
            var(--main-color, #1D428A) 25%, 
            var(--accent-color, #FFC72C) 100%),
        radial-gradient(circle at 80% 30%, var(--highlight-color, rgba(255, 199, 44, 0.7)) 0%, transparent 50%);
    opacity: 0.9;
    z-index: 1;
}

/* 体育图标背景 - 勇士主题 */
.sport-icons-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.25;
    pointer-events: none;
    overflow: hidden;
}

/* 勇士篮球图标 */
.sport-icons-bg.warriors-ball::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid white;
    background-image: 
        radial-gradient(circle at center, transparent 70%, white 71%, white 74%, transparent 75%),
        linear-gradient(to right, transparent 48%, white 49%, white 51%, transparent 52%),
        linear-gradient(to bottom, transparent 48%, white 49%, white 51%, transparent 52%);
    transform: rotate(45deg);
    top: 15%;
    left: 70%;
}

/* 勇士桥梁Logo */
.sport-icons-bg.warriors-bridge::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 80px;
    border-top: 4px solid white;
    border-left: 4px solid white;
    border-right: 4px solid white;
    border-radius: 80px 80px 0 0;
    top: 60%;
    left: 15%;
    box-sizing: border-box;
}

/* 桥梁柱子 */
.sport-icons-bg.warriors-bridge-pillars {
    position: absolute;
    width: 130px;
    height: 40px;
    top: 75%;
    left: 25%;
    z-index: 3;
    background-image: 
        linear-gradient(to bottom, white 0%, white 100%),
        linear-gradient(to bottom, white 0%, white 100%),
        linear-gradient(to bottom, white 0%, white 100%),
        linear-gradient(to bottom, white 0%, white 100%),
        linear-gradient(to bottom, white 0%, white 100%);
    background-position: 
        0% 0%,
        25% 0%,
        50% 0%,
        75% 0%,
        100% 0%;
    background-size: 
        3px 40px,
        3px 40px,
        3px 40px,
        3px 40px,
        3px 40px;
    background-repeat: no-repeat;
}

/* 圆圈装饰 */
.sport-icons-bg.warriors-circles {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 100px;
    height: 100px;
    z-index: 3;
}

.sport-icons-bg.warriors-circles::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.sport-icons-bg.warriors-circles::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-radius: 50%;
    bottom: 0;
    right: 0;
}

.video-thumbnail .video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    z-index: 5;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    color: white;
    z-index: 10;
    transition: background 0.3s ease;
}

/* 播放按钮 - 勇士主题 */
.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 199, 44, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #1D428A;
    margin-left: 5px;
}

.video-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 0 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-info {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
}

.video-source {
    font-size: 14px;
    margin-bottom: 5px;
}

.video-source a {
    color: #1D428A;
    font-weight: bold;
    text-decoration: none;
}

.video-source a:hover {
    text-decoration: underline;
}

.video-tip {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* 鼠标悬停效果 - 勇士主题 */
.video-link:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 199, 44, 1);
}

.video-link:hover .thumbnail-overlay {
    background: rgba(0,0,0,0.4);
}

/* 移动端适配 */
@media (max-width: 780px) {
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-triangle {
        border-width: 10px 0 10px 18px;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .sport-icons-bg.warriors-ball::before {
        width: 60px;
        height: 60px;
    }
    
    .sport-icons-bg.warriors-bridge::after {
        width: 100px;
        height: 50px;
    }
    
    .sport-icons-bg.warriors-bridge-pillars {
        width: 90px;
        height: 30px;
        left: 20%;
    }
} 