body {
  background: #f7f7f7;
  color: #222;
}

.header {
  background: linear-gradient(90deg, #ffffff 0%, #fdf2f4 100%);
  border-bottom: 1px solid #ececec;
}

.filter-chip {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #333;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: #e51b2c;
  color: #e51b2c;
}

.filter-chip.active {
  background: linear-gradient(90deg, #e51b2c 0%, #00a7c8 100%);
  color: #fff;
  border-color: transparent;
}

.video-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}

.video-media-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f0f0f0;
  overflow: hidden;
}

.video-thumb,
.preview-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  padding: 14px 14px 6px;
  min-height: 62px;
}

.video-playlists {
  padding: 0 14px 14px;
  font-size: 12px;
  color: #777;
}

@media (max-width: 991.98px) {
  .video-media-wrap {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .video-media-wrap {
    height: 190px;
  }
}

.preview-frame {
  pointer-events: none;
}

.video-media-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.video-thumb,
.preview-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  object-fit: cover;
}

.preview-frame {
  display: none;
  pointer-events: none;
}

/* BOTON DROPDOWN */
.filter-dropdown-btn {
  background: linear-gradient(90deg, #e51b2c 0%, #00a7c8 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px;
  font-weight: 600;
}

/* ITEMS DROPDOWN */
.dropdown-menu {
  border-radius: 15px;
}

.dropdown-item {
  border-radius: 10px;
  margin-bottom: 5px;
  transition: 0.2s;
}

.dropdown-item.active {
  background: linear-gradient(90deg, #e51b2c 0%, #00a7c8 100%);
  color: #fff;
}

.dropdown-item:hover {
  background: #f5f5f5;
}

.dropdown-item.active::after {
  content: '✔';
  float: right;
}
