.expo-video-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}
.expo-video-modal video {
  width: auto;
  height: 90vh;
  max-width: 95vw;
  border-radius: 12px;
}
.expo-video-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}
.expo-video-sound {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 70px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: .25s;
  z-index: 10;
}
.expo-video-sound:hover {
  background: rgba(255,255,255,0.22);
}
@media (max-width: 768px) and (orientation: portrait) {
  .expo-video-modal video {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
  }
}
