.streamingPage .content {
    display: flex;
    flex-direction: column;
    width: 1080px;
    margin: 0 auto;
    padding-top: 120px;
}

.streamingPage .content section {
    margin-bottom: 50px;
}

.streamingPage .content section .liveStreamingWrap {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 0 5px 0 #19191926;
}

.streamingPage .content section .liveStreamingWrap .stream {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.streamingPage .content section .liveStreamingWrap .infoWrap .tt {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: 0;
    margin-bottom: 0;
    font-weight: 600;
}

.streamingPage .content section .liveStreamingWrap .infoWrap .bubbleWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.streamingPage .content section .liveStreamingWrap .infoWrap .bubbleWrap h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #191919;
}

.streamingPage .content section .liveStreamingWrap .infoWrap .date {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #cc5600;
    margin-bottom: 14px;
}

.hint {
    text-align: center;
    font-size: 12px;
    margin: 10px 0;
}

.framer-kqpcn .framer-9x4d5p,
.framer-kqpcn .framer-117ipzi {
    display: none;
}

.btn {
    padding: 0 10px;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: #ff5b22;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.downloadBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 20px;
}

.video-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 60px 20px;
    min-height: 400px;
}

.video-empty-state i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.video-empty-state h3 {
    color: #666;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.video-empty-state p {
    color: #888;
    font-family: 'Poppins', sans-serif;
}

.liveBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffebeb;
    color: #c10000;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.liveBadge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d2d;
    box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.2);
}

.section-video {
    margin-bottom: 16px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #1a1a1a;
}

.section-video video {
    background-color: #1a1a1a;
    border-radius: 15px;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-video .video-loading {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.section-video .video-loading.active {
    opacity: 1;
    pointer-events: auto;
}

.section-video .video-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #df0000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.section-video .video-loading .loading-text {
    margin-top: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    animation: pulse-text 1.5s ease-in-out infinite;
}

.section-video .video-error {
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    position: absolute;
    inset: 0;
    z-index: 21;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.section-video .video-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-video.is-static-source .video-controls {
    align-items: center;
    gap: 12px;
}

.section-video .video-controls-left,
.section-video .video-controls-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-video.is-static-source .video-controls-left,
.section-video.is-static-source .video-controls-right {
    flex-shrink: 0;
}

.section-video .video-controls-middle {
    display: none;
}

.section-video.is-static-source .video-controls-middle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.section-video .time-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    min-width: 38px;
    text-align: center;
}

.section-video .seek-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-width: 0;
    height: 4px;
    border-radius: 999px;
    background: #ffffff;
    cursor: pointer;
}

.section-video .seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #df0000;
}

.section-video .seek-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #df0000;
}

.section-video .control-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(25, 25, 25, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.section-video .control-btn:hover {
    background: rgba(25, 25, 25, 0.9);
}

.section-video .control-btn i {
    font-size: 16px;
}

.section-video .play-pause-btn .icon-play,
.section-video .fullscreen-btn .icon-collapse,
.section-video .volume-btn .icon-volume-mute,
.section-video .volume-btn .icon-volume-low {
    display: none;
}

.section-video .volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 110px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.section-video .volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #fff;
}

.section-video .volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    background: #fff;
}

.section-video:hover .video-controls,
.section-video:focus-within .video-controls,
.section-video.is-fullscreen .video-controls {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.section-video:not(.is-playing) .play-pause-btn .icon-play {
    display: block;
}

.section-video:not(.is-playing) .play-pause-btn .icon-pause {
    display: none;
}

.section-video.is-fullscreen .fullscreen-btn .icon-expand {
    display: none;
}

.section-video.is-fullscreen .fullscreen-btn .icon-collapse {
    display: block;
}

.section-video.is-muted .volume-btn .icon-volume-high,
.section-video.is-muted .volume-btn .icon-volume-low {
    display: none;
}

.section-video.is-muted .volume-btn .icon-volume-mute {
    display: block;
}

.section-video:not(.is-muted).is-volume-low .volume-btn .icon-volume-high {
    display: none;
}

.section-video:not(.is-muted).is-volume-low .volume-btn .icon-volume-low {
    display: block;
}

.section-video:fullscreen,
.section-video:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
    margin-bottom: 0;
    background-color: #000;
}

.section-video:fullscreen video,
.section-video:fullscreen .video-loading,
.section-video:fullscreen .video-error,
.section-video:-webkit-full-screen video,
.section-video:-webkit-full-screen .video-loading,
.section-video:-webkit-full-screen .video-error {
    border-radius: 0;
}

@media (max-width: 1120px) {
    .streamingPage .content {
        width: 100%;
        padding: 120px 20px 40px;
    }
}

@media (max-width: 1024px) {
    .streamingPage .content {
        width: 100%;
        padding: 100px 20px 40px;
    }

    .streamingPage .content section .liveStreamingWrap .infoWrap .tt {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .streamingPage .content {
        padding-top: 80px;
    }

    .section-video {
        border-radius: 6px;
    }

    .section-video .video-error,
    .section-video video {
        border-radius: 6px;
    }

    .section-video .video-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .section-video.is-static-source .video-controls {
        gap: 6px;
    }

    .section-video .video-controls-left,
    .section-video .video-controls-right {
        gap: 8px;
    }

    .section-video.is-static-source .video-controls-left,
    .section-video.is-static-source .video-controls-right {
        gap: 6px;
        display: none !important;
    }

    .section-video.is-static-source .video-controls-middle {
        gap: 6px;
    }

    .section-video .control-btn {
        width: 38px;
        height: 38px;
    }

    .section-video .control-btn i {
        font-size: 14px;
    }

    .section-video .volume-slider {
        width: 86px;
    }

    .section-video .time-label {
        min-width: 32px;
        font-size: 11px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
