* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #0b0b0b;
  color: white;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  color: #aaa;
  margin-top: 0.5rem;
}

.about {
  max-width: 700px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}

.videos {
  padding: 3rem 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.video {
  aspect-ratio: 9 / 16;
  background: black;
  border-radius: 14px;
  overflow: hidden;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cta {
  text-align: center;
  padding: 3rem 1rem;
}

.cta a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.8rem;
  background: white;
  color: black;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* or adjust */
  text-align: center;
}

.coming-soon h1 {
  font-size: 2rem;
}
