/* Card Video */
.video-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Thumbnail */
.thumb-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.thumb-wrapper .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .thumb-wrapper .thumb-img {
  transform: scale(1.05);
}

/* Badge tanggal (gradasi tosca) */
.date-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Card body */
.video-card .card-body {
  padding: 0.75rem 1rem;
}
.video-card .card-title {
  font-size: 1rem;
  color: #333;
}
.video-card .card-text {
  font-size: 0.85rem;
  color: #555;
}

/* Breadcrumb */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Pagination (Bootstrap default) tweaked */
.pagination .page-link {
  color: #16a085;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  transition: background 0.3s ease;
}
.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #16a085, #1abc9c);
  color: #fff;
  border: none;
}
.pagination .page-link:hover {
  background: rgba(22,160,133,0.1);
}

/* Breadcrumb container styling */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Breadcrumb list styling */
.custom-breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 0.95rem;
}

/* Link item style */
.custom-breadcrumb .breadcrumb-item a {
  color: #1abc9c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #138f75;
  text-decoration: underline;
}

/* Active item style */
.custom-breadcrumb .breadcrumb-item.active {
  color: #333;
  font-weight: 600;
}

/* Card untuk player */
.video-detail-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Pastikan ratio rounded */
.detail-video-section .ratio {
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Styling judul & deskripsi */
.detail-video-section h3 {
  font-size: 1.75rem;
  color: #222;
}
.video-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Breadcrumb styling */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Tombol gradasi tosca */
.btn-tosca-gradient {
  background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 50px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.btn-tosca-gradient:hover {
    color: white;
  background: linear-gradient(135deg, #138f75 0%, #159d8e 100%);
  box-shadow: 0 6px 20px rgba(22,160,133,0.4);
}

/* Custom Pagination (sama seperti foto) */
.pagination-container {
  display: flex;
  justify-content: center;
}

.pagination-custom {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-custom li {
  list-style: none;
}

.pagination-custom a,
.pagination-custom span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Tombol Prev/Next */
.pagination-custom a {
  background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
  color: #ffffff;
}
.pagination-custom a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

/* Halaman Aktif */
.pagination-custom span {
  background: linear-gradient(135deg, #138f75 0%, #159d8e 100%);
  color: #ffffff;
}

/* Disabled */
.pagination-custom .disabled span,
.pagination-custom .disabled a {
  opacity: 0.5;
  pointer-events: none;
}
