/*
Theme Name: My Content Theme
Theme URI: https://yoursite.com
Author: Your Name
Description: A premium black & white content membership theme with video preview limiting and fast HLS playback.
Version: 1.0.0
License: GPL v2 or later
Text Domain: my-content-theme
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --mid: #444444;
  --light-mid: #888888;
  --light: #cccccc;
  --white: #ffffff;
  --accent: #ffffff;
  --border: #2a2a2a;
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--white); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--light-mid); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

#site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.site-logo span { color: var(--light-mid); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light);
  transition: color var(--transition);
}

.main-nav a:hover { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--light);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--light-mid);
  border: none;
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--white); }

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  margin-top: 64px;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-description {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   VIDEO GRID
   ============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--white);
  margin-right: 10px;
  vertical-align: middle;
}

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

.video-grid.featured {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

/* =============================================
   VIDEO CARD
   ============================================= */
.video-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  border-color: var(--mid);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-4);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.video-card:hover .thumb-overlay { opacity: 1; }

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.85);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
}

.video-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
}

.badge-free { background: var(--white); color: var(--black); }
.badge-members { background: var(--mid); color: var(--white); }
.badge-new { background: #333; color: var(--white); border: 1px solid #555; }

.video-info {
  padding: 14px;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--light-mid);
}

.video-meta .dot { opacity: 0.4; }

.locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(2px);
}

.lock-icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-icon svg { width: 16px; height: 16px; fill: var(--white); }

.locked-overlay span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
}

/* =============================================
   PREVIEW MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
  max-width: 860px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--transition);
  z-index: 10;
}

.modal-close:hover { background: rgba(255,255,255,0.2); }

/* Video Player Modal */
#player-modal .modal-box { background: var(--black); }

.player-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.player-wrapper .video-js {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  inset: 0;
}

.preview-counter-bar {
  padding: 12px 20px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.preview-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}

.preview-dot.used { background: var(--white); }

.preview-label {
  font-size: 0.8rem;
  color: var(--light-mid);
}

.preview-label strong { color: var(--white); }

/* Paywall Modal */
#paywall-modal .modal-box {
  max-width: 500px;
  padding: 48px 40px;
  text-align: center;
}

.paywall-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paywall-icon svg { width: 28px; height: 28px; fill: var(--white); }

.paywall-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.paywall-desc {
  color: var(--light-mid);
  margin-bottom: 32px;
  line-height: 1.7;
}

.paywall-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paywall-login-link {
  font-size: 0.85rem;
  color: var(--light-mid);
  margin-top: 8px;
}

.paywall-login-link a { color: var(--white); text-decoration: underline; }

/* =============================================
   JOIN / PRICING PAGE
   ============================================= */
.join-hero {
  margin-top: 64px;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(to bottom, #111, var(--dark));
  border-bottom: 1px solid var(--border);
}

.join-hero p {
  color: var(--light-mid);
  max-width: 500px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

.pricing-section { padding: 60px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--mid);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--white);
  background: var(--dark-4);
}

.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-mid);
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 400;
  vertical-align: super;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--light-mid);
  margin-bottom: 28px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--light);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee {
  text-align: center;
  padding: 40px 0;
  color: var(--light-mid);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

/* =============================================
   AUTH FORMS (Login / Register)
   ============================================= */
.auth-page {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--dark);
}

.auth-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.auth-subtitle {
  text-align: center;
  color: var(--light-mid);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-mid);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  font-family: var(--font-main);
}

.form-input:focus {
  outline: none;
  border-color: var(--mid);
  background: var(--dark-3);
}

.form-input::placeholder { color: var(--mid); }

.form-divider {
  text-align: center;
  color: var(--light-mid);
  font-size: 0.85rem;
  margin: 24px 0;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.auth-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--light-mid);
}

.auth-switch a { color: var(--white); text-decoration: underline; }

/* =============================================
   MEMBERS DASHBOARD
   ============================================= */
.members-page {
  margin-top: 64px;
  padding: 40px 0;
  min-height: calc(100vh - 64px);
}

.members-header {
  padding: 32px;
  background: var(--dark-3);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member-greeting h2 { font-size: 1.5rem; }
.member-greeting p { color: var(--light-mid); margin-top: 4px; }

.member-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.member-status-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.members-content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

.members-sidebar {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  height: fit-content;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--light-mid);
  font-size: 0.9rem;
  transition: all var(--transition);
  margin-bottom: 4px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--dark-4);
  color: var(--white);
}

.members-main { min-width: 0; }

.content-tabs {
  display: flex;
  gap: 4px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
  width: fit-content;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--light-mid);
  transition: all var(--transition);
}

.tab-btn.active {
  background: var(--dark-4);
  color: var(--white);
}

/* =============================================
   CATEGORY PILLS / TAGS
   ============================================= */
.category-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--light-mid);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cat-pill:hover,
.cat-pill.active {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 60px 0;
}

.stat-item {
  background: var(--dark-3);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--light-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   SEARCH BAR
   ============================================= */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  max-width: 400px;
  transition: border-color var(--transition);
}

.search-bar:focus-within { border-color: var(--mid); }

.search-bar svg {
  width: 18px;
  height: 18px;
  fill: var(--light-mid);
  flex-shrink: 0;
}

.search-bar input {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  width: 100%;
  font-family: var(--font-main);
}

.search-bar input::placeholder { color: var(--mid); }
.search-bar input:focus { outline: none; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p {
  color: var(--light-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-mid);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--light-mid);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--light-mid);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--light-mid);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--white); }

/* =============================================
   NOTICES / ALERTS
   ============================================= */
.notice {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.notice-error { background: rgba(255,255,255,0.05); border: 1px solid #555; color: var(--light); }
.notice-success { background: rgba(255,255,255,0.07); border: 1px solid var(--mid); color: var(--white); }

/* =============================================
   MOBILE NAV TOGGLE
   ============================================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .members-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 999;
  }

  .hero { min-height: 50vh; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .members-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .auth-box { padding: 32px 24px; }
  #paywall-modal .modal-box { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   VIDEO.JS CUSTOM SKIN
   ============================================= */
.video-js .vjs-control-bar {
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  height: 42px;
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
  background: var(--white);
}

.video-js .vjs-progress-control:hover .vjs-play-progress::before {
  background: var(--white);
}

.video-js .vjs-big-play-button {
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.video-js:hover .vjs-big-play-button {
  background: rgba(255,255,255,0.25);
}

/* =============================================
   UTILITIES
   ============================================= */
.text-muted { color: var(--light-mid); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
