
.dfve-video-player {
  position: relative;
  width: 100%;
  height: var(--desktop-height);
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  overflow: hidden;
  margin-top: -30vh;
  margin-bottom: -7vh;
}

@media (max-width: 768px) {
  .dfve-video-player {
    height: var(--mobile-height);
  }
}

.dfve-video-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dfve-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  z-index: 1;
  display: none;
}

.dfve-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 12%;
}

.dfve-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  background-color: #00000082;
  padding: 2%;
  border-radius: 10px;
}

.dfve-overlay-content h2 {
  font-size: 3rem !important;
  margin-bottom: 20px;
  max-width: 900px;
    color: #ffffff;
}

.dfve-overlay-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  color: #ffffff;
}

.dfve-buttons {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.dfve-btn {
  padding: 16px 34px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 10px;
}

.dfve-btn.primary {
  background: #2f8fc1;
  color: #fff;
}

.dfve-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}
