/* SotekMach – Video showcase section */
section.video-showcase {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  background: linear-gradient(165deg, #060D1F 0%, #0B2447 48%, #122f5c 100%) !important;
  color: #fff !important;
}
.video-showcase-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.video-showcase-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 167, 206, 0.18) 0%, transparent 68%);
  pointer-events: none;
}
section.video-showcase .container {
  position: relative;
  z-index: 1;
}
.video-showcase-top {
  text-align: center !important;
  max-width: 720px;
  margin: 0 auto 48px;
}
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 151, 30, 0.14);
  border: 1px solid rgba(247, 151, 30, 0.35);
  color: #F7971E;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.video-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F7971E;
  box-shadow: 0 0 10px #F7971E;
  animation: videoPulse 2s infinite;
}
section.video-showcase h2 {
  color: #fff !important;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}
section.video-showcase h2 .text-gold {
  color: #F7971E !important;
}
.video-desc {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.video-cinema {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.video-cinema-glow {
  position: absolute;
  inset: 8% 4%;
  border-radius: 28px;
  background: radial-gradient(ellipse at center, rgba(247, 151, 30, 0.22) 0%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}
.video-cinema-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 5px rgba(247, 151, 30, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(11, 36, 71, 0.35);
}
.video-cinema-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 13, 31, 0.42);
  backdrop-filter: blur(2px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: pointer;
  border: none;
}
.video-play-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-play-ring {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(247, 151, 30, 0.45);
  animation: videoRingPulse 2.2s ease-out infinite;
}
.video-play-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F7971E, #d9820e);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  box-shadow: 0 12px 32px rgba(247, 151, 30, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-play-btn:hover .video-play-icon {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(247, 151, 30, 0.55);
}
.video-cinema-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 28px;
}
.video-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}
@keyframes videoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes videoRingPulse {
  0% { transform: scale(0.92); opacity: 0.9; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 768px) {
  section.video-showcase { padding: 72px 0 80px; }
  .video-cinema-meta { gap: 10px; }
  .video-meta-item { font-size: 0.82rem; padding: 7px 14px; }
  .video-play-icon { width: 62px; height: 62px; font-size: 1.3rem; }
  .video-play-ring { width: 78px; height: 78px; }
}
