* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgba(0, 0, 0, 0.8);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.2); /* Glass effect */
  backdrop-filter: blur(10px); /* Glass blur */
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}

.video-player {
  position: relative;
  width: 100%;
  background: black;
  border-radius: 10px;
}

video {
  width: 100%;
  border-radius: 10px;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

button {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 20px;
}

button:hover {
  background: rgba(255, 255, 255, 0.6);
}

.preview {
  width: 100px;
  height: 56px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 5px;
}

/* Responsive design */
@media screen and (max-width: 600px) {
  .video-container {
    width: 100%;
    padding: 10px;
  }
}
