body {
  margin: 0;
  background: radial-gradient(circle at center, #1c1c1c 0%, #0a0a0a 100%);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff007f;
  border-radius: 25px;
  box-shadow: 0 0 30px #ff007faa, inset 0 0 10px #ff007f55;
  max-width: 850px;
  width: 90vw;
  animation: fadeIn 1.2s ease-out;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ff007f;
  text-shadow: 0 0 8px #ff007f, 0 0 15px #ff66a5;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #fff;
  box-shadow: 0 0 20px #ff007f88;
  animation: slideIn 1.5s ease-out;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.caption {
  margin-top: 15px;
  font-size: 1em;
  color: #ddd;
  letter-spacing: 0.5px;
  text-shadow: 0 0 3px #ff007f88;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}