.filter-btn {
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 500;
  border: 1px solid #dee2e6;
  background: white;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: #f38431;
  color: white;
  border-color: #f38431;
}

.video-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
}

/* Play Icon Overlay */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.video-item:hover .play-icon {
  opacity: 1;
}

.video-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.video-caption {
  padding: 15px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

.filter-btn {
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 500;
  border: 1px solid #dee2e6;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn.active {
  background-color: #f38431;
  color: white;
  border-color: #f38431;
}

.gallery-item {
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h-large {
  min-height: 350px;
}

.h-small {
  min-height: 250px;
}

@media (max-width: 768px) {
  .h-large,
  .h-small {
    min-height: 225px;
  }
}

.btn-back-album {
  background: #f8f9fa;
  border: 1px solid #ddd;
  color: #333;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.25s ease;
  font-size: 14px;
}

.btn-back-album:hover {
  background: #212529;
  color: #fff;
  border-color: #212529;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
