.report-video-section {
  margin-top: 60px;
  margin-bottom: 70px;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  border-left: 5px solid #024f9a;
  padding-left: 15px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0;
  letter-spacing: -0.025em;
}

.video-container {
  max-width: 950px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.5s ease;
}

.video-wrapper:hover .video-image {
  transform: scale(1.1);
}

.video-wrapper:hover .video-overlay {
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.video-icon-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #024f9a 0%, #0575e6 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  box-shadow: 0 15px 35px rgba(2, 79, 154, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-icon i {
  color: white;
  font-size: 36px;
  margin-left: 8px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #024f9a;
  border-radius: 50%;
  z-index: 1;
  animation: ripple-effect 2.5s infinite;
  opacity: 0.5;
}

@keyframes ripple-effect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.video-link:hover .video-icon {
  background: linear-gradient(135deg, #0575e6 0%, #021b79 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 20px 45px rgba(5, 117, 230, 0.6);
}

/* Specific styling for Facebook */
.video-link[data-type='facebook'] .video-icon {
  background: linear-gradient(135deg, #1877f2 0%, #0c4da3 100%);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.5);
}

.video-link[data-type='facebook'] .ripple {
  background-color: #1877f2;
}

.video-link[data-type='facebook']:hover .video-icon {
  background: linear-gradient(135deg, #0e56b4 0%, #083c81 100%);
}

.video-caption {
  text-align: center;
  margin-top: 25px;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}
