body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-player {
  width: 100%;
  background-color: black;
  border-bottom: 2px solid #1e90ff;
}

.controls {
  display: flex;
  align-items: center;
  background-color: #222;
  padding: 8px;
  border-top: 2px solid #1e90ff;
}

.control-btn {
  background: none;
  border: none;
  color: #1e90ff;
  font-size: 18px;
  cursor: pointer;
  margin-right: 10px;
  transition: color 0.3s;
}

.control-btn:hover {
  color: #4facff;
}

.seek-container {
  flex-grow: 1;
  margin: 0 10px;
}

.seek-bar {
  width: 100%;
  background: #1e90ff;
  cursor: pointer;
  appearance: none;
  height: 4px;
  border-radius: 2px;
}

.seek-bar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: #1e90ff;
  border-radius: 50%;
  cursor: pointer;
}

.volume-bar {
  width: 100px;
  background: #1e90ff;
  cursor: pointer;
  appearance: none;
}

.volume-bar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: #1e90ff;
  border-radius: 50%;
  cursor: pointer;
}
