
    .player-container {
        display: block;
        margin-top: 2rem;
    }
    
    .video-player {
        background-color: #000;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        padding-top: 66.25%; 
        margin-bottom: 1rem;
    }
    
    .video-player #videoPlayer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
    }
    
    /* 视频标题 */
    .video-header {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .video-title-large {
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* 猜你喜欢区域 - 移动到播放器下方 */
    .recommendations-section {
        width: 100%;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
    }
    
    /* 猜你喜欢网格 - 一行4个 */
    .recommendations-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        width: 100%;
    }
    
    /* 猜你喜欢视频卡片 - 隐藏播放量 */
    .recommendations-grid .video-card .video-meta {
        display: none;
    }
    
    .recommendations-grid .video-card .video-title {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0;
        min-height: 0rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 视频播放失败时的封面显示 */
    .video-cover-fallback {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        background-color: #000;
        z-index: 1;
    }
    
    .video-cover-fallback img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }
    
    .cover-message {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        background: rgba(0, 0, 0, 0.7);
        padding: 1rem 2rem;
        border-radius: 8px;
    }
    
    /* 响应式设计 */
    @media (max-width: 1200px) {
        .recommendations-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    @media (max-width: 992px) {
        .recommendations-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .recommendations-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .recommendations-grid {
            grid-template-columns: 1fr;
        }
        
        .video-title-large {
            font-size: 1.3rem;
        }
    }
