.responsive-video {
  width: 100%;         /* Makes the video take up the full width of its container */
  max-width: 600px;    /* Optional: Ensures it doesn’t get too big on larger screens */
  height: auto;        /* Maintains the aspect ratio */
  display: block;      /* Avoids inline element spacing issues */
}
