.watch-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.watch-main { max-width: 1120px; margin: 0 auto; width: 100%; }
#video-player {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: black;
	border-radius: 20px;
	box-shadow: var(--shadow);
}
.watch-main h1 { font-size: clamp(24px, 4vw, 34px); margin: 20px 0 12px; letter-spacing: -0.5px; }
.watch-meta { display: flex; gap: 14px; color: var(--muted); align-items: center; flex-wrap: wrap; }
.watch-meta a { color: var(--text); font-weight: 800; }
.reactions { display: flex; gap: 10px; margin: 18px 0; flex-wrap: wrap; }
.reactions button { background: var(--panel2); color: var(--text); }
.description {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 18px;
	white-space: pre-wrap;
	line-height: 1.55;
}
.comments { margin-top: 28px; }
.comments h2 { margin-bottom: 12px; }
#comment-form { display: grid; gap: 10px; margin-bottom: 20px; }
.comment { border-bottom: 1px solid var(--border); padding: 16px 0; }
.comment-head { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; margin-bottom: 8px; }
.comment strong { display: block; }
.comment p { white-space: pre-wrap; margin: 0 0 10px; line-height: 1.5; }
.comment small { color: var(--muted); }
