/* 意甲主题视频容器样式 */
.seriea-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;
}

/* 意甲主题背景样式 */
.seriea-bg-pattern {
    position: relative;
}

.seriea-bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color, #0b2a50); /* 意甲深蓝色 */
    background-image: 
        linear-gradient(90deg, 
            var(--stripe-color-1, #0b2a50) 0%, 
            var(--stripe-color-1, #0b2a50) 33.33%, 
            var(--stripe-color-2, #008fd7) 33.33%, 
            var(--stripe-color-2, #008fd7) 66.67%,
            var(--stripe-color-3, #008fd7) 66.67%, 
            var(--stripe-color-3, #008fd7) 100%),
        radial-gradient(circle at 70% 30%, var(--highlight-color, rgba(255, 255, 255, 0.1)) 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.seriea-ball::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid white;
    background-image: 
        linear-gradient(to right, transparent 39%, white 40%, white 60%, transparent 61%),
        linear-gradient(to bottom, transparent 39%, white 40%, white 60%, transparent 61%),
        radial-gradient(circle at 15% 15%, white 3%, transparent 4%),
        radial-gradient(circle at 85% 15%, white 3%, transparent 4%),
        radial-gradient(circle at 85% 85%, white 3%, transparent 4%),
        radial-gradient(circle at 15% 85%, white 3%, transparent 4%),
        radial-gradient(circle at 50% 50%, white 3%, transparent 4%);
    top: 15%;
    left: 60%;
    transform: rotate(20deg);
}

/* 意甲LOGO */
.sport-icons-bg.seriea-logo::after {
    content: "SERIE A";
    position: absolute;
    font-size: 50px;
    font-weight: bold;
    color: white;
    font-family: 'Arial Black', sans-serif;
    top: 20%;
    left: 10%;
    opacity: 0.8;
}

/* 意大利国旗装饰 */
.sport-icons-bg.italy-flag {
    position: absolute;
    width: 120px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    z-index: 3;
    background-image: 
        linear-gradient(to right, 
            white 0%, white 33.33%, 
            white 33.33%, white 66.67%,
            #CE2B37 66.67%, #CE2B37 100%);
}

.sport-icons-bg.italy-flag::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 80px;
    background-color: #009246;
    top: 0;
    left: 0;
}

/* 足球场地标记 */
.sport-icons-bg.seriea-field {
    position: absolute;
    width: 140px;
    height: 90px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 0;
    bottom: 15%;
    right: 10%;
    box-sizing: border-box;
}

/* 足球场中线 */
.sport-icons-bg.seriea-field::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    top: 50%;
    left: 0;
}

/* 足球场中圈 */
.sport-icons-bg.seriea-field::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 装饰元素 - 星星 */
.sport-icons-bg.seriea-stars {
    position: absolute;
    width: 150px;
    height: 30px;
    top: 45%;
    right: 10%;
    z-index: 3;
}

.sport-icons-bg.seriea-stars::before {
    content: "★★★";
    position: absolute;
    font-size: 30px;
    color: white;
    top: 0;
    left: 0;
    letter-spacing: 10px;
}

.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(0, 143, 215, 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 #ffffff;
    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: #008fd7;
    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(0, 143, 215, 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.seriea-ball::before {
        width: 60px;
        height: 60px;
    }
    
    .sport-icons-bg.seriea-logo::after {
        font-size: 40px;
    }
    
    .sport-icons-bg.italy-flag {
        width: 90px;
        height: 60px;
    }
    
    .sport-icons-bg.italy-flag::before {
        width: 30px;
        height: 60px;
    }
    
    .sport-icons-bg.seriea-field {
        width: 100px;
        height: 60px;
    }
} 