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

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(ellipse at bottom, #0b0f1a 0%, #000 100%); /* night sky */
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Star field background */
body::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent url("https://www.transparenttextures.com/patterns/stardust.png") repeat;
  background-size: 600px 600px;
  animation: drift 120s linear infinite;
  opacity: 0.5;
  z-index: 0;
}

@keyframes drift {
  from { transform: translate(0,0); }
  to { transform: translate(-300px,-300px); }
}

/* Headings */
h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #60a5fa; /* runway blue */
  margin-bottom: 0.3rem;
  text-shadow: 0 0 12px rgba(96,165,250,0.7);
  z-index: 1;
  position: relative;
}

p {
  font-size: 1.2rem;
  color: #9ca3af; /* cockpit gray */
  margin-bottom: 2rem;
  letter-spacing: 1px;
  z-index: 1;
  position: relative;
}

/* Video */
figure {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 0 20px rgba(59,130,246,0.6); /* glow */
  z-index: 1;
}

iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}