/* Masterclass — immersion type Netflix + engagement type YouTube */
:root {
  --mc-bg: #050505;
  --mc-bg-elevated: #0d0d0d;
  --mc-border: rgba(255, 255, 255, 0.08);
  --mc-text: #e5e5e5;
  --mc-muted: #a3a3a3;
  --mc-accent: #e50914;
  --mc-radius: 4px;
}

body.mc-page {
  background: var(--mc-bg);
  color: var(--mc-text);
  font-family: "Inter", system-ui, sans-serif;
  min-height: 100vh;
}

.mc-page .navbar-mc {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease,
    background 0.25s ease, backdrop-filter 0.25s ease;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: transparent !important;
}

.mc-page .navbar-mc.mc-navbar--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(5, 5, 5, 0.96) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mc-border);
}

.mc-page .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.mc-page .nav-link:hover,
.mc-page .nav-link.mc-active {
  color: #fff !important;
}

.mc-page .navbar-logo {
  height: 40px;
  width: auto;
}

.btn-danger {
  background-color: #3d2a5c;
  border-color: #3d2a5c;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: #322348;
  border-color: #322348;
}

/* Carte = lien vers page détail */
a.mc-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.mc-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* Page détail vidéo */
.mc-page--detail .navbar-mc--detail {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  background: rgba(5, 5, 5, 0.96) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mc-border);
}

.mc-detail-main {
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}

.mc-detail-container {
  max-width: 1320px;
  margin: 0 auto;
}

.mc-breadcrumb {
  font-size: 0.85rem;
  color: var(--mc-muted);
  margin-bottom: 1.25rem;
}

.mc-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.mc-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.mc-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.mc-breadcrumb__current {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  max-width: min(100%, 42rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

.mc-yt-details--page {
  padding: 1.25rem 0 0;
  background: transparent;
  border-top: none;
}

.mc-related__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.mc-related {
  margin: 0;
}

.mc-related li + li {
  margin-top: 0.65rem;
}

.mc-related__card {
  display: flex;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem 0;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.mc-related__card:hover {
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
}

.mc-related__thumb {
  position: relative;
  flex: 0 0 168px;
  width: 168px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
}

.mc-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-related__duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.82);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

.mc-related__body {
  min-width: 0;
  flex: 1;
}

.mc-related__name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.25rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-related__meta {
  font-size: 0.75rem;
  color: var(--mc-muted);
  margin: 0;
}

@media (max-width: 575px) {
  .mc-related__thumb {
    flex-basis: 120px;
    width: 120px;
  }
}

/* Commentaires (page détail) */
.mc-comments {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--mc-border);
}

.mc-comments__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.mc-comments__count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mc-muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.mc-comments__flash {
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.mc-comments__flash--ok {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.mc-comments__flash--err {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.mc-comments__form {
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mc-border);
  border-radius: 12px;
}

.mc-comments__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mc-muted);
  margin-bottom: 0.35rem;
}

.mc-comments__input,
.mc-comments__textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--mc-border);
  border-radius: 8px;
  color: #fff;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.mc-comments__input::placeholder,
.mc-comments__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.mc-comments__input:focus,
.mc-comments__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.25);
}

.mc-comments__textarea {
  resize: vertical;
  min-height: 100px;
}

.mc-comments__submit {
  background: var(--mc-accent);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  transition: filter 0.15s ease;
}

.mc-comments__submit:hover {
  filter: brightness(1.08);
  color: #fff;
}

.mc-comments__list {
  margin: 0;
}

.mc-comments__empty {
  font-size: 0.9rem;
  color: var(--mc-muted);
  padding: 0.5rem 0;
}

.mc-comments__item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mc-border);
}

.mc-comments__item:last-child {
  border-bottom: none;
}

.mc-comments__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3a3a3a, #1f1f1f);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-comments__body {
  min-width: 0;
  flex: 1;
}

.mc-comments__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
}

.mc-comments__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.mc-comments__date {
  font-size: 0.75rem;
  color: var(--mc-muted);
}

.mc-comments__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Billboard */
.mc-billboard {
  position: relative;
  height: min(78vh, 720px);
  overflow: hidden;
  margin-top: 0;
}

.mc-billboard__video-wrap {
  position: absolute;
  inset: 0;
}

.mc-billboard__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.mc-billboard__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    77deg,
    rgba(5, 5, 5, 0.95) 25%,
    rgba(5, 5, 5, 0.5) 55%,
    transparent 85%
  ),
    linear-gradient(0deg, var(--mc-bg) 0%, transparent 35%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, transparent 25%);
  pointer-events: none;
}

.mc-billboard__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 4% 4rem;
  max-width: 640px;
}

.mc-billboard__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mc-accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.mc-billboard__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.mc-billboard__synopsis {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.mc-billboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mc-btn-play {
  background: #fff;
  color: #000;
  border: none;
  font-weight: 700;
  padding: 0.65rem 1.75rem;
  border-radius: var(--mc-radius);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.mc-btn-play:hover {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  transform: scale(1.02);
}

.mc-btn-list {
  background: rgba(109, 109, 110, 0.65);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--mc-radius);
  backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}

.mc-btn-list:hover {
  background: rgba(109, 109, 110, 0.9);
  color: #fff;
}

.mc-btn-list.is-saved {
  background: rgba(255, 255, 255, 0.2);
}

/* Tags filtres (YouTube-style) */
.mc-filters {
  padding: 1.25rem 4% 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.mc-filter-pill {
  border: 1px solid var(--mc-border);
  background: var(--mc-bg-elevated);
  color: var(--mc-text);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mc-filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: #1a1a1a;
}

.mc-filter-pill.is-active {
  background: #fff;
  color: #000;
  border-color: #fff;
  font-weight: 600;
}

/* Carrousels */
.mc-rows {
  padding: 1.5rem 0 3rem;
}

.mc-row {
  margin-bottom: 2rem;
}

.mc-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  margin-bottom: 0.75rem;
}

.mc-row__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.mc-row__nav {
  display: flex;
  gap: 0.35rem;
}

.mc-row__nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mc-border);
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mc-row__nav button:hover:not(:disabled) {
  background: #2a2a2a;
}

.mc-row__nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.mc-row__track-wrap {
  position: relative;
  padding: 0 4%;
}

.mc-row__track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.mc-row__track::-webkit-scrollbar {
  display: none;
}

/* Carte vignette 16:9 */
.mc-card {
  flex: 0 0 calc(42vw - 1rem);
  max-width: 320px;
  min-width: 200px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  color: inherit;
}

@media (min-width: 768px) {
  .mc-card {
    flex: 0 0 calc(24vw - 0.5rem);
    max-width: 280px;
  }
}

@media (min-width: 1200px) {
  .mc-card {
    flex: 0 0 240px;
  }
}

.mc-card__thumb-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mc-card:hover .mc-card__thumb-wrap,
.mc-card:focus-visible .mc-card__thumb-wrap {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.mc-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mc-card:hover .mc-card__thumb {
  transform: scale(1.05);
}

.mc-card__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.mc-card__progress-bar {
  height: 100%;
  background: var(--mc-accent);
  width: 0%;
  transition: width 0.2s ease;
}

.mc-card__premium {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #f5c518, #d4a017);
  color: #1a1204;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}

.mc-card__duration {
  position: absolute;
  bottom: 0.45rem;
  right: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.82);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.mc-card__meta {
  margin-top: 0.5rem;
  padding: 0 0.1rem;
}

.mc-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mc-card__stats {
  font-size: 0.75rem;
  color: var(--mc-muted);
}

/* Section pricing (hors lecteur) */
.mc-pricing-section {
  padding: 2rem 4% 4rem;
  border-top: 1px solid var(--mc-border);
  background: linear-gradient(180deg, var(--mc-bg) 0%, #0a0a0a 100%);
}

.mc-pricing-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.mc-pricing-section > p {
  text-align: center;
  color: var(--mc-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.mc-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mc-plans {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.mc-plan {
  border: 1px solid var(--mc-border);
  border-radius: 10px;
  padding: 1.5rem;
  background: var(--mc-bg-elevated);
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mc-plan:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.mc-plan--featured {
  border-color: var(--mc-accent);
  box-shadow: 0 0 0 1px var(--mc-accent);
}

.mc-plan__ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mc-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.mc-plan__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.mc-plan__price {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.mc-plan__per {
  font-size: 0.8rem;
  color: var(--mc-muted);
  margin-bottom: 1rem;
}

.mc-plan ul {
  font-size: 0.85rem;
  color: var(--mc-muted);
  padding-left: 1.1rem;
  margin-bottom: 1.25rem;
}

.mc-plan .mc-btn-subscribe {
  width: 100%;
  background: var(--mc-accent);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.65rem;
  border-radius: var(--mc-radius);
  transition: filter 0.15s ease;
}

.mc-plan .mc-btn-subscribe:hover {
  filter: brightness(1.1);
  color: #fff;
}

.mc-plan--featured .mc-btn-subscribe {
  background: #fff;
  color: #000;
}

.mc-plan--featured .mc-btn-subscribe:hover {
  filter: brightness(0.95);
  color: #000;
}

/* Modal lecteur */
.mc-modal .modal-content {
  background: #000;
  border: 1px solid var(--mc-border);
  border-radius: 8px;
  overflow: hidden;
}

.mc-modal .modal-header {
  border-bottom: 1px solid var(--mc-border);
  padding: 0.65rem 1rem;
}

.mc-modal__top {
  background: #0a0a0a;
}

.mc-modal .modal-title {
  font-size: 1rem;
  font-weight: 600;
}

.mc-modal .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

/* Détails vidéo (style YouTube) */
.mc-yt-details {
  padding: 1rem 1.25rem 1.5rem;
  background: #0a0a0a;
  border-top: 1px solid var(--mc-border);
}

.mc-yt-details__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.5rem;
  color: #fff;
}

@media (min-width: 576px) {
  .mc-yt-details__title {
    font-size: 1.25rem;
  }
}

.mc-yt-details__meta {
  font-size: 0.85rem;
  color: var(--mc-muted);
  margin-bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
}

.mc-yt-dot {
  opacity: 0.5;
  user-select: none;
}

.mc-yt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--mc-border);
}

.mc-yt-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.mc-yt-action:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mc-yt-action[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.18);
}

.mc-yt-action__label {
  max-width: 5.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .mc-yt-action__label {
    max-width: none;
  }
}

.mc-yt-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mc-yt-channel__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
}

.mc-yt-channel__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-yt-channel__info {
  flex: 1;
  min-width: 0;
}

.mc-yt-channel__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.mc-yt-channel__subs {
  font-size: 0.8rem;
  color: var(--mc-muted);
}

.mc-yt-subscribe {
  flex-shrink: 0;
  background: #fff;
  color: #0a0a0a;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mc-yt-subscribe:hover {
  background: #e5e5e5;
  color: #0a0a0a;
}

.mc-yt-desc-box {
  margin-bottom: 1rem;
}

.mc-yt-desc-box__inner {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.mc-yt-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  white-space: pre-line;
}

.mc-yt-desc-box__inner:not(.is-expanded) .mc-yt-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.mc-yt-desc-more {
  margin-top: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.mc-yt-desc-more:hover {
  text-decoration: underline;
}

.mc-yt-desc-box__inner:not(.is-clampable) .mc-yt-desc-more {
  display: none;
}

.mc-yt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mc-yt-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(62, 166, 255, 0.95);
  background: rgba(62, 166, 255, 0.12);
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(62, 166, 255, 0.25);
}

.mc-player-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

.mc-player-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  vertical-align: top;
}

.mc-player-wrap.is-locked video {
  filter: blur(14px) brightness(0.55);
}

.mc-paywall {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  background: rgba(5, 5, 5, 0.35);
  z-index: 3;
}

.mc-player-wrap.is-locked .mc-paywall {
  display: flex;
}

.mc-paywall h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  max-width: 380px;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.mc-paywall > p {
  color: var(--mc-muted);
  font-size: 0.85rem;
  max-width: 340px;
  margin-bottom: 1.25rem;
}

.mc-paywall-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  width: 100%;
  max-width: 640px;
}

.mc-paywall-plan {
  flex: 1 1 140px;
  max-width: 200px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--mc-border);
  border-radius: 8px;
  padding: 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
  text-align: center;
}

.mc-paywall-plan:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.mc-paywall-plan--hit {
  border-color: var(--mc-accent);
  box-shadow: 0 0 0 1px var(--mc-accent);
}

.mc-paywall-plan__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mc-muted);
  margin-bottom: 0.25rem;
}

.mc-paywall-plan__price {
  font-size: 1.15rem;
  font-weight: 800;
}

.mc-paywall-plan__note {
  font-size: 0.65rem;
  color: var(--mc-muted);
  margin-top: 0.25rem;
}

.mc-paywall-secure {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--mc-muted);
}

.mc-paywall-secure i {
  margin-right: 0.35rem;
  color: #22c55e;
}

/* Footer MC */
.mc-footer {
  border-top: 1px solid var(--mc-border);
  padding: 2.5rem 4% 1.5rem;
  background: #030303;
}

.mc-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.mc-footer h6 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mc-muted);
  margin-bottom: 0.75rem;
}

.mc-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.4rem;
}

.mc-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.mc-footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mc-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--mc-border);
}
