/*
Theme Name: Redboss Beta 1.2.0
Theme URI: https://wranal.com
Author: wranal
Author URI: https://wranal.com
Description: Modern tube-style WordPress theme for adult video websites with grid layout, video player, and search functionality.
Version: 1.2.0
Text Domain: facetporn
*/

:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-hover: #2a2a2a;
  --text-primary: #f1f1f1;
  --text-secondary: #aaaaaa;
  --accent: #ff6600;
  --accent-hover: #ff6d29;
  --accent-dark: #cc5200;
  --text-tertiary: #888888;
  --border-color: #333;
  --header-height: 60px;
  --grid-gap: 16px;
  --card-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

/* Header */
.site-header {
  background: var(--bg-secondary);
  min-height: auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

/* Desktop: 2-row layout */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 28px;
}

.site-title a {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  padding-right: 8px;
  /* border-right: 1px solid var(--border-color); */
}

/* Navigation */
.main-nav {
  display: block;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  padding: 9px 34px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  border-radius: 1px;
  transition: color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
  display: block;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--bg-hover);
  border-top: 2px solid var(--button, var(--accent));
  transform: translateY(-1px);
}

.nav-link-active {
  color: var(--accent);
  background: rgba(117, 117, 117, 0.12);
  border-top: 2px solid var(--button, var(--accent));
}

/* Hide mobile nav header on desktop */
.mobile-nav-header {
  display: none;
}

/* Dropdown / Sub-menu */
.nav-links .menu-item {
  position: relative;
  list-style: none;
}

.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  list-style: none;
  padding: 4px 0;
  margin: 0;
  display: none;
  z-index: 1001;
}

.nav-links .menu-item-has-children:hover .sub-menu,
.nav-links .menu-item-has-children:focus-within .sub-menu {
  display: block;
}

.nav-links .sub-menu .menu-item {
  display: block;
}

.nav-links .sub-menu .nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 0;
  border-top: none;
  transform: none;
}

.nav-links .sub-menu .nav-link:hover {
  background: #000;
  color: #fff;
  border-top: none;
  transform: none;
}

/* Arrow indicator for items with children */
.nav-links .menu-item-has-children>.nav-link::after {
  content: '\25BC';
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.6;
}

/* Search */
.site-search {
  width: 70%;
  max-width: 600px;
  margin-left: auto;
  background: transparent;
  border-radius: var(--card-radius);
  padding: 0;
  position: relative;
}

.site-search form {
  display: flex;
  gap: 0;
  background: transparent;
  width: 100%;
}

.search-input {
  width: 100%;
  flex: 1;
  padding: 8px 14px;
  padding-right: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
}

.search-input:focus {
  border-color: var(--accent);
}

.search-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s;
  border-radius: 0 5px 5px 0px;
}

.search-btn:hover {
  color: #fff;
  background: #ff7b00;
}

/* Search suggestions dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.search-suggestions.visible {
  display: block;
}

.search-suggestion-item {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover {
  background: var(--accent);
  color: #000;
}

/* Search toggle button */
.search-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  order: 5;
}

.search-toggle-btn:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

.search-toggle-btn.active {
  color: var(--accent);
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, transform 0.3s ease;
  order: 2;
  flex-shrink: 0;
}

.hamburger-btn:hover {
  background: var(--bg-hover);
}

.hamburger-btn[aria-expanded="true"] {
  transform: translateX(4px);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
  margin: 3px 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Main content */
.site-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 8px 24px;
  min-height: 60vh;
  margin-top: 16px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.video-grid.home-grid {
  grid-template-rows: repeat(6, auto);
}

.video-grid.related-grid {
  grid-template-rows: repeat(2, auto);
}

/* Video Card */
.video-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-card-thumb a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-card-thumb a:hover .play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 64, 129, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.video-card-thumb a:hover .play-icon {
  opacity: 1;
}

.play-icon.is-loading {
  opacity: 1;
  background: rgba(255, 64, 129, 0.6);
  animation: iconSpin 1s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

@keyframes iconSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.play-icon.is-loading::after {
  display: none;
}

.play-icon.is-loading.is-loaded {
  animation: none;
  background: rgba(255, 64, 129, 0.9);
  border-color: transparent;
}

.play-icon.is-loading.is-loaded::after {
  display: block;
  animation: successPop 0.3s ease-out;
}

@keyframes successPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
}

/* Trailer preview */
.video-card-thumb video.trailer-preview {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  background: #000;
}

.video-card-thumb video.trailer-preview.is-playing {
  opacity: 1;
  visibility: visible;
  background: transparent;
}

/* Loading bar at bottom of thumbnail */
.video-card-thumb .loading-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--button, var(--accent));
  z-index: 20;
  transition: width 0.2s ease;
  pointer-events: none;
}

.video-card-thumb .loading-bar.is-loading {
  animation: loadingBar 1.5s ease-in-out infinite;
}

.video-card-thumb .loading-bar.is-done {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes loadingBar {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 60%;
    left: 20%;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

.video-card-body {
  padding: 10px;
}

.video-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.video-card-title a {
  color: var(--text-primary);
}

.video-card-title a:hover {
  color: var(--accent);
}

.video-card-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.video-card-likes,
.video-card-dislikes,
.video-card-views {
  display: flex;
  align-items: center;
  gap: 3px;
}

.thumbs-up-icon,
.thumbs-down-icon,
.eye-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.thumbs-up-icon::before {
  content: '\f164';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
}

.thumbs-down-icon::before {
  content: '\f165';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1;
}

.eye-icon::before {
  content: '\f06e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1;
}

/* Video Player Page */
.single-video-wrapper {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.video-player-section {
  flex: 1;
  min-width: 0;
}

.responsive-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.responsive-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ===== Fluid Player Fullscreen ===== */

/* Force 16:9 on Fluid Player layout */
.fp-video-layout {
  width: 100% !important;
  height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}

.fp-video-layout.fp-layout-fullscreen,
.fp-video-layout.fp-layout-fullscreen .fp-layout,
.fp-video-layout.fp-layout-fullscreen .fp-layout-inner {
  width: 100% !important;
  height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  max-height: none !important;
  max-width: none !important;
}

.fp-video-layout.fp-layout-fullscreen video {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: contain;
}

.fp-video-layout.fp-layout-fullscreen .fp-player-poster-image {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: contain;
}

/* Container fills entire viewport in fullscreen */
.responsive-player:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
}

.responsive-player:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
}

/* Full layout wrapper stretches to fill container in fullscreen */
.responsive-player:fullscreen .fp-video-layout,
.responsive-player:-webkit-full-screen .fp-video-layout {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
}

.responsive-player:fullscreen .fp-video-layout .fp-layout,
.responsive-player:-webkit-full-screen .fp-video-layout .fp-layout {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

.responsive-player:fullscreen .fp-video-layout .fp-layout .fp-layout-inner,
.responsive-player:-webkit-full-screen .fp-video-layout .fp-layout .fp-layout-inner {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

/* Video fills container in fullscreen */
.responsive-player:fullscreen video,
.responsive-player:-webkit-full-screen video {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* Keep 16:9 aspect-ratio after video loads (overrides first definition) */
.responsive-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.video-player-info {
  padding: 16px 0;
}

.video-player-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.video-player-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.video-player-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-hover);
  border: none;
  border-radius: 20px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.action-btn:hover {
  background: var(--border-color);
}

.action-btn .count {
  font-weight: 500;
}

/* Like/Dislike Button Animations */
.action-btn {
  position: relative;
  overflow: visible;
}

.action-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.action-btn .click-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 16px;
  color: var(--accent);
  animation: clickAnimation 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}

@keyframes clickAnimation {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -150%) scale(1.5);
  }
}

.action-btn .fa-thumbs-up.clicked,
.action-btn .fa-thumbs-down.clicked {
  animation: iconBounce 0.3s ease-in-out;
}

@keyframes iconBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* Thumbs up/down specific colors */
.action-btn.like-btn .fa-thumbs-up {
  color: var(--accent);
}

.action-btn.dislike-btn .fa-thumbs-down {
  color: var(--text-secondary);
}

.action-btn.dislike-btn:hover .fa-thumbs-down {
  color: var(--accent);
}

/* Video Details */
.video-details {
  padding: 0 0 16px;
}

.video-description {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  margin-top: -17px;
  white-space: pre-wrap;
}

.video-description .view-more {
  color: var(--accent);
  cursor: pointer;
  font-weight: 500;
}

.video-categories,
.video-tags,
.video-actor,
.video-published-date {
  margin-bottom: 12px;
  font-size: 14px;
}

.video-published-date {
  color: var(--text-secondary);
}

.video-categories strong,
.video-tags strong,
.video-actor strong {
  color: var(--text-primary);
  margin-right: 6px;
}

.video-published-date strong {
  color: var(--text-secondary);
  margin-right: 6px;
}

.video-categories a,
.video-tags a,
.video-actor a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-hover);
  border-radius: 3px;
  color: var(--text-secondary);
  margin: 2px 3px 2px 0;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}

.video-categories a:hover,
.video-tags a:hover,
.video-actor a:hover {
  background: var(--accent);
  color: #000;
}

/* Sidebar */
.video-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.sidebar-section {
  margin-bottom: 24px;
}

.sidebar-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

/* Related Videos */
.related-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.related-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 24px;
}

.load-more-btn {
  padding: 12px 40px;
  background: var(--button, var(--accent));
  color: #fff;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.load-more-btn:hover {
  background: var(--button-hover, var(--accent-hover));
  filter: brightness(0.9);
}

.load-more-btn.hidden {
  display: none;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  padding-top: 24px;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination li {
  display: inline;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  color: var(--text-primary);
  font-size: 14px;
  transition: background 0.2s;
}

.pagination a:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

.pagination .current,
.pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
}

/* Pagination (the_posts_pagination WordPress default) */
.posts-navigation {
  margin-top: 0;
  width: fit-content;
}

/* Search-page pagination — scoped to not break mobile nav */
.search .pagination .nav-links,
.search-page .pagination .nav-links,
.search-results .pagination .nav-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 32px 0 0;
  padding: 24px 0 0;
  width: fit-content;
  max-width: 100%;
}

.search .pagination .nav-links a,
.search-page .pagination .nav-links a,
.search-results .pagination .nav-links a {
  display: inline-flex !important;
  flex-shrink: 0;
  flex-basis: auto;
  align-items: center;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  color: var(--text-primary);
  font-size: 14px;
  transition: background 0.2s;
  text-decoration: none;
  width: auto !important;
}

.page-numbers:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

.page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 32px 24px;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Footer Navigation */
.footer-nav {
  width: 100%;
}

.footer-menu-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
}

.footer-menu-links .menu-item {
  position: relative;
}

.footer-menu-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-menu-links a:hover {
  color: var(--accent);
}

.footer-menu-links .menu-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--text-tertiary);
  border-radius: 50%;
  opacity: 0.5;
}

/* Footer Info */
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-copyright::after {
  content: '\2022';
  margin-left: 16px;
  font-size: 18px;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 24px 16px;
    margin-top: 32px;
  }

  .footer-menu-links {
    gap: 6px 16px;
  }

  .footer-menu-links a {
    font-size: 13px;
  }

  .footer-menu-links .menu-item:not(:last-child)::after {
    right: -8px;
  }

  .footer-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-copyright::after {
    display: none;
  }
}

/* Search Results / Archive */
.archive-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.archive-header h1 {
  font-size: 24px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .single-video-wrapper {
    flex-direction: column;
  }

  .video-sidebar {
    width: 100%;
  }

  .video-grid.home-grid {
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .video-sidebar .sidebar-section {
    display: none;
  }

  .site-header {
    height: 50px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-title a {
    font-size: 20px;
    padding-right: 0;
    border-right: none;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 2px;
    padding-bottom: 6px;
    width: 100%;
    flex-direction: row;
  }

  /* Top row: hamburger left, logo center, search right */
  .header-top {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    height: 15px;
    margin-top: 15px;
  }

  .site-title {
    order: 2;
    flex: 0 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    margin-top: 10px;
  }

  .hamburger-btn {
    display: flex;
    order: 1;
    flex: 0 0 auto;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }

  /* Search icon on the right */
  .site-search {
    display: flex;
    order: 3;
    flex: 0 0 auto;
    width: 104%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border-bottom: none;
    margin-left: -7px;
    margin-top: 20px;
    position: absolute;
    top: calc(80% + 0px);
    left: 0;
    right: 0;
    height: 40px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, background 0.5s ease;
    z-index: 1;
  }

  .site-search.search-open {
    align-items: center;
    background: #000;
    max-height: 60px;
    opacity: 1;
  }

  .site-search form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0 16px;
  }

  .site-search .search-input {
    display: none;
  }

  .site-search.search-open .search-input {
    display: block;
    width: 100%;
  }

  .site-search .search-btn {
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 0 5px 5px 0px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: 45px;
  }

  .site-search .search-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-50%);
  }

  .site-search .search-btn i {
    font-size: 20px;
  }

  .site-search .search-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .search-suggestions {
    position: fixed;
    top: 89px;
    left: 0;
    right: 0;
    max-height: 60vh;
    border-radius: 0;
  }

  /* Search toggle button */
  .search-toggle-btn {
    display: flex;
    order: 4;
    margin-left: auto;
    position: relative;
    z-index: 10;
  }

  .search-toggle-btn.active {
    color: var(--accent);
    opacity: 0.7;
  }

  /* Mobile drawer: slides from LEFT */
  .main-nav {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s ease, visibility 0.3s ease;
  }

  .main-nav.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 2000;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
  }

  .main-nav.open .nav-container {
    transform: translateX(0);
  }

  /* Mobile nav header with logo */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    min-height: 56px;
    width: 100%;
  }

  .mobile-nav-logo {
    display: flex;
    align-items: center;
  }

  .mobile-logo-text {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
  }

  .mobile-nav-header .custom-logo {
    display: block;
  }

  .mobile-nav-header .custom-logo img {
    max-height: 36px;
    width: auto;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 8px 0;
  }

  .nav-links a {
    padding: 0px 80px;
    font-size: 15px;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    transition: background 0.2s, padding-left 0.2s;

  }

  /* Staggered slide-in for menu items when drawer opens */
  .nav-links .menu-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav.open .nav-links .menu-item {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open .nav-links .menu-item:nth-child(1) {
    transition-delay: 0.05s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(2) {
    transition-delay: 0.10s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(3) {
    transition-delay: 0.15s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(4) {
    transition-delay: 0.20s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(5) {
    transition-delay: 0.25s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(6) {
    transition-delay: 0.30s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(7) {
    transition-delay: 0.35s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(8) {
    transition-delay: 0.40s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(9) {
    transition-delay: 0.45s;
  }

  .main-nav.open .nav-links .menu-item:nth-child(10) {
    transition-delay: 0.50s;
  }

  .nav-links a:hover {
    background: var(--bg-hover);
    color: var(--accent);
    transform: none;
  }

  /* Mobile: sub-menu as inline list, not dropdown */
  .nav-links .sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.15);
  }

  .nav-links .menu-item-has-children.open .sub-menu {
    display: block;
  }

  .nav-links .sub-menu .nav-link {
    padding-left: 40px;
    font-size: 14px;
  }

  .nav-links .menu-item-has-children>.nav-link::after {
    content: '▸';
  }

  .video-player-title {
    font-size: 18px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile nav close button */
.mobile-nav-close {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: var(--bg-hover);
}

@media (max-width: 768px) {
  .mobile-nav-close {
    display: block;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile touch support */
@media (max-width: 768px) {
  .video-card-thumb video.trailer-preview {
    pointer-events: auto;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== Taxonomy Page Templates (Actors, Categories, Tags) ===== */

.taxonomy-page-header {
  margin-bottom: 24px;
}

.taxonomy-page-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.taxonomy-page-header .actor-icon,
.taxonomy-page-header .category-icon,
.taxonomy-page-header .tags-icon {
  color: var(--accent);
  font-size: 24px;
}

/* Taxonomy Grid (Actors & Categories) */
.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.taxonomy-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.taxonomy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.taxonomy-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

.taxonomy-card:hover .taxonomy-card-thumb img {
  transform: scale(1.05);
}

.taxonomy-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  font-size: 32px;
}

.taxonomy-card-body {
  padding: 12px;
}

.taxonomy-card-body a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  min-height: 36px;
}

.taxonomy-card-body a:hover {
  color: var(--accent);
}

.taxonomy-card-icon {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.taxonomy-card-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.taxonomy-card-count {
  display: none;
  font-size: 12px;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Tags Page */
.tags-page-content {
  max-width: 1200px;
}

/* Generic static pages (DMCA, Privacy, Terms, Contact, About, ...) */
.static-page {
  max-width: 820px;
  margin: 0 auto;
}

.static-page-content.entry-content {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  word-wrap: break-word;
}

.static-page-content.entry-content>*+* {
  margin-top: 1em;
}

.static-page-content.entry-content h1,
.static-page-content.entry-content h2,
.static-page-content.entry-content h3,
.static-page-content.entry-content h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.6em;
}

.static-page-content.entry-content h2 {
  font-size: 22px;
}

.static-page-content.entry-content h3 {
  font-size: 18px;
}

.static-page-content.entry-content a {
  color: var(--accent);
  text-decoration: underline;
}

.static-page-content.entry-content ul,
.static-page-content.entry-content ol {
  padding-left: 1.4em;
}

.static-page-content.entry-content li {
  margin-bottom: 0.4em;
}

.static-page-content.entry-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5em 0;
  padding: 0.5em 1em;
  background: var(--bg-card);
  border-radius: 0 var(--card-radius, 8px) var(--card-radius, 8px) 0;
}

.static-page-content.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--card-radius, 8px);
}

.static-page-content.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.static-page-content.entry-content th,
.static-page-content.entry-content td {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  text-align: left;
}

.static-page-content.entry-content th {
  background: var(--bg-card);
  color: var(--text-primary);
}

.tags-description {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.tags-cloud-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  border: 1px solid var(--border-color);
}

.tag-chip:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tag-chip i {
  font-size: 12px;
  color: var(--accent);
  transition: color 0.2s ease;
}

.tag-chip:hover i {
  color: #000;
}

.tag-chip-name {
  flex: 1;
}

.tag-chip-count {
  display: none;
  font-size: 12px;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  padding: 2px 8px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.tag-chip:hover .tag-chip-count {
  background: rgba(0, 0, 0, 0.11);
  color: #000;
}

/* Empty state */
.taxonomy-empty {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .taxonomy-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .taxonomy-page-header h1 {
    font-size: 22px;
  }

  .tag-chip {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .taxonomy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================
   Video Sort Bar
   ============================================ */

/* === Desktop Sort Bar: Left Title + Right Buttons === */
.video-sort-bar--desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.video-sort-bar__title {
  font-size: 20px;
  font-weight: 700;
  color: #f1f1f1;
  letter-spacing: -0.3px;
  flex-shrink: 0;
  margin-bottom: 13px;
}

.video-sort-bar__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.video-sort-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: #1a1a1a;
  color: #999;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.video-sort-btn:hover {
  border-color: var(--button, var(--accent));
  color: #f1f1f1;
}

.video-sort-btn--active {
  background-color: var(--button, var(--accent));
  border-color: var(--button, var(--accent));
  color: #fff;
}

.video-sort-btn i {
  font-size: 14px;
}

/* === Mobile Sort Bar: Left Title + Right Dropdown === */
.video-sort-bar--mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.video-sort-bar__dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-sort-bar__label {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.video-sort-bar__select {
  background-color: #1a1a1a;
  color: #f1f1f1;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.video-sort-bar__select:hover,
.video-sort-bar__select:focus {
  border-color: var(--button, var(--accent));
}

.video-sort-bar__select option {
  background-color: #1a1a1a;
  color: #f1f1f1;
}

/* Responsive: show mobile dropdown, hide desktop buttons */
@media (max-width: 767px) {
  .video-sort-bar--desktop {
    display: none;
  }

  .video-sort-bar--mobile {
    display: flex;
  }

  .video-sort-bar__title {
    font-size: 18px;
  }
}

/* === Trending Section === */
.trending-section {
  margin-bottom: 24px;
}

.trending-section .view-more {
  display: block;
  margin: 16px auto 0;
  width: 500px;
  max-width: 100%;
  padding: 10px 28px;
  text-align: center;
  border-radius: 999px;
  background: var(--button, var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.trending-section .view-more:hover {
  background: var(--button-hover, var(--accent-hover));
  filter: brightness(0.9);
  transform: translateY(-1px);
}

/* === Custom Pagination === */
.custom-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 40px;
  padding: 20px 0;
}

.page-number,
.page-nav,
.page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
}

.page-number {
  background-color: #1a1a1a;
  color: #999;
  border: 1px solid #333;
}

.page-number:hover {
  border-color: var(--button, var(--accent));
  color: #f1f1f1;
}

.page-current {
  background-color: var(--button, var(--accent)) !important;
  border-color: var(--button, var(--accent)) !important;
  color: #fff !important;
  font-weight: 700;
}

.page-nav {
  background-color: var(--button, var(--accent));
  color: #fff;
  border: 1px solid #333;
  gap: 6px;
  padding: 0 14px;
  font-weight: 600;
}

.page-nav:hover {
  border-color: var(--button, var(--accent));
  color: #f1f1f1;
}

.page-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.page-dots {
  background: none;
  border: none;
  color: #666;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 4px;
}

.page-numbers-scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 6px;
}

/* Pagination responsive */
@media (max-width: 767px) {
  .custom-pagination {
    gap: 4px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .page-numbers-scroll {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 0;
  }

  .scroll-spacer {
    flex-shrink: 0;
    width: 1px;
    padding: 0 16px;
  }

  .page-numbers-scroll::-webkit-scrollbar {
    display: none;
  }

  .page-number {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 8px;
    flex-shrink: 0;
  }

  .page-nav {
    padding: 0 10px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .page-dots {
    flex-shrink: 0;
  }
}

/* Read More Button */
.read-more-btn {
  display: block;
  margin: 10px auto 0;
  padding: 6px 16px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.read-more-btn:hover {
  background: var(--accent);
  color: #000;
}

.video-description {
  line-height: 1.4;
  color: #ccc;
}

.description-short,
.description-full {
  word-wrap: break-word;
}

/* Latest Videos Sidebar Grid */
.latest-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.latest-videos-grid .video-card-title {
  font-size: 12px;
}

.latest-videos-grid .video-card-stats {
  font-size: 11px;
}

.latest-videos-grid .video-duration {
  font-size: 10px;
}

.latest-videos-grid .play-icon {
  width: 32px;
  height: 32px;
}

.latest-videos-grid .play-icon::after {
  border-width: 7px 0 7px 12px;
  margin-left: 2px;
}

.sidebar-video-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sidebar-video-thumb {
  flex-shrink: 0;
  width: 200px;
  height: 112px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.sidebar-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-video-info {
  flex: 1;
  min-width: 0;
}

.sidebar-video-info h4 {
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 1.3;
}

.sidebar-video-info h4 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-video-info h4 a:hover {
  color: #ff9100;
}

.sidebar-video-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #999;
}

.sidebar-stat {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Related Video Card Stats */
.video-card-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}

.video-card-views,
.video-card-likes,
.video-card-dislikes {
  display: flex;
  align-items: center;
  gap: 4px;
}
