.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-player {
  width: 1140px;
  height: 400px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  background: #000;
}

@media (max-width: 1200px) {
  .video-player {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .video-player {
    height: 180px;
  }
}
