
.player-section {
    margin-bottom: 30px;
}
.player-title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}
.player-title h1 {
    font-size: 27px;
    margin: 7px 0 0;
}
.source-label {
    font-size: 12px;
    border: 1px solid #796147;
    color: #d9b38b;
    padding: 6px 12px;
    border-radius: 5px;
    flex-shrink: 0;
}
.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 25px;
}
.video-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}
.video-shell video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.video-notice {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: #060a12df;
}
.video-notice > .icon {
    width: 50px;
    height: 50px;
    color: #b19074;
    margin-bottom: 12px;
}
.video-notice h2 {
    font-size: 20px;
    margin-bottom: 8px;
}
.video-notice p {
    font-size: 13px;
    color: #a3acbb;
}
.play-hint {
    padding: 13px 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: #aeb6c5;
    font-size: 13px;
    border-radius: 7px;
    margin: 13px 0;
}
.player-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.player-controls .button {
    flex: 1;
}
.watch-episodes {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
    max-height: 620px;
    overflow-y: auto;
}
.watch-episodes h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.watch-episodes h2 small {
    font-size: 12px;
    color: #929cac;
    font-weight: 400;
}
.watch-episodes > p {
    font-size: 12px;
    color: var(--accent);
}
.watch-episodes .episodes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}
.watch-episodes .episodes a {
    font-size: 12px;
    padding: 6px;
}
.license-note {
    font-size: 13px;
    color: var(--muted);
}
@media (max-width: 1000px) {
    .watch-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .watch-episodes {
        max-height: 300px;
    }
    .watch-episodes .episodes {
        grid-template-columns: repeat(auto-fill,minmax(70px,1fr));
    }
}
@media (max-width: 760px) {
    .player-title {
        display: block;
    }
    .player-title h1 {
        font-size: 23px;
        margin-bottom: 15px;
    }
    .video-notice {
        padding: 12px;
    }
    .video-notice > .icon {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
    .video-notice h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .video-notice p {
        margin-bottom: 8px;
        font-size: 12px;
    }
    .video-notice .button {
        font-size: 12px;
        min-height: 32px;
        padding: 5px 12px;
    }
    .player-controls .button {
        font-size: 12px;
        padding: 9px;
    }
}
