/* SECTION */
.lux-video-section {
  position: relative;
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.lux-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.lux-video-section .container {
  position: relative;
  z-index: 2;
}

.lux-subtitle {
  letter-spacing: 4px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.lux-title {
  font-size: 42px;
  font-weight: 600;
}

.lux-title span {
  color: #fff;
}

/* PLAY BUTTON */
.lux-video-trigger {
  margin-top: 40px;
  cursor: pointer;
}

.lux-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 28px;
  color: #fff;
  transition: 0.3s ease;
  position: relative;
}

/* pulse animation */
.lux-play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.lux-play-btn:hover {
  background: #fff;
  color: #000;
}

/* MODAL */
.lux-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lux-video-modal.active {
  display: flex;
}

/* VIDEO BOX */
.lux-video-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.4s ease;
}

.lux-video-content iframe {
  width: 100%;
  height: 100%;
}

/* CLOSE BUTTON */
.lux-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-close-btn:hover {
  background: #fff;
  color: #000;
  transform: rotate(90deg);
}

/* animation */
@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* MOBILE */
@media (max-width: 768px) {
  .lux-title {
    font-size: 28px;
  }

  .lux-play-btn {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }
}