/* -------- VIDEO EXPERIENCE SECTION -------- */
.video-experience {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 229, 255, 0.2);
  margin-top: 40px;
  background: black;
  aspect-ratio: 16/9;
}

.video-placeholder-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.video-wrapper:hover .video-poster {
  transform: scale(1.05);
  opacity: 0.6;
}

.play-btn-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--neon-cyan);
  color: var(--deep-ocean);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem; /* Adjusted for icon */
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse-ring 2s infinite;
}

.play-btn-pulse i {
  position: relative;
  left: 2px; /* Visual center for play icon */
  width: 32px;
  height: 32px;
}

.video-wrapper:hover .play-btn-pulse {
  transform: scale(1.1);
  background: var(--white);
  color: var(--neon-cyan);
}

.video-overlay-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
  z-index: 2;
  flex-wrap: wrap;
}

.vid-info-item {
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.vid-info-item i {
  width: 18px;
  height: 18px;
  color: var(--neon-cyan);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(0, 229, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

@media (max-width: 768px) {
  .video-wrapper {
    margin-top: 20px;
  }
  
  .play-btn-pulse {
    width: 60px;
    height: 60px;
  }
  
  .play-btn-pulse i {
    width: 24px;
    height: 24px;
  }
  
  .video-overlay-info {
    bottom: 15px;
    left: 15px;
  }
  
  .vid-info-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
