:root {
  --md-bg: #000000;
  --md-surface: #0c0c0d;
  --md-elevated: #141416;
  --md-border: rgba(255, 255, 255, 0.08);
  --md-text: #f8fafc;
  --md-muted: #94a3b8;
  --md-accent: #e11d48;
  --md-accent-hover: #be123c;
  --md-on-accent: #ffffff;
  --md-radius: 12px;
  --md-gap: clamp(16px, 3vw, 32px);
  --md-font: "Vazirmatn", Tahoma, sans-serif;
}

.md-page {
  background: var(--md-bg);
  color: var(--md-text);
  font-family: var(--md-font);
  min-height: 60vh;
  padding-bottom: 64px;
}

.md-page a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.md-container {
  width: min(1280px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
}

.md-hero {
  position: relative;
  padding: clamp(36px, 6vw, 72px) 0 clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(225, 29, 72, 0.22), transparent 55%),
    linear-gradient(180deg, #0a0a0b 0%, var(--md-bg) 100%);
  border-bottom: 1px solid var(--md-border);
  overflow: hidden;
}

.md-hero__brand {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}

.md-hero__brand span {
  color: var(--md-accent);
}

.md-hero__lead {
  max-width: 42rem;
  margin: 0 0 20px;
  color: var(--md-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.md-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.md-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.md-btn:focus-visible {
  outline: 2px solid var(--md-accent);
  outline-offset: 2px;
}

.md-btn--primary {
  background: var(--md-accent);
  color: var(--md-on-accent);
}

.md-btn--primary:hover {
  background: var(--md-accent-hover);
}

.md-btn--ghost {
  background: transparent;
  border-color: var(--md-border);
  color: var(--md-text);
}

.md-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.md-search {
  position: relative;
  flex: 1 1 240px;
  max-width: 420px;
}

.md-search input {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--md-border);
  background: var(--md-elevated);
  color: var(--md-text);
  padding: 0 44px 0 16px;
  font-family: inherit;
}

.md-search button {
  position: absolute;
  inset-inline-end: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--md-muted);
}

.md-suggest {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 6px);
  background: var(--md-elevated);
  border: 1px solid var(--md-border);
  border-radius: var(--md-radius);
  z-index: 20;
  overflow: hidden;
  display: none;
}

.md-suggest.is-open {
  display: block;
}

.md-suggest a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  min-height: 44px;
}

.md-suggest a:hover,
.md-suggest a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.md-suggest img {
  width: 36px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
}

.md-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.md-chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--md-border);
  background: var(--md-surface);
  color: var(--md-muted);
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.md-chip:hover,
.md-chip.is-active {
  color: var(--md-text);
  border-color: var(--md-accent);
  background: rgba(225, 29, 72, 0.12);
}

.md-section {
  padding: var(--md-gap) 0 0;
}

.md-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.md-section__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.md-section__meta {
  color: var(--md-muted);
  font-size: 0.9rem;
}

.md-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 170px);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.md-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 16px;
}

.md-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: mdCardIn 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.md-card:nth-child(1) { animation-delay: 40ms; }
.md-card:nth-child(2) { animation-delay: 80ms; }
.md-card:nth-child(3) { animation-delay: 120ms; }
.md-card:nth-child(4) { animation-delay: 160ms; }
.md-card:nth-child(5) { animation-delay: 200ms; }
.md-card:nth-child(6) { animation-delay: 240ms; }
.md-card:nth-child(n+7) { animation-delay: 280ms; }

@keyframes mdCardIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .md-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .md-btn,
  .md-chip,
  .md-card__poster img {
    transition: none;
  }
}

.md-card__poster {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: var(--md-radius);
  overflow: hidden;
  background: var(--md-elevated);
}

.md-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.md-card:hover .md-card__poster img,
.md-card:focus-within .md-card__poster img {
  transform: scale(1.05);
}

.md-card__badge {
  position: absolute;
  inset-inline-start: 8px;
  top: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--md-text);
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
}

.md-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 200ms ease;
}

.md-card:hover .md-card__play,
.md-card:focus-within .md-card__play {
  opacity: 1;
}

.md-card__play i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--md-accent);
  color: #fff;
  font-size: 1.25rem;
}

.md-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.md-card__meta {
  margin: 0;
  color: var(--md-muted);
  font-size: 0.8rem;
}

.md-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--md-muted);
}

.md-faq {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.md-faq details {
  background: var(--md-surface);
  border: 1px solid var(--md-border);
  border-radius: var(--md-radius);
  padding: 14px 16px;
}

.md-faq summary {
  cursor: pointer;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.md-faq p {
  margin: 10px 0 0;
  color: var(--md-muted);
  line-height: 1.7;
}

.md-series-hero {
  position: relative;
  min-height: clamp(360px, 56vw, 520px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.md-series-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: brightness(0.45);
}

.md-series-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.88) 78%);
}

.md-series-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 56px) 0;
}

.md-series-hero__kicker {
  color: var(--md-accent);
  font-weight: 700;
  margin: 0 0 8px;
}

.md-series-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.md-series-hero__desc {
  max-width: 40rem;
  color: rgba(248, 250, 252, 0.82);
  line-height: 1.75;
  margin: 0 0 18px;
}

.md-ep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

.md-ep {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 44px;
  padding: 12px;
  border-radius: var(--md-radius);
  background: var(--md-surface);
  border: 1px solid var(--md-border);
  transition: border-color 180ms ease, background 180ms ease;
}

.md-ep:hover,
.md-ep.is-active {
  border-color: var(--md-accent);
  background: rgba(225, 29, 72, 0.1);
}

.md-ep__n {
  font-weight: 700;
  color: var(--md-accent);
}

.md-ep__title {
  font-size: 0.85rem;
  color: var(--md-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.md-play {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1000;
  color: #fff;
  overflow: hidden;
}

.md-play__top {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.md-play__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.md-play__series {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 280px);
  font-weight: 600;
}

.md-play__top-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.md-play__auto {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

.md-play__eps-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
}

.md-play__slider {
  width: 100%;
  height: 100%;
  height: 100dvh;
}

.md-play__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  height: 100%;
  padding: 0;
}

.md-play__video,
.md-play__slide .plyr,
.md-play__slide .plyr__video-wrapper {
  width: 100%;
  height: 100%;
  max-height: 100dvh;
}

.md-play__slide .plyr__video-wrapper video,
.md-play__video {
  object-fit: contain;
  background: #000;
}

.md-play__locked,
.md-play__gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  z-index: 4;
  padding: 24px;
  text-align: center;
}

.md-play__gate-card {
  display: grid;
  gap: 12px;
  max-width: 22rem;
}

.md-play__drawer {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 6;
  background: rgba(10, 10, 12, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px 20px;
  max-height: 42vh;
  overflow: auto;
}

.md-play__drawer[hidden] {
  display: none !important;
}

.md-play__drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.md-play__drawer-head button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.md-play__drawer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: 8px;
}

.md-play__ep-chip {
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
}

.md-play__ep-chip.is-active {
  background: var(--md-accent, #e11d48);
  border-color: transparent;
}

.md-play__poster,
.md-play__meta,
.md-play__nav {
  display: none;
}

.md-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  color: var(--md-muted);
  font-size: 0.85rem;
}

.md-breadcrumb a:hover {
  color: var(--md-text);
}

.md-sort {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.md-sort a {
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--md-border);
  color: var(--md-muted);
}

.md-sort a.is-active {
  color: var(--md-text);
  border-color: var(--md-accent);
}

/* ===== derama-style watch page ===== */
.md-watch-page {
  background: #000;
}

.md-watch {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(16px, 3vw, 28px) 0 48px;
  background:
    radial-gradient(ellipse 70% 50% at 70% 20%, rgba(225, 29, 72, 0.12), transparent 55%),
    repeating-linear-gradient(
      -32deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.015) 18px,
      rgba(255, 255, 255, 0.015) 19px
    ),
    linear-gradient(180deg, #0a0a0b 0%, #000 100%);
  animation: mdWatchFade 420ms ease both;
}

@keyframes mdWatchFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.md-watch__shell {
  width: min(1280px, 100%);
  margin-inline: auto;
  padding-inline: clamp(12px, 2.5vw, 24px);
}

.md-watch__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.9fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.md-watch__info {
  position: sticky;
  top: 88px;
  animation: mdWatchRail 480ms ease both;
}

@keyframes mdWatchRail {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.md-watch__crumbs {
  margin-bottom: 12px;
}

.md-watch__title {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
}

.md-watch__plot-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--md-text);
}

.md-watch__plot-body {
  margin: 0;
  color: var(--md-muted);
  line-height: 1.85;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.md-watch__plot-body.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.md-watch__more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #60a5fa;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.md-watch__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.md-watch__tags li {
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--md-border);
  color: var(--md-muted);
  font-size: 0.82rem;
}

.md-watch__eps-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 12px;
  font-weight: 700;
}

.md-watch__eps-head a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.md-watch__eps-head a:hover {
  color: var(--md-accent);
}

.md-watch__ranges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.md-watch__range {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--md-border);
  background: transparent;
  color: var(--md-muted);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.md-watch__range.is-active,
.md-watch__range:hover {
  color: var(--md-text);
  border-color: var(--md-accent);
  background: rgba(225, 29, 72, 0.12);
}

.md-watch__grid,
.md-show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: 10px;
  max-height: min(52vh, 420px);
  overflow: auto;
  padding-inline-end: 4px;
}

.md-show-grid {
  max-height: none;
  overflow: visible;
}

.md-ep-chip {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48px;
  min-width: 48px;
  border-radius: 12px;
  border: 1px solid var(--md-border);
  background: #1a1a1d;
  color: var(--md-text);
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.md-ep-chip:hover {
  border-color: rgba(225, 29, 72, 0.55);
  background: rgba(225, 29, 72, 0.1);
}

.md-ep-chip.is-active {
  border-color: var(--md-accent);
  background: rgba(225, 29, 72, 0.16);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.35);
  animation: mdChipPulse 900ms ease both;
}

@keyframes mdChipPulse {
  from { transform: scale(0.96); }
  to { transform: scale(1); }
}

.md-ep-chip__playing {
  color: var(--md-accent);
  font-size: 1.15rem;
  line-height: 1;
}

.md-ep-chip[hidden] {
  display: none !important;
}

.md-watch__stage-col {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.md-watch__stage-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  width: 100%;
  animation: mdWatchStage 500ms ease both;
}

@keyframes mdWatchStage {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

.md-watch__frame {
  position: relative;
  width: min(100%, calc(min(78vh, 720px) * 9 / 16));
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 720px);
  background: #050505;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.md-watch__frame-top {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 3;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.md-watch__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 90%;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  pointer-events: auto;
}

.md-watch__back span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.md-watch__video,
.md-watch__frame .plyr,
.md-watch__frame .plyr__video-wrapper {
  width: 100%;
  height: 100%;
}

.md-watch__frame .plyr__video-wrapper video,
.md-watch__video {
  object-fit: contain;
  background: #000;
}

.md-watch__frame .plyr--full-ui input[type='range'] {
  color: var(--md-accent);
}

.md-watch__gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  text-align: center;
  z-index: 2;
}

.md-watch__gate-card {
  display: grid;
  gap: 12px;
  max-width: 16rem;
}

.md-watch__nav {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.4rem;
  transition: background 160ms ease, transform 160ms ease;
}

.md-watch__nav:hover {
  background: rgba(225, 29, 72, 0.35);
  transform: scale(1.04);
}

.md-watch__nav.is-disabled,
.md-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.md-watch__mobile-bar {
  display: none;
  width: min(100%, 420px);
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.md-watch__mobile-meta {
  color: var(--md-muted);
  font-size: 0.9rem;
}

.md-watch__stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.md-watch__auto {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--md-muted);
  font-size: 0.88rem;
  cursor: pointer;
  user-select: none;
}

.md-watch__fullscreen-btn {
  /* secondary on desktop; emphasized on mobile via order */
}

.md-show-ranges {
  margin-bottom: 14px;
}

@media (max-width: 960px) {
  .md-watch__layout {
    grid-template-columns: 1fr;
  }

  .md-watch__info {
    position: static;
    order: 2;
  }

  .md-watch__stage-col {
    order: 1;
  }

  .md-watch__nav {
    display: none;
  }

  .md-watch__mobile-bar {
    display: flex;
  }

  .md-watch__frame {
    width: min(100%, 380px);
    max-height: min(70vh, 640px);
  }

  .md-watch__fullscreen-btn {
    border-color: var(--md-accent);
    color: #fff;
  }
}

@media (max-width: 640px) {
  .md-watch__grid {
    max-height: 42vh;
  }
}

/* Readable microdrama captions (separate VTT tracks — not burned into MP4) */
.md-watch__video::cue,
.md-watch .plyr__captions .plyr__caption {
  color: #fff;
  background: transparent;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.75),
    1px 1px 0 rgba(0, 0, 0, 0.65);
  font-family: "Vazirmatn", "IRANSansX", Tahoma, sans-serif;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  line-height: 1.45;
  font-weight: 600;
}

.md-watch .plyr__captions {
  bottom: 12%;
  padding: 0 8%;
}
