/* 点击播放界面样式 */
/* 动态背景样式 */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-image: url('<?php echo $bgUrl; ?>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
}

/* 点击播放界面样式 */
.click-to-play {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    padding: 20px;
    box-sizing: border-box;
}

/* 文字容器样式，添加半透明背景 */
.text-container {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.play-title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.play-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.play-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.play-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.play-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.play-btn:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .play-title {
        font-size: 24px;
    }
    
    .play-description {
        font-size: 14px;
    }
    
    .play-btn {
        font-size: 16px;
        padding: 12px 24px;
        width: 200px;
    }
    
    .play-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .play-title {
        font-size: 20px;
    }
    
    .play-description {
        font-size: 13px;
        padding: 0 20px;
    }
    
    .play-btn {
        font-size: 15px;
        padding: 10px 20px;
        width: 180px;
    }
}