.work-section {
  background: #ffffff;
}

.work-video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.work-section.premium {
  background: linear-gradient(180deg, #fff9f1 0%, #ffffff 100%);
}

.premium-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0b337, #f9d470);
  color: #2b1800;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(240, 180, 55, 0.22);
}

.work-video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.work-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-video-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s;
}

.work-video-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.work-video-card p {
  font-size: 14px;
  opacity: 0.8;
}

.work-video-card:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}
