.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.video-banner video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-banner .content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 40px;
  box-sizing: border-box;
  text-align: center;
}

.content > div:first-child {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.typed-text {
  display: inline;
  border-right: .1em solid #fff;
  white-space: nowrap;
  overflow: hidden;
}

.banner-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-buttons a {
  display: inline-block;
  padding: 10px 22px;
  background-color: #ffffff;
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-family: 'Poppins', sans-serif;
}

.banner-buttons a:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .content > div:first-child {
    font-size: 2rem;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .banner-buttons a {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
