.video-tabber-bg {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1140px) {
  @supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
    .video-tabber-bg {
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
  }
}
.video-tabber-bg::before {
  content: '';
  position: absolute;
  top: -90px;
  left: -90px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(29, 79, 216, 0.32), transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.video-tabber-bg .wrapper {
  position: relative;
  z-index: 1;
}
.video-tabber-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.video-tabber-left {
  flex: 0 0 60%;
}
.video-tabber-right {
  flex: 0 0 40%;
}
.video-tabber-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}
.video-embed-wrapper {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(255, 255, 255, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height:100%!important;
  width:100%!important;
  min-width:300px;
}
.video-embed-wrapper iframe,
.video-embed-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}
.video-tab {
  background: transparent;
  border: 1px solid #ffffff33;
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  font-size: 16px;
}
.video-tab:hover {
  background: rgba(27, 79, 216, 0.2);
  border-color: #1b4fd8;
}
.video-tab.active {
  background: #1b4fd8;
  border-color: #1b4fd8;
  color: #fff;
}
.video-tab-content {
  display: none;
  width: 100%;
}
.video-tab-content.active {
  display: block;
}
.video-tab-content video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.video-text-content {
  display: none;
}
.video-text-content.active {
  display: block;
}
.video-text-content,
.video-text-content * {
  color: #fff !important;
}
@media (max-width: 768px) {
  .video-tabber-grid {
    flex-direction: column;
  }
  .video-tabber-left,
  .video-tabber-right {
    flex: 1 1 100%;
  }
}