body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

/* Generic button styling */
.btn {
  display: inline-block;
  padding: 15px 28px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}

/* Video wrapper (prevents iframe overlap) */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  margin: 12px 0;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
