.phone-video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 4rem 1rem;
}

.phone-frame-wrapper {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19.5; /* Real iPhone screen shape */
  overflow: hidden;
  border-radius: 55px 55px 65px 65px;
  border: 5px solid #00A3E4; /* Your blue outline */
  background: black;
}

.masked-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.iphone-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
