
.oak-live-detail-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}
.oak-live-detail-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.oak-live-detail-left {
    flex: 7;
}
.oak-live-detail-right {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.oak-live-player-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
}
.oak-live-living-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #ff0003 0%, #ff7875 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 0px 12px;
    border-radius: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    animation: pulse 1.5s infinite;
}
.oak-live-living-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.oak-live-cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.oak-live-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}
.oak-live-player::-webkit-media-controls-download-button,
.oak-live-player::-webkit-media-controls-time-remaining-display,
.oak-live-player::-webkit-media-controls-current-time-display,
.oak-live-player::-webkit-media-controls-timeline {
    display: none !important;
}
video::-internal-media-controls-download-button {
    display:none;
}
.oak-live-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.2s ease;
}
.oak-live-play-btn:hover {
    background: rgba(0,0,0,0.8);
}
.oak-live-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}
.oak-live-detail-info {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.oak-live-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}
.oak-live-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
}
.oak-live-detail-meta-item {
    display: flex;
    align-items: center;
}
.oak-live-detail-meta-label {
    color: #999;
    margin-right: 5px;
}
.oak-live-detail-desc-wrap {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.oak-live-desc-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}
.oak-live-detail-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.oak-other-lives-wrap {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.oak-other-lives-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}
.oak-other-lives-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
}
.oak-other-live-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: 0.2s;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.oak-other-live-item:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}
.oak-other-live-cover {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}
.oak-other-live-info {
    flex: 1;
}
.oak-other-live-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.oak-other-live-desc {
    font-size: 13px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.oak-other-live-active {
    background: #e6f0ff;
}
.oak-live-error {
    text-align: center;
    padding: 100px 20px;
    color: #ff3333;
    font-size: 18px;
}
@media (max-width: 768px) {
    .oak-live-detail-wrap {
        flex-direction: column;
    }
    .oak-live-player-wrap {
        height: 300px;
    }
    .oak-live-play-btn {
        width: 60px;
        height: 60px;
    }
}