#window-Demo-Reel {
  background: #151515 !important;
  border: 1px solid #2f2f2f !important;
}

#window-Demo-Reel .window-content {
  background: #151515 !important;
}

/* ============================================================
   DEMO REEL 
   ============================================================ */

.demo-player-shell {
  display: flex;
  flex-direction: column;
  background: #000;
  height: 100%;
  min-height: 420px;
  position: relative;
}

.demo-video-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.demo-video-area video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Video title overlay */
.demo-video-title {
  position: absolute;
  top: 16px;
  left: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 5;
}

/* Playlist sidebar */
.demo-playlist {
  width: 240px;
  background: #1a1a1a;
  border-left: 1px solid #333;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.demo-playlist-header {
  padding: 14px 16px;
  border-bottom: 1px solid #333;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-playlist-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #222;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.demo-playlist-item:hover {
  background: #252525;
  color: white;
}

.demo-playlist-item.active {
  background: #2a2a2a;
  color: #8ab4f8;
  border-left: 3px solid #8ab4f8;
}

.demo-playlist-item .pl-num {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  width: 20px;
  text-align: center;
}

.demo-playlist-item.active .pl-num {
  color: #8ab4f8;
}

/* Controls bar */
.demo-controls {
  height: 48px;
  background: #1a1a1a;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.demo-ctrl-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.demo-ctrl-btn:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.demo-progress {
  flex: 1;
  height: 4px;
  background: #444;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.demo-progress-fill {
  height: 100%;
  background: #8ab4f8;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.demo-time {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  min-width: 80px;
  text-align: right;
}
@media (max-width: 768px) {
  .demo-playlist {
    width: 180px;
  }
}

