:root {
  --bg-primary: #000000;
  --bg-secondary: #1b1b1b;
  --bg-card: #111111;
  --bg-hover: #222222;
  --orange: #ff9900;
  --orange-hover: #ffaa33;
  --orange-dark: #cc7a00;
  --text-primary: #ffffff;
  --text-secondary: #b5b5b5;
  --text-muted: #7a7a7a;
  --border: #2b2b2b;
  --header-height: 72px;
  --max-width: 1400px;
  --radius: 4px;
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input {
  font-family: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: #000;
  border-bottom: 1px solid var(--border);
}

.header-top-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.drawer-toggle {
  display: none;
  flex-shrink: 0;
}

.header-search-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.search-form {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 520px;
}

@media (max-width: 1050px) {
  .header-top-inner {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 10px 0;
    row-gap: 10px;
    column-gap: 10px;
  }

  .drawer-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
  }

  .header-search-area {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
  }

  .search-form {
    max-width: none;
  }
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  border-color: rgba(255, 153, 0, 0.25);
}

.hamburger-lines {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines span {
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.logo span {
  display: inline-block;
}

.logo-mark {
  color: #fff;
}

.logo-hub {
  color: #000;
  background: var(--orange);
  border-radius: 6px;
  padding: 3px 10px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: #2b2b2b;
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.search-input:focus {
  border-color: rgba(255, 153, 0, 0.8);
  background: #333;
}

.search-btn {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdbdbd;
}

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

.header-subnav {
  border-bottom: 1px solid var(--border);
  background: #000;
}

.header-subnav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-subnav-inner::-webkit-scrollbar {
  display: none;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 4px;
  border-bottom: 3px solid transparent;
}

.nav-item .nav-caret {
  margin-left: 6px;
  opacity: 0.9;
  transform: translateY(1px);
}

.nav-item:hover {
  border-bottom-color: rgba(255, 153, 0, 0.35);
}

.nav-item.active {
  border-bottom-color: var(--orange);
}

.main-content {
  padding: 20px 0 40px;
  min-height: calc(100vh - var(--header-height) - 120px);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::before {
  content: "🌐";
  font-size: 1rem;
  color: #2a7cff;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 768px) {
  .search-input {
    padding: 10px 16px 10px 44px;
  }

  .video-grid {
    gap: 10px;
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  max-width: 100%;
  min-width: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.15s ease;
}

.video-card-link {
  display: block;
  color: inherit;
  flex: 1 1 auto;
}

.video-card-link:hover {
  color: inherit;
}

.video-card:hover {
  transform: translateY(-1px);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

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

.video-hd {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--orange);
  color: #000;
  padding: 1px 5px;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
}

.video-info {
  padding: 10px 4px 8px;
}

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

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

.video-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.video-views::after {
  content: "•";
  margin-left: 8px;
}

.video-rating {
  color: var(--orange);
  font-weight: 600;
}

.video-uploader {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 4px;
  padding: 0 4px 8px;
  min-width: 0;
  overflow: hidden;
}

.video-uploader .actor-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.4;
  max-height: 1.4em;
}

.video-uploader .actor-chip {
  flex-shrink: 0;
  display: inline-block;
  color: var(--text-secondary);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-uploader .actor-chip + .actor-chip::before {
  content: "·";
  margin: 0 4px;
  color: var(--text-muted);
  pointer-events: none;
}

.video-uploader .actor-chip:hover {
  color: var(--orange);
}

.video-uploader .actor-chip.is-hidden {
  display: none;
}

.video-uploader .actor-more {
  flex-shrink: 0;
  margin-left: 2px;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 100%;
  margin-top: 8px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.pagination a,
.pagination button,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.pagination a:hover,
.pagination a.active,
.pagination button:hover,
.pagination button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.filter-bar h1 {
  font-size: 1.3rem;
  font-weight: 600;
}

.filter-options {
  display: flex;
  gap: 8px;
}

.filter-select {
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

.search-header {
  margin-bottom: 20px;
}

.search-header h1 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.search-header h1 strong {
  color: var(--text-primary);
}

.search-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.watch-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}

@media (max-width: 1024px) {
  .watch-layout {
    grid-template-columns: 1fr;
  }
}

.video-player-wrap {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  width: 100%;
  min-height: 220px;
}

.video-player-wrap .MacPlayer,
.video-player-wrap .MacPlayer table,
.video-player-wrap #playleft,
.video-player-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
}

.watch-info {
  margin-top: 16px;
}

.watch-title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.watch-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.stat-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-item strong {
  color: var(--text-primary);
}

.uploader-bar {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.uploader-bar .actor-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.actor-sep {
  color: var(--text-muted);
  font-weight: 400;
}

.uploader-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

.uploader-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.watch-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}

.sidebar-videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-video {
  display: flex;
  gap: 10px;
}

.sidebar-thumb-wrap {
  position: relative;
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

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

.sidebar-duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 0.7rem;
}

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

.sidebar-title-text {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.playlist-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.playlist-bar a {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.playlist-bar a.active,
.playlist-bar a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Logo */
.site-logo-img {
  height: auto;
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.site-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  line-height: 1.2;
}

.logo img,
.logo .site-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 320px;
  max-height: none;
  object-fit: contain;
}

.drawer-head .site-logo-img {
  height: 28px;
  max-width: 120px;
}

.drawer-head .site-logo-text {
  font-size: 1rem;
  max-width: 160px;
}

.footer-brand .site-logo-img {
  height: 30px;
  max-width: 130px;
}

.footer-brand .site-logo-text {
  font-size: 1.1rem;
}

/* 5-column grid on desktop */
@media (min-width: 1200px) {
  .ph-grid-5 .video-card {
    flex: 0 0 calc((100% - 56px) / 5);
    max-width: calc((100% - 56px) / 5);
  }
}

@media (max-width: 768px) {
  .video-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
}

.section-gap {
  margin-top: 32px;
}

.tag-row {
  margin-bottom: 18px;
}

.tag.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 153, 0, 0.1);
}

.text-orange {
  color: var(--orange) !important;
}

/* Thumb hover preview */
.video-thumb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

/* Category wall */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.category-grid-sm {
  margin-bottom: 24px;
}

.category-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: transform 0.3s, filter 0.3s;
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.category-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 520px;
  background: #1b1b1b;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  z-index: 1100;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  display: block;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.dropdown-item:hover {
  background: var(--bg-hover);
  color: var(--orange);
}

.dropdown-thumb {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  background: #333 center/cover no-repeat;
  flex-shrink: 0;
}

/* Side drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1998;
}

.drawer-overlay.open {
  display: block;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #1b1b1b;
  border-right: 1px solid var(--border);
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.side-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.drawer-close {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.drawer-nav a {
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 600;
}

.drawer-nav a:hover {
  background: var(--bg-hover);
  color: var(--orange);
}

/* Breadcrumb */
.breadcrumb {
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumb .sep {
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--text-secondary);
}

/* Watch actions */
.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.action-btn:hover,
.action-btn.active {
  border-color: var(--orange);
  color: var(--orange);
}

.quality-badge {
  background: var(--orange);
  color: #000 !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

.episode-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ep-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.ep-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.ep-btn-next {
  margin-left: auto;
}

/* Filter panel */
.filter-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.filter-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.filter-row:last-child {
  border-bottom: none;
}

.filter-label {
  width: 60px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-top: 4px;
}

.filter-scroll {
  flex-wrap: wrap;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Actor grid */
.actor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.actor-card {
  text-align: center;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.actor-card:hover {
  border-color: var(--orange);
}

.actor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: #333 center/cover no-repeat;
}

.actor-avatar-lg {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background: #333 center/cover no-repeat;
  flex-shrink: 0;
  display: block;
}

.actor-avatar-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
  color: var(--orange);
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  user-select: none;
}

.actor-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.actor-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.actor-header {
  margin-bottom: 24px;
  gap: 20px;
  align-items: center;
}

.actor-profile {
  min-width: 0;
}

.actor-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.actor-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.actor-stats li::marker {
  content: "";
}

.actor-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.actor-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.actor-blurb {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 720px;
}

@media (max-width: 600px) {
  .actor-header {
    gap: 14px;
  }
  .actor-avatar-lg {
    width: 84px;
    height: 84px;
  }
}

/* Comments */
.comments-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.comment-form textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  resize: vertical;
  margin-bottom: 10px;
}

.comment-submit {
  padding: 8px 20px;
  background: var(--orange);
  color: #000;
  border-radius: var(--radius);
  font-weight: 700;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.comment-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.comment-meta strong {
  color: #fff;
  margin-right: 8px;
}

.comment-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Footer enhanced */
.footer-brand {
  width: 100%;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 400px;
}

/* Mobile bottom hint */
@media (max-width: 768px) {
  .nav-dropdown-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    min-width: auto;
  }

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

  .watch-actions {
    width: 100%;
  }

  .action-btn {
    flex: 1;
    justify-content: center;
  }
}
