* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Fira Sans', sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(5vh, 40px) min(4vw, 32px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  inset: -2%;
  border-radius: 18px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), rgb(173 173 173 / 95%));
  filter: blur(20px);
  opacity: 0.45;
  z-index: 0;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.video-wrapper video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

@keyframes glowPulse {
  0% {
    opacity: 0.35;
    transform: scale(0.98);
  }
  100% {
    opacity: 0.55;
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .container {
    padding: 12px;
  }

  .video-wrapper {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .video-wrapper video {
    border-radius: 10px;
  }
}
.play-toggle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: transparent;
  border: none;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: opacity .2s ease;
}

