.watch {
  padding-top: var(--space-page);
  padding-bottom: 3rem;
}

.watch__head {
  margin-bottom: 1rem;
  text-align: center;
}

.watch__title {
  margin: 0 auto;
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.watch__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.watch__tab {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.watch__tab.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(204, 28, 57, 0.24);
}

.watch__tab--src {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--muted);
}

.watch__tab--src:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.watch__tab--src.is-active {
  background: rgba(204, 28, 57, 0.22);
  border-color: var(--accent-ring);
  color: var(--rose);
  box-shadow: none;
}

.watch__tab--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--muted);
}

.watch__tab--ghost:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.watch__rating {
  margin-left: auto;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line-strong);
  background: rgba(24, 24, 27, 0.7);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.watch__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.watch__cinema {
  min-height: 2.15rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.watch__cinema.is-on,
.watch__cinema:hover {
  color: #fff;
  border-color: var(--accent-ring);
  background: rgba(204, 28, 57, 0.16);
}

.watch__votes {
  display: flex;
  gap: 0.4rem;
}

.watch__vote {
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.watch__vote--up.is-on,
.watch__vote--up:hover {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
}

.watch__vote--down.is-on,
.watch__vote--down:hover {
  color: var(--rose-strong);
  border-color: rgba(204, 28, 57, 0.4);
  background: rgba(204, 28, 57, 0.12);
}

html.is-cinema .site-bg,
html.is-cinema .header,
html.is-cinema .footer {
  opacity: 0.18;
  transition: opacity 0.35s ease;
}

html.is-cinema .watch {
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .watch__rating {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
