.video-banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 80%;
}

.banner-buttons {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 20px;
}

.mobile-banner {
    display: none;
    margin-top: -100px;
}

@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: flex;
    }

    .video-background {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    .banner-buttons {
        flex-direction: column;
        width: 80%;
        gap: 10px;
    }

    .banner-buttons a {
        width: 100%;
        text-align: center;
    }
}