/* ===========================
   VideoPlayer - Yüzey & Geçiş Değişkenleri
   =========================== */
:root {
  /* Geçişler */
  --vp-spring-transition: linear(0, .034 1.5%, .763 9.7%, 1.066 13.9%, 1.198 19.9%, 1.184 21.8%, .963 37.5%, .997 50.9%, 1);
  --vp-controls-transition-duration: .1s;
  --vp-controls-transition-timing-function: ease-out;
  --vp-error-dialog-transition-duration: .35s;
  --vp-error-dialog-transition-delay: .1s;
  --vp-error-dialog-transition-timing-function: var(--vp-spring-transition);
  --vp-popup-transition-duration: .1s;
  --vp-popup-transition-timing-function: ease-out;
  --vp-tooltip-side-offset: .75rem;
  --vp-popover-side-offset: .5rem;

  /* Yüzey (Surface) */
  --vp-surface-background-color: oklch(1 0 0 / 0.1);
  --vp-surface-backdrop-filter: blur(16px) saturate(1.5);
  --vp-surface-outer-border-color: oklch(0 0 0 / 0.1);
  --vp-surface-inner-border-color: oklch(1 0 0 / 0.05);
  --vp-surface-shadow-color: oklch(0 0 0 / 0.15);

  /* Tema değişkenleri (varsayılan koyu) */
  --vp-accent: #3498db;
  --vp-radius: 16px;
  --vp-button-radius: 50px;
  --vp-font: Inter, 'Segoe UI', system-ui, sans-serif;
  --vp-text-color: #fff;
  --vp-text-secondary: rgba(255,255,255,0.9);
  --vp-title-gradient: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  --vp-button-hover-bg: rgba(255,255,255,0.1);
  --vp-button-active-scale: 0.92;
  --vp-big-play-bg: var(--vp-accent);
  --vp-big-play-shadow: 0 8px 28px rgba(0,0,0,0.5);
  --vp-big-play-hover-shadow: 0 12px 32px rgba(0,0,0,0.6);
  --vp-error-bg: rgba(0,0,0,0.8);
  --vp-error-blur: blur(16px);
  --vp-menu-bg: rgba(0,0,0,0.85);
  --vp-menu-blur: blur(12px);
  --vp-volume-bg: rgba(0,0,0,0.8);
  --vp-volume-blur: blur(12px);
  --vp-progress-bg: rgba(255,255,255,0.15);
  --vp-progress-buffer: rgba(255,255,255,0.25);
  --vp-progress-shadow: 0 0 6px rgba(52,152,219,0.5);
  --vp-thumb-bg: #fff;
  --vp-thumb-shadow: 0 0 4px rgba(0,0,0,0.4);
  --vp-preview-bg: rgba(0,0,0,0.9);
}

/* ===========================
   Tema: Koyu (Dark)
   =========================== */
.vp-theme-dark {
  --vp-accent: #3498db;
  --vp-surface-background-color: oklch(0 0 0 / 0.2);
  --vp-surface-outer-border-color: oklch(1 0 0 / 0.08);
  --vp-surface-shadow-color: oklch(0 0 0 / 0.3);
  --vp-text-color: #fff;
  --vp-text-secondary: rgba(255,255,255,0.9);
  --vp-title-gradient: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  --vp-button-hover-bg: rgba(255,255,255,0.1);
  --vp-progress-bg: rgba(255,255,255,0.15);
  --vp-progress-buffer: rgba(255,255,255,0.25);
  --vp-progress-shadow: 0 0 6px rgba(52,152,219,0.5);
  --vp-thumb-bg: #fff;
  --vp-thumb-shadow: 0 0 4px rgba(0,0,0,0.4);
  --vp-preview-bg: rgba(0,0,0,0.9);
  --vp-big-play-bg: var(--vp-accent);
  --vp-big-play-shadow: 0 8px 28px rgba(0,0,0,0.5);
  --vp-big-play-hover-shadow: 0 12px 32px rgba(0,0,0,0.6);
  --vp-error-bg: rgba(0,0,0,0.8);
  --vp-error-blur: blur(16px);
  --vp-menu-bg: rgba(0,0,0,0.85);
  --vp-menu-blur: blur(12px);
  --vp-volume-bg: rgba(0,0,0,0.8);
  --vp-volume-blur: blur(12px);
}

/* ===========================
   Tema: Açık (Light)
   =========================== */
.vp-theme-light {
  --vp-accent: #007aff;
  --vp-surface-background-color: oklch(1 0 0 / 0.75);
  --vp-surface-outer-border-color: oklch(0 0 0 / 0.06);
  --vp-surface-shadow-color: oklch(0 0 0 / 0.1);
  --vp-text-color: #1a1a1a;
  --vp-text-secondary: rgba(0,0,0,0.75);
  --vp-title-gradient: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, transparent 100%);
  --vp-button-hover-bg: rgba(0,0,0,0.06);
  --vp-progress-bg: rgba(0,0,0,0.1);
  --vp-progress-buffer: rgba(0,0,0,0.15);
  --vp-progress-shadow: 0 0 6px rgba(0,122,255,0.4);
  --vp-thumb-bg: #007aff;
  --vp-thumb-shadow: 0 0 4px rgba(0,0,0,0.2);
  --vp-preview-bg: rgba(255,255,255,0.95);
  --vp-big-play-bg: var(--vp-accent);
  --vp-big-play-shadow: 0 8px 28px rgba(0,0,0,0.2);
  --vp-big-play-hover-shadow: 0 12px 32px rgba(0,0,0,0.3);
  --vp-error-bg: rgba(255,255,255,0.9);
  --vp-error-blur: blur(16px);
  --vp-menu-bg: rgba(255,255,255,0.9);
  --vp-menu-blur: blur(12px);
  --vp-volume-bg: rgba(255,255,255,0.9);
  --vp-volume-blur: blur(12px);
}

/* ===========================
   Tema: Minimal
   =========================== */
.vp-theme-minimal {
  --vp-accent: #fff;
  --vp-radius: 8px;
  --vp-button-radius: 8px;
  --vp-surface-background-color: oklch(0 0 0 / 0.4);
  --vp-surface-outer-border-color: oklch(1 0 0 / 0.05);
  --vp-surface-shadow-color: oklch(0 0 0 / 0.2);
  --vp-text-color: #fff;
  --vp-text-secondary: rgba(255,255,255,0.8);
  --vp-title-gradient: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  --vp-button-hover-bg: rgba(255,255,255,0.15);
  --vp-button-active-scale: 0.95;
  --vp-progress-bg: rgba(255,255,255,0.2);
  --vp-progress-buffer: rgba(255,255,255,0.3);
  --vp-progress-shadow: none;
  --vp-thumb-bg: #fff;
  --vp-thumb-shadow: none;
  --vp-preview-bg: rgba(0,0,0,0.8);
  --vp-big-play-bg: rgba(255,255,255,0.2);
  --vp-big-play-shadow: none;
  --vp-big-play-hover-shadow: none;
  --vp-error-bg: rgba(0,0,0,0.7);
  --vp-error-blur: blur(8px);
  --vp-menu-bg: rgba(0,0,0,0.7);
  --vp-menu-blur: blur(8px);
  --vp-volume-bg: rgba(0,0,0,0.7);
  --vp-volume-blur: blur(8px);
}

/* ===========================
   Tema: Modern
   =========================== */
.vp-theme-modern {
  --vp-accent: #ff3b30;
  --vp-radius: 24px;
  --vp-button-radius: 24px;
  --vp-surface-background-color: oklch(0.15 0.02 270 / 0.8);
  --vp-surface-outer-border-color: oklch(1 0 0 / 0.1);
  --vp-surface-shadow-color: oklch(0 0 0 / 0.4);
  --vp-text-color: #fff;
  --vp-text-secondary: rgba(255,255,255,0.9);
  --vp-title-gradient: linear-gradient(180deg, rgba(20,20,30,0.9) 0%, transparent 100%);
  --vp-button-hover-bg: rgba(255,59,48,0.2);
  --vp-button-active-scale: 0.9;
  --vp-progress-bg: rgba(255,255,255,0.12);
  --vp-progress-buffer: rgba(255,255,255,0.2);
  --vp-progress-shadow: 0 0 10px rgba(255,59,48,0.6);
  --vp-thumb-bg: #ff3b30;
  --vp-thumb-shadow: 0 0 8px rgba(255,59,48,0.5);
  --vp-preview-bg: rgba(20,20,30,0.95);
  --vp-big-play-bg: var(--vp-accent);
  --vp-big-play-shadow: 0 8px 28px rgba(255,59,48,0.5);
  --vp-big-play-hover-shadow: 0 12px 36px rgba(255,59,48,0.7);
  --vp-error-bg: rgba(20,20,30,0.9);
  --vp-error-blur: blur(20px);
  --vp-menu-bg: rgba(20,20,30,0.9);
  --vp-menu-blur: blur(16px);
  --vp-volume-bg: rgba(20,20,30,0.9);
  --vp-volume-blur: blur(16px);
}

/* ===========================
   Tema: Kurumsal (Corporate)
   =========================== */
.vp-theme-corporate {
  --vp-accent: #1a3a5c;
  --vp-radius: 6px;
  --vp-button-radius: 6px;
  --vp-surface-background-color: oklch(0.2 0.02 250 / 0.9);
  --vp-surface-outer-border-color: oklch(1 0 0 / 0.1);
  --vp-surface-shadow-color: oklch(0 0 0 / 0.3);
  --vp-text-color: #e8ecf1;
  --vp-text-secondary: rgba(232,236,241,0.85);
  --vp-title-gradient: linear-gradient(180deg, rgba(26,58,92,0.9) 0%, transparent 100%);
  --vp-button-hover-bg: rgba(255,255,255,0.15);
  --vp-button-active-scale: 0.93;
  --vp-progress-bg: rgba(255,255,255,0.1);
  --vp-progress-buffer: rgba(255,255,255,0.2);
  --vp-progress-shadow: none;
  --vp-thumb-bg: #e8ecf1;
  --vp-thumb-shadow: 0 0 4px rgba(0,0,0,0.3);
  --vp-preview-bg: rgba(26,58,92,0.95);
  --vp-big-play-bg: var(--vp-accent);
  --vp-big-play-shadow: 0 4px 16px rgba(0,0,0,0.4);
  --vp-big-play-hover-shadow: 0 6px 20px rgba(0,0,0,0.5);
  --vp-error-bg: rgba(26,58,92,0.95);
  --vp-error-blur: blur(12px);
  --vp-menu-bg: rgba(26,58,92,0.95);
  --vp-menu-blur: blur(12px);
  --vp-volume-bg: rgba(26,58,92,0.95);
  --vp-volume-blur: blur(12px);
}

/* ===========================
   Logo
   =========================== */
/* ---- Logo ---- */
.vp-logo {
  position: absolute;
  z-index: 10;
  pointer-events: auto;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  transition: opacity 0.3s;
}
.vp-logo img {
  max-height: 40px;
  max-width: 120px;
  display: block;
}
.vp-logo-top-left     { top: 10px; left: 10px; }
.vp-logo-top-right    { top: 10px; right: 10px; }
.vp-logo-bottom-left  { bottom: 10px; left: 10px; }
.vp-logo-bottom-right { bottom: 10px; right: 10px; }

/* ---- Progress Container (daha kalın tıklama alanı) ---- */
.vp-progress-container {
  flex: 1;
  height: 2rem;             /* fare için geniş alan */
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* ---- Zaman etiketleri (yan yana) ---- */
.vp-time-current,
.vp-time-duration {
  font-size: 0.8rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
  min-width: auto;
  padding: 0 2px;
}

/* ===========================
   Ortak Stiller (Surface etkisi kontrollere işlenmiş)
   =========================== */
.vp-corporate {
  position: relative;
  overflow: hidden;
  border-radius: var(--vp-radius);
  background: #000;
  font-family: var(--vp-font);
  container-type: inline-size;
  user-select: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.vp-corporate:focus-visible {
  outline-color: var(--vp-accent);
}

.vp-corporate .vp-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: inherit;
}

.vp-corporate .vp-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
}

/* Yükleme */
.vp-corporate .vp-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--vp-accent);
  border-radius: 50%;
  animation: vp-spin 0.8s linear infinite;
  z-index: 3;
  display: none;
}
.vp-corporate.loading .vp-loading { display: block; }
@keyframes vp-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Büyük oynat */
.vp-corporate .vp-big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--vp-big-play-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: var(--vp-big-play-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vp-corporate .vp-big-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: var(--vp-big-play-hover-shadow);
}
.vp-corporate .vp-big-play:active {
  transform: translate(-50%, -50%) scale(0.95);
}
.vp-corporate.playing .vp-big-play {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Başlık */
.vp-title-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: var(--vp-title-gradient);
  color: var(--vp-text-color);
  font-weight: 600;
  font-size: 1rem;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s;
  letter-spacing: 0.01em;
}
.vp-corporate.idle .vp-title-bar {
  opacity: 0;
  pointer-events: none;
}

/* Hata */
.vp-error-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--vp-error-bg);
  backdrop-filter: var(--vp-error-blur);
  -webkit-backdrop-filter: var(--vp-error-blur);
  color: var(--vp-text-color);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.vp-error-overlay.show { display: flex; }
.vp-error-overlay .vp-error-title { font-size: 1.25rem; font-weight: 600; }
.vp-error-overlay .vp-error-desc { opacity: 0.75; font-size: 0.9rem; max-width: 80%; }
.vp-error-overlay .vp-retry-btn {
  background: var(--vp-accent);
  border: none;
  color: #fff;
  padding: 10px 28px;
  border-radius: var(--vp-button-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.vp-error-overlay .vp-retry-btn:hover { opacity: 0.9; transform: scale(1.03); }
.vp-error-overlay .vp-retry-btn:active { transform: scale(0.97); }

/* ===========================
   KONTROLLER (YÜZEY EFEKTİ UYGULANMIŞ)
   =========================== */
.vp-controls {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: var(--vp-surface-background-color);
  backdrop-filter: var(--vp-surface-backdrop-filter);
  -webkit-backdrop-filter: var(--vp-surface-backdrop-filter);
  box-shadow:
    0 0 0 1px var(--vp-surface-outer-border-color),
    0 1px 3px 0 var(--vp-surface-shadow-color),
    0 1px 2px -1px var(--vp-surface-shadow-color);
  display: flex;
  align-items: center;
  padding: 0.25rem;          /* istediğiniz ince padding */
  gap: 10px;
  color: var(--vp-text-color);
  z-index: 3;
  border-radius: 1.5rem;     /* tam yuvarlak köşeler */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.4s;
}
.vp-corporate.idle .vp-controls {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

/* İç kenar çizgisi (surface::after benzeri) */
.vp-controls::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--vp-surface-inner-border-color);
  pointer-events: none;
}

/* Butonlar */
.vp-controls button {
  background: transparent;
  border: none;
  color: var(--vp-text-secondary);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.15s, background 0.2s;
  border-radius: var(--vp-button-radius);
  width: 36px;
  height: 36px;
}
/* Tüm butonlardaki SVG ikonların rengini tema değişkenine bağla */
.vp-controls button svg {
  fill: currentColor;
}
.vp-controls button:hover {
  color: var(--vp-text-color);
  background: var(--vp-button-hover-bg);
}
.vp-controls button:active {
  transform: scale(var(--vp-button-active-scale));
}

/* İlerleme çubuğu */
.vp-progress {
  flex: 1;
  height: 5px;
  background: var(--vp-progress-bg);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: height 0.15s;
}
.vp-progress:hover { height: 7px; }
.vp-progress:focus-visible { box-shadow: 0 0 0 3px rgba(52,152,219,0.5); }

.vp-buffer-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--vp-progress-buffer);
  border-radius: 10px;
  width: 0;
  z-index: 1;
  transition: width 0.2s;
}
.vp-progress-filled {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--vp-accent);
  border-radius: 10px;
  width: 0;
  z-index: 2;
  box-shadow: var(--vp-progress-shadow);
}

/* Thumb */
.vp-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--vp-thumb-bg);
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  box-shadow: var(--vp-thumb-shadow);
  transition: opacity 0.2s, left 0.05s linear, outline-offset 0.15s;
  outline: 2px solid transparent;
  outline-offset: -2px;
  pointer-events: none;
}
.vp-corporate:not(.idle):hover .vp-thumb { opacity: 1; }
.vp-progress:hover .vp-thumb {
  outline-color: rgba(255,255,255,0.4);
  outline-offset: 2px;
}

/* Zaman */
.vp-time {
  font-size: 0.8rem;
  white-space: nowrap;
  min-width: 100px;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

/* Ses */
.vp-volume-group { position: relative; display: flex; align-items: center; }
.vp-volume-slider-container {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  width: 36px;
  background: var(--vp-volume-bg);
  backdrop-filter: var(--vp-volume-blur);
  -webkit-backdrop-filter: var(--vp-volume-blur);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.vp-volume-group:hover .vp-volume-slider-container {
  opacity: 1;
  visibility: visible;
}
.vp-volume-slider-vertical {
  -webkit-appearance: slider-vertical;
  width: 20px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}
.vp-volume-slider-vertical::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--vp-thumb-bg);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}

/* Önizleme */
.vp-preview {
  position: absolute;
  bottom: 60px;
  left: 0;
  transform: translateX(80%);
  background: var(--vp-preview-bg);
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.08);
}
.vp-preview.show { opacity: 1; }
.vp-preview-thumb { width: 160px; height: 90px; object-fit: cover; background: #1a1a1a; }
.vp-preview-time {
  color: var(--vp-text-color);
  font-size: 0.75rem;
  padding: 4px 8px;
  background: rgba(0,0,0,0.7);
  width: 100%;
  text-align: center;
  font-weight: 500;
}

/* Hız menüsü */
.vp-rate-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vp-menu-bg);
  backdrop-filter: var(--vp-menu-blur);
  -webkit-backdrop-filter: var(--vp-menu-blur);
  border-radius: 10px;
  padding: 6px 0;
  display: none;
  flex-direction: column;
  z-index: 6;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  min-width: 70px;
}
.vp-rate-menu.show { display: flex; }
.vp-rate-menu button {
  background: transparent;
  border: none;
  color: var(--vp-text-color);
  padding: 8px 18px;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.15s;
  border-radius: 0;
}
.vp-rate-menu button:hover { background: rgba(255,255,255,0.15); }
.vp-rate-menu button.active { color: var(--vp-accent); font-weight: 600; }

/* Container queries */
@container (max-width: 480px) {
  .vp-time { font-size: 0.7rem; }
  .vp-controls button { width: 30px; height: 30px; }
  .vp-progress { height: 4px; }
  .vp-volume-slider-container { height: 65px; width: 30px; }
  .vp-volume-slider-vertical { height: 55px; }
  .vp-preview-thumb { width: 120px; height: 68px; }
}
@container (min-width: 768px) {
  .vp-controls { padding: 0.35rem 0.5rem; gap: 12px; }
  .vp-time { font-size: 0.85rem; }
  .vp-big-play { width: 80px; height: 80px; }
}

/* Erişilebilirlik */
@media (prefers-reduced-motion: reduce) {
  .vp-corporate *,
  .vp-corporate *:before,
  .vp-corporate *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Sistem açık teması (otomatik) */
@media (prefers-color-scheme: light) {
  :root:not([class*="vp-theme-"]) {
    --vp-accent: #007aff;
    --vp-surface-background-color: oklch(1 0 0 / 0.75);
    --vp-surface-outer-border-color: oklch(0 0 0 / 0.06);
    --vp-surface-shadow-color: oklch(0 0 0 / 0.1);
    --vp-text-color: #1a1a1a;
    --vp-text-secondary: rgba(0,0,0,0.75);
    --vp-title-gradient: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, transparent 100%);
    --vp-button-hover-bg: rgba(0,0,0,0.06);
    --vp-progress-bg: rgba(0,0,0,0.1);
    --vp-progress-buffer: rgba(0,0,0,0.15);
    --vp-progress-shadow: 0 0 6px rgba(0,122,255,0.4);
    --vp-thumb-bg: #007aff;
    --vp-thumb-shadow: 0 0 4px rgba(0,0,0,0.2);
    --vp-preview-bg: rgba(255,255,255,0.95);
    --vp-big-play-bg: var(--vp-accent);
    --vp-big-play-shadow: 0 8px 28px rgba(0,0,0,0.2);
    --vp-big-play-hover-shadow: 0 12px 32px rgba(0,0,0,0.3);
    --vp-error-bg: rgba(255,255,255,0.9);
    --vp-error-blur: blur(16px);
    --vp-menu-bg: rgba(255,255,255,0.9);
    --vp-menu-blur: blur(12px);
    --vp-volume-bg: rgba(255,255,255,0.9);
    --vp-volume-blur: blur(12px);
  }
}