body {
  margin: 0;
  background-color: #141414;
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  width: 100vw;
  height: 100vh;
  background-color: black;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

video {
  width: 100%;
  height: 100%;
  background-color: black;
  object-fit: cover;
}

/* Controls */
.controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
}

.controls.hidden {
  opacity: 0;
  transform: translateY(100%);
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
}

.controls button {
  background-color: transparent;
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
  font-size: 20px;
  margin: 0 10px;
}

.controls button:hover {
  color: #e50914;
}

/* Time info (current and total) */
.time-info {
  font-size: 14px;
  margin: 0 10px;
}

/* Progress bar styling */
.progress-bar-wrapper {
  flex: 1;
  margin: 0 15px;
  position: relative;
}

.progress-bar {
  background-color: #555;
  height: 8px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.progress {
  background-color: #e50914;
  height: 100%;
  width: 0;
  border-radius: 5px;
}

.progress-circle {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Tooltip for showing time on hover */
.timestamp-tooltip {
  position: absolute;
  bottom: 20px;
  left: 0;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px;
  font-size: 12px;
  border-radius: 3px;
  display: none;
}

.volume-control input[type="range"] {
  width: 100px;
  cursor: pointer;
}

/* SPYCLI Logo Styling */
.spycli-logo {
  width: 50px; /* Adjust size as needed */
  margin-left: 15px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.spycli-logo:hover {
  opacity: 1; /* Full opacity on hover */
}

/* Animation for skip feedback */
.skip-feedback {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.skip-feedback.show {
  opacity: 1;
}
