/* StreamVerse Component Overrides & Mobile Bottom Dock */

/* Dark Crimson Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #150103;
}
::-webkit-scrollbar-thumb {
  background: #3d050a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF1E27;
}

/* Horizontal Row Scroll Container */
.net-row-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  padding-top: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #3d050a #150103;
}

/* Top Navbar Header */
.clay-nav {
  background: linear-gradient(180deg, rgba(21, 1, 3, 0.95) 0%, rgba(21, 1, 3, 0.7) 70%, rgba(21, 1, 3, 0) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 30, 39, 0.1);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.clay-nav.scrolled {
  background-color: #170104 !important;
  border-bottom: 1px solid rgba(255, 30, 39, 0.25);
}

/* Hero Vignette Overlays */
.net-hero-gradient-bottom {
  background: linear-gradient(0deg, #150103 0%, rgba(21, 1, 3, 0.85) 30%, rgba(21, 1, 3, 0) 100%);
}

.net-hero-gradient-left {
  background: linear-gradient(90deg, #150103 0%, rgba(21, 1, 3, 0.9) 40%, rgba(21, 1, 3, 0.5) 70%, rgba(21, 1, 3, 0) 100%);
}

/* StreamVerse Card & Poster Image */
.net-card {
  position: relative;
  background-color: #240306;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 30, 39, 0.15);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.net-card:hover {
  transform: translateY(-4px);
  z-index: 20;
  border-color: rgba(255, 30, 39, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 30, 39, 0.25);
}

.video-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 9;
  background-color: #1a0204;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.net-card:hover .video-card-thumb img {
  transform: scale(1.06);
}

/* Play Button in Bottom Right (Like StreamVerse Image Reference) */
.play-icon-br {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FF1E27;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 30, 39, 0.7);
  z-index: 10;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.net-card:hover .play-icon-br {
  transform: scale(1.15);
  background: #FF3B43;
}

/* Mobile Bottom Navigation Dock */
.mobile-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(25, 2, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 30, 39, 0.2);
  padding: 6px 12px 10px 12px;
}

/* Admin Sidebar Layout Rules */
.admin-layout-wrapper {
  display: flex;
  min-height: calc(100vh - 64px);
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #190204;
  border-right: 1px solid rgba(255, 30, 39, 0.15);
  display: flex;
  flex-col;
  transition: all 0.3s ease;
}

.admin-main-content {
  flex-grow: 1;
  min-w: 0;
  padding: 2rem;
  background: #120103;
}

/* Payment Modal Backdrop */
.modal-backdrop {
  background: rgba(10, 0, 2, 0.88);
  backdrop-filter: blur(14px);
}

/* Plyr Player Red Accent Overrides */
.plyr--full-ui input[type=range] {
  color: #FF1E27 !important;
}
.plyr__control--overlaid {
  background: #FF1E27 !important;
}
.plyr__control:hover {
  background: #FF1E27 !important;
}
.plyr__menu__container [role=menuitemradio][aria-checked=true] :before {
  background: #FF1E27 !important;
}


