
/* Video Timeline */
.video-timeline-wrapper {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.timeline-track-container {
  display: flex;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.timeline-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.free-section {
  width: 30%; /* Represents the free portion */
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 240, 160, 0.05);
}

.locked-section {
  flex-grow: 1;
  background: rgba(20, 20, 25, 0.6);
  color: var(--text-secondary);
}

.timeline-progress-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(0, 240, 160, 0.2), rgba(0, 240, 160, 0.5));
  box-shadow: 0 0 15px rgba(0, 240, 160, 0.3);
  transition: width 0.1s linear;
  z-index: 1;
  border-right: 2px solid var(--neon-green);
}

.section-label-overlay {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.locked-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 5px,
    rgba(255, 255, 255, 0.03) 5px,
    rgba(255, 255, 255, 0.03) 10px
  );
}

.free-section .section-label-overlay {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 240, 160, 0.4);
}

.locked-section .section-label-overlay i {
  color: var(--neon-purple);
}
