.watch-shell {
    padding: 28px;
    border: 1px solid rgba(39, 217, 255, 0.25);
    border-radius: 24px;
    background: #05070d;
    box-shadow: 0 0 80px rgba(39, 217, 255, 0.08);
}

.watch-heading {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.watch-heading h1 {
    margin: 5px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.watch-heading > a {
    color: var(--cyan);
}

.live-pill {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 79, 163, 0.15);
    color: var(--pink);
    font-size: 0.75rem;
    font-weight: 900;
}

.video-frame {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #000;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.play-notice {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.watch-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    margin-top: 20px;
}

.watch-nav a,
.watch-nav span {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
}

.watch-nav a:last-child,
.watch-nav span:last-child {
    justify-self: stretch;
}

.play-info {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 34px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(139, 92, 246, 0.12), rgba(255, 255, 255, 0.02));
}

.play-info h2 {
    margin-top: 0;
}

.play-info p,
.play-info dt {
    color: var(--muted);
}

.play-info dl {
    margin: 0;
}

.play-info dl div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.play-info dd {
    margin: 0;
}

.quick-picks {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    gap: 14px;
    align-items: center;
    padding: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quick-picks h2 {
    margin: 0 18px 0 0;
}

.quick-picks a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 13px;
    border-radius: 12px;
    background: var(--surface);
}

.quick-picks strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-picks span {
    color: var(--muted);
    font-size: 0.8rem;
}

@media (max-width: 760px) {
    .watch-shell { padding: 14px; }
    .quick-picks { grid-template-columns: 1fr; }
    .quick-picks h2 { margin: 0; }
}
