.video-card {
  border-radius: 24px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#playOverlay {
  transition: all 0.3s ease;
}

#playOverlay:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card:hover #playOverlay {
  opacity: 0.95;
}

/* MOBILE MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

/* HEADER */
.mobile-header span {
  font-size: 22px;
  cursor: pointer;
}

/* ITEMS */
.mobile-item {
  border-bottom: 1px solid #eee;
}

.mobile-title {
  padding: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

/* ACTIVE */
.mobile-submenu.active {
  display: block;
}
