/* 结果详情页面 */
.detail-section {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px; /* 确保底部有足够的空间 */
}

.video-container {
    width: 100%;
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 30px;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.detail-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: var(--gray);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--light-gray);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.action-btn:disabled:hover {
    background: var(--gray);
}

.detail-script {
    background: var(--gray);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--text);
}
