.qlc-container {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--mp56));
  max-height: 80vh;
  overflow: hidden;
  border-radius: var(--border-radius-24);
  margin-top: var(--mp32);
  margin-bottom: var(--mp56);
}

.qlc-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qlc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(282.95deg, rgba(38, 15, 70, 0) 1.56%, #260F46 102.58%);
  z-index: 1;
}

.qlc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--mp48);
  text-align: center;
  gap: var(--mp16);
}

.qlc-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mp16);
  cursor: pointer;
  transition: background 0.3s ease;
}

.qlc-play-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.qlc-play-btn svg {
  margin-left: 4px;
}

.qlc-title {
  color: #fff;
  margin: 0;
  font-family: var(--font-canela) !important; 
}

.qlc-subtitle {
  color: #fff;
  margin: 0;
}

.qlc-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 160%;
}

.qlc-text p {
  margin: 0;
}

.qlc-btn {
  margin-top: var(--mp16);
  background: #EF4444 !important;
  padding: var(--mp10) var(--mp28);
  color: #fff;
  border: none;
}
.qlc-btn:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .qlc-content {
    padding: var(--mp32);
  }
}

@media (max-width: 768px) {
  .qlc-container {
    height: 480px;
    max-height: 480px;
    margin-top: var(--mp16);
  }

  .qlc-play-btn {
    width: 52px;
    height: 52px;
  }

  .qlc-btn {
    padding: var(--mp12) var(--mp32);
  }
}

@media (max-width: 640px) {
  .qlc-container {
    height: 440px;
    max-height: 440px;
    border-radius: var(--border-radius-12, 12px);
  }

  .qlc-content {
    padding: var(--mp20) var(--mp16);
    gap: var(--mp12);
    justify-content: flex-end;
    padding-bottom: var(--mp32);
  }

  .qlc-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
    line-height: 1.25 !important;
  }

  .qlc-subtitle {
    font-size: clamp(0.95rem, 3.8vw, 1.3rem) !important;
    line-height: 1.4 !important;
  }

  .qlc-text {
    font-size: clamp(0.85rem, 3.2vw, 1rem) !important;
    line-height: 1.5 !important;
  }

  .qlc-btn {
    padding: var(--mp10) var(--mp20);
    font-size: 0.9rem !important;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .qlc-container {
    height: 420px;
    max-height: 420px;
    border-radius: 10px;
  }

  .qlc-content {
    padding: var(--mp16) var(--mp12);
    gap: var(--mp10);
  }

  .qlc-play-btn {
    width: 44px;
    height: 44px;
    margin-bottom: var(--mp12);
  }

  .qlc-title {
    font-size: clamp(1.2rem, 5vw, 1.7rem) !important;
  }

  .qlc-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem) !important;
  }

  .qlc-text {
    font-size: clamp(0.8rem, 3vw, 0.95rem) !important;
  }
}
