.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #0f172a; /* dark premium look */
}

/* Container keeps 360x640 ratio */
.video-container {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16; /* 360x640 portrait */
  background: black;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Video fits perfectly */
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .video-container {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .video-container {
    max-width: 260px;
  }
}
