/* ===== VIDEO SHOWCASE - DARK CINEMATIC CARD ===== */
.video-showcase-card {
  position: relative;
  background: linear-gradient(145deg, #1a1f26, #0f1419);
  border: 1px solid rgba(201, 164, 86, 0.4);
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  margin: 60px auto 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  overflow: hidden;
  animation: fadeUp 1s 1.3s both;
}

/* Decorative Glow */
.video-showcase-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201, 164, 86, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.video-showcase-content {
  position: relative;
  z-index: 2;
}

.showcase-header {
  margin-bottom: 24px;
}

.showcase-subtitle {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.9;
}

.showcase-separator {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.showcase-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 32px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.video-wrapper:hover {
  transform: scale(1.01);
  border-color: rgba(201, 164, 86, 0.3);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Play Button Overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.btn-play-custom {
  width: 100px;
  height: 100px;
  background: transparent;
  border: 4px solid rgba(255, 255, 255, 0.8);
  /* Circular border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  /* Adjusted size to fit circle */
  transition: all 0.3s ease;
  animation: pulse-scale 2s infinite;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.btn-play-custom i {
  margin-left: 8px;
  /* Visual center adjustment */
  color: #fff;
}

.video-play-overlay:hover .btn-play-custom {
  transform: scale(1.1);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 164, 86, 0.5);
}

.video-play-overlay:hover .btn-play-custom i {
  color: var(--gold);
}

@keyframes pulse-scale {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* ===== INTRO MODAL ===== */
.intro-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.intro-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.intro-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #1a1f26;
  border: 1px solid rgba(201, 164, 86, 0.4);
  box-shadow: 0 0 50px rgba(201, 164, 86, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-modal-overlay.active .intro-modal {
  transform: scale(1);
}

.intro-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.intro-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: rotate(90deg);
}

.intro-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.intro-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Unmute Overlay */
.intro-unmute-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.intro-unmute-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.btn-unmute {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid var(--gold);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  animation: pulse-gold 2s infinite;
}

.btn-unmute i {
  color: var(--gold);
  font-size: 1.4rem;
}

.btn-unmute:hover {
  background: var(--gold);
  color: #000;
}

.btn-unmute:hover i {
  color: #000;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 164, 86, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(201, 164, 86, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 164, 86, 0);
  }
}

.intro-footer {
  padding: 16px 24px;
  background: #0f1419;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.intro-notice:hover {
  color: var(--gold);
}

.intro-notice input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.btn-intro-close {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-intro-close:hover {
  background: var(--gold);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .video-showcase-card {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 576px) {
  .video-showcase-card {
    padding: 24px 16px;
    border-radius: 16px;
    margin-top: 40px;
  }

  .showcase-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .intro-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}