/* =========================================================
   Badminton Video Vault – custom styles
   Base: Bootstrap 5.3
   ========================================================= */

/* ---- Layout ---- */
body {
  background-color: #f8f9fa;
}

/* ---- Navbar ---- */
.navbar-brand {
  letter-spacing: 0.02em;
}

/* ---- Cards ---- */
.video-card {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.video-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

/* ---- Video player ---- */
video {
  background: #000;
  display: block;
}

/* ---- Stat icon circle ---- */
.icon-circle {
  flex-shrink: 0;
}

/* ---- Badge overflow ---- */
.badge {
  font-weight: 500;
}

/* ---- Pagination ---- */
.pagination .page-link {
  border-radius: 0.375rem;
  margin: 0 2px;
}

/* ---- Utility ---- */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
