:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.95);
  --color-orange: #f97316;
  --color-green: #10b981;
  --color-purple: #a855f7;
  --color-red: #ef4444;
  --color-blue: #3b82f6;
  --color-muted: #64748b;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --glass-blur: none;
  --glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
* {
  box-sizing: border-box;
}
body {
  background: #f1f5f9;
  color: var(--text-main);
  margin: 0;
  padding-top: 70px;
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
  min-width: 0;
  width: 100%;
  overflow-x: hidden;
}
#stars1, #stars2, #stars3, .shooting-star, .moon {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: transform 0.3s ease-in-out, background-color 0.3s;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(5px, 3%, 20px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 10px;
}
.site-logo {
  font-size: clamp(1rem, 5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 1px;
}
.logo-orange {
  color: var(--color-orange);
}
.logo-green {
  color: var(--color-green);
}
.search-wrapper {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
  position: relative;
}
.search-form {
  display: flex;
  width: 100%;
  position: relative;
}
.search-form input {
  width: 100%;
  padding: 10px 45px 10px 15px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.15);
}
.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 1rem;
}
.search-submit:hover {
  color: var(--color-orange);
}
.live-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: var(--glass-shadow);
  display: none;
  z-index: 1001;
  overflow: hidden;
  max-width: 100%;
}
.live-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px clamp(5px, 3%, 15px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s;
  gap: 10px;
}
.live-item:hover {
  background-color: rgba(249, 115, 22, 0.05);
}
.live-poster {
  width: clamp(30px, 10vw, 40px);
  height: auto;
  aspect-ratio: 2/3;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}
.live-info {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.live-title {
  font-weight: 600;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  margin-bottom: 4px;
  color: #0f172a;
}
.live-meta {
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  color: var(--text-muted);
}
.live-search-footer {
  background-color: #f8fafc;
  padding: 12px clamp(5px, 3%, 15px);
  text-align: center;
  font-weight: 600;
  font-size: clamp(0.75rem, 2.2vw, 0.9rem);
  border-top: 1px solid var(--border-color);
  word-break: break-word;
}
.live-search-footer a {
  color: var(--color-green);
}
.live-search-footer a:hover {
  color: var(--color-orange);
  text-decoration: underline;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(5px, 2vw, 15px);
  flex-shrink: 0;
}
.btn-adult-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  background-color: #ffffff;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn-adult-toggle:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}
.btn-adult-toggle.active {
  background-color: var(--color-red);
  color: #ffffff;
  border-color: var(--color-red);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}
.search-toggle,
.nav-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  cursor: pointer;
  padding: 4px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.search-toggle:hover,
.nav-toggle:hover {
  color: var(--color-orange);
}
.nav-menu {
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  flex-shrink: 0;
  align-items: center;
}
.nav-link {
  font-weight: 600;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-link:hover {
  color: var(--color-orange);
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--color-orange);
}
.breadcrumb a:hover {
  color: var(--color-green);
  text-decoration: underline;
}
@media(max-width: 768px) {
  body {
    padding-top: 60px;
  }
  .site-header {
    height: 60px;
  }
  .search-toggle,
  .nav-toggle {
    display: flex;
  }
  .search-wrapper {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px clamp(10px, 5%, 20px);
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    display: none;
    z-index: 1000;
  }
  .search-wrapper.show {
    display: block;
    animation: slideDown 0.2s ease-out forwards;
  }
  .nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px clamp(10px, 5%, 20px);
    gap: 15px;
    display: none;
    z-index: 999;
  }
  .nav-menu.show {
    display: flex;
    animation: slideDown 0.2s ease-out forwards;
  }
}
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(5px, 3%, 20px);
  min-width: 0;
  width: 100%;
}
.section-header {
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--color-green);
  padding-left: 15px;
}
.empty-list {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: var(--glass-shadow);
}
.empty-list i {
  font-size: 3rem;
  color: var(--color-orange);
}
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: calc(100vh - 250px);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  margin-top: 40px;
}
.glitch-text {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  position: relative;
  letter-spacing: 1px;
  color: var(--text-main);
}
.glitch-text::before,
.glitch-text::after {
  display: none;
}
.error-message {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--text-muted);
  margin-top: 15px;
  margin-bottom: 25px;
}
.spin {
  display: inline-block;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
.badge i {
  margin-right: 2px;
}
.badge--green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge--orange {
  background: rgba(249, 73, 22, 0.1);
  color: var(--color-orange);
  border: 1px solid rgba(249, 73, 22, 0.2);
}
.badge--purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.badge--red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.badge--blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.badge--gray {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.badge--solid-green {
  background: var(--color-green);
  color: #fff;
  border: 1px solid var(--color-green);
}
.badge--solid-blue {
  background: var(--color-blue);
  color: #fff;
  border: 1px solid var(--color-blue);
}
.badge--solid-purple {
  background: var(--color-purple);
  color: #fff;
  border: 1px solid var(--color-purple);
}
.badge--solid-red {
  background: var(--color-red);
  color: #fff;
  border: 1px solid var(--color-red);
}
.badge--solid-gray {
  background: var(--color-muted);
  color: #fff;
  border: 1px solid var(--color-muted);
}
a.badge:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border-color);
  outline: none;
  text-decoration: none;
}
.btn--primary {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-green);
  border-color: rgba(16, 185, 129, 0.3);
}
.btn--primary:hover {
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
.btn--secondary {
  background: #ffffff;
  color: var(--text-main);
  border-color: var(--border-color);
}
.btn--secondary:hover {
  background: #f1f5f9;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.btn--text {
  background: transparent;
  color: var(--color-orange);
  padding: 0;
  font-size: 0.9rem;
  border: none;
}
.btn--text:hover {
  color: var(--color-green);
}
.form-control {
  width: 100%;
  padding: 10px 15px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.1);
}
select.form-control {
  cursor: pointer;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1.5vw, 10px);
  margin-top: 40px;
  width: 100%;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(30px, 8vw, 40px);
  height: clamp(30px, 8vw, 40px);
  padding: 5px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  color: var(--text-main);
  transition: all 0.2s;
}
.page-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.page-link.active {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
}
.interactive-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  font-size: 1.25rem;
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, text-shadow 0.2s;
}
.star-btn.active {
  color: var(--color-orange) !important;
}
.like-btn.active {
  background: var(--color-green) !important;
  color: #ffffff !important;
  border-color: var(--color-green) !important;
}
.dislike-btn.active {
  background: var(--color-red) !important;
  color: #ffffff !important;
  border-color: var(--color-red) !important;
}
.adult-modal-overlay,
.report-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.adult-modal-content,
.report-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  margin: 0 15px;
}
.adult-modal-header,
.report-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}
.adult-modal-header h3,
.report-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}
.adult-modal-close,
.report-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0;
}
.adult-modal-close:hover,
.report-modal-close:hover {
  color: var(--color-red);
}
.adult-modal-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 20px 0;
}
.adult-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.report-modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.report-modal-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.report-message-counter {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}
.report-modal-actions {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: 20px;
}
.neo-toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 360px;
  width: calc(100% - 40px);
}
.neo-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  color: var(--text-main);
  font-size: 0.95rem;
  pointer-events: auto;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.3s, transform 0.3s;
}
.neo-toast.fade-out {
  opacity: 0;
  transform: translateX(100%);
}
.neo-toast__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.neo-toast--success .neo-toast__icon {
  color: var(--color-green);
}
.neo-toast--error .neo-toast__icon {
  color: var(--color-red);
}
.neo-toast--info .neo-toast__icon {
  color: var(--color-blue);
}
.neo-toast__content {
  flex-grow: 1;
  min-width: 0;
}
.neo-toast__title {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.neo-toast__msg {
  line-height: 1.4;
  word-break: break-word;
}
.neo-toast__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.neo-toast__close:hover {
  color: var(--text-main);
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(10px, 3vw, 25px);
  width: 100%;
  margin-bottom: 10px;
}
.grid-cards-info {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: clamp(10px, 3vw, 15px);
}
.slider-section {
  margin-bottom: 50px;
}
.main-carousel {
  background: transparent;
}
.carousel-cell {
  width: 180px;
  margin-right: 20px;
}
.carousel-cell-container {
  width: 100%;
}
.poster-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-shadow: var(--glass-shadow);
}
.poster-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.poster-card__img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 147%;
}
.poster-card__img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.poster-card__rating {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-orange);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border-color);
}
.poster-card__time {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: clamp(0.6rem, 1.8vw, 0.75rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border-color);
}
.poster-card__quality {
  position: absolute;
  top: 5px;
  right: 5px;
}
.poster-card__info {
  padding: 12px;
}
.poster-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0f172a;
}
.poster-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.video-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  border-radius: 8px;
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.video-card__link {
  display: block;
  width: 100%;
}
.video-card__img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
  overflow: hidden;
}
.video-card__img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease-in-out;
}
.video-card__size {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border-color);
}
.video-card__quality {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
}
.video-card__type {
  position: absolute;
  bottom: 2px;
  left: 2px;
  z-index: 2;
}
.video-card__duration {
  position: absolute;
  bottom: 2px;
  right: 2px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border-color);
}
.video-card__info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  justify-content: space-between;
}
.video-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  color: #0f172a;
}
.video-card__title a:hover {
  color: var(--color-green);
}
.video-card__meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.video-card__view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.video-card__likes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-green);
  font-size: 0.8rem;
  font-weight: 700;
}
.video-card__dislikes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-red);
  font-size: 0.8rem;
  font-weight: 700;
}
.video-card__updated {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.list-filter-form {
  margin-bottom: 30px;
  width: 100%;
}
.title-count {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: none;
  font-weight: 400;
}
.filter-main-row {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 15px;
}
.filter-main-row .form-control {
  flex: 1;
  margin: 0;
}
#filter-toggle-btn {
  position: relative;
}
.collapsible-filters {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: clamp(10px, 3%, 20px);
  margin-bottom: 25px;
  width: 100%;
  box-shadow: var(--glass-shadow);
  display: none;
}
.collapsible-filters--video {
  width: 100%;
  margin-top: 15px;
}
.filter-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  width: 100%;
}
.filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-field .form-control {
  width: 100%;
  margin: 0;
  min-width: 0;
}
.filter-actions-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}
.filter-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background-color: var(--color-orange);
  border-radius: 50%;
  border: 1.5px solid var(--bg-card);
}
.info-detail-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: clamp(15px, 5%, 40px);
  margin-bottom: 40px;
  box-shadow: var(--glass-shadow);
}
.info-detail-container {
  display: flex;
  flex-direction: row;
  gap: clamp(20px, 5%, 40px);
}
.info-detail-left {
  width: clamp(200px, 30%, 300px);
  flex-shrink: 0;
}
.info-detail-poster {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}
.info-detail-right {
  flex-grow: 1;
  min-width: 0;
}
.info-detail-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin: 0 0 15px 0;
  line-height: 1.2;
  color: #0f172a;
}
.info-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.info-metadata-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin-bottom: 25px;
}
.meta-row {
  display: flex;
  flex-direction: row;
  font-size: 0.95rem;
}
.meta-label {
  width: 120px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.meta-value {
  color: #0f172a;
}
.info-synopsis h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: var(--color-orange);
}
.info-synopsis p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.info-videos-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: clamp(15px, 5%, 40px);
  box-shadow: var(--glass-shadow);
}
.video-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  width: 100%;
}
.video-filter-bar > .form-control {
  flex: 2;
  min-width: 200px;
}
.video-ajax-loader {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.video-title-heading {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin: 0 0 25px 0;
  line-height: 1.3;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  color: #0f172a;
  text-shadow: none;
}
.parent-info-banner {
  display: flex;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  gap: 20px;
  align-items: center;
  box-shadow: var(--glass-shadow);
}
.banner-poster {
  width: 80px;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  border: 1px solid var(--border-color);
}
.banner-details {
  flex: 1;
  min-width: 0;
}
.banner-details h4 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  color: #0f172a;
}
.banner-details p {
  margin: 0 0 10px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.banner-cast {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.parent-info-banner .interactive-rating {
  margin-bottom: 12px;
}
.parent-info-banner .filter-label {
  margin-right: 5px;
  font-size: 0.8rem;
}
.parent-info-banner .star-btn {
  font-size: 1rem;
  padding: 0 1px;
}
.specs-card,
.action-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--glass-shadow);
}
.specs-card h3,
.action-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-orange);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.specs-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-item {
  display: flex;
  flex-direction: row;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 10px;
}
.spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.spec-label {
  width: 120px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.spec-value {
  color: #0f172a;
  word-break: break-word;
}
.spec-value .badge {
  margin: 2px 0;
}
.spec-value.highlight {
  color: var(--color-orange);
  font-weight: 600;
}
.action-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.specs-card .main-carousel {
  width: 100%;
  overflow: hidden;
}
.specs-card .carousel-cell {
  width: 280px;
  aspect-ratio: 16/9;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-color);
}
.specs-card .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.specs-card + .specs-card,
.specs-card + .action-card,
.parent-info-banner + .specs-card {
  margin-top: 25px;
}
.cast-container,
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media(max-width: 768px) {
  .info-detail-container {
    flex-direction: column;
    align-items: center;
  }
  .info-detail-left {
    width: 100%;
    max-width: 250px;
  }
  .meta-row {
    flex-direction: column;
    gap: 4px;
  }
  .meta-label {
    width: 100%;
  }
}
@media(max-width: 450px) {
  .grid-cards-info {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: clamp(10px, 3vw, 10px);
  }
  .spec-item {
    flex-direction: column;
    gap: 4px;
  }
  .spec-label {
    width: 100%;
  }
}
.neo-player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}
.neo-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.player-controls-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}
.player-controls-overlay.hide-controls {
  opacity: 0;
  pointer-events: none;
}
.controls-top-row {
  width: 100%;
  margin-bottom: 8px;
}
.progress-bar-container {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.progress-bar-buffered {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  width: 0%;
}
.progress-bar-played {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--color-orange);
  border-radius: 3px;
  width: 0%;
}
.progress-bar-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  left: 0%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease;
}
.progress-bar-container:hover .progress-bar-handle {
  transform: translateX(-50%) scale(1.3);
}
.controls-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.control-btn:hover {
  color: var(--color-orange);
}
.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.volume-slider {
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.time-display {
  font-size: 0.85rem;
  color: #fff;
  font-family: monospace;
}
.subtitles-menu-container {
  position: relative;
}
.subtitles-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  min-width: 120px;
  max-height: 160px;
  overflow-y: auto;
  box-shadow: var(--glass-shadow);
  z-index: 20;
}
.subtitles-dropdown::-webkit-scrollbar {
  width: 4px;
}
.subtitles-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.subtitles-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.subtitles-dropdown.show {
  display: flex;
}
.sub-option, .speed-option {
  background: none;
  border: none;
  color: #fff;
  padding: 6px 15px;
  text-align: left;
  font-size: 0.85rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.sub-option:hover, .speed-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-orange);
}
.sub-option.active, .speed-option.active {
  color: var(--color-orange);
  font-weight: 700;
}
.neo-player-wrapper:fullscreen {
  padding-top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}
.neo-video-element:fullscreen {
  height: 100%;
  width: 100%;
}
.neo-player-wrapper:fullscreen .player-controls-overlay {
  padding: 20px 30px;
}
video::cue {
  display: none!important;
  opacity: 0!important;
}
.seekbar-preview-container {
  position: absolute;
  bottom: 45px;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px;
  box-shadow: var(--glass-shadow);
  z-index: 30;
  pointer-events: none;
}
.seekbar-preview-img {
  width: 140px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.seekbar-preview-time {
  font-size: 0.75rem;
  color: #fff;
  font-family: monospace;
}
.player-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.big-play-btn {
  background: rgba(249, 115, 22, 0.85);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s, background-color 0.2s;
}
.big-play-btn i {
  margin-left: 5px;
}
.big-play-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-orange);
}
.placeholder-duration {
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: monospace;
  font-weight: bold;
  color: #fff;
}
.player-subtitle-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.60);
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-align: center;
  pointer-events: none;
  z-index: 9;
  display: none;
  max-width: 80%;
  transition: bottom 0.3s ease-in-out;
  line-height: 1.4;
}
.neo-player-wrapper.controls-visible .player-subtitle-overlay {
  bottom: 80px;
}
.player-top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
  display: flex;
  align-items: center;
  padding: 15px 20px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
  pointer-events: none;
}
.player-top-overlay.hide-controls {
  opacity: 0;
  pointer-events: none;
}
@media(max-width: 600px) {
  .volume-slider {
    display: none;
  }
  .player-controls-overlay {
    padding: 8px 10px;
  }
  .controls-bottom-row {
    gap: 5px;
  }
  .controls-left, .controls-right {
    gap: 8px;
  }
}
.pre-footer {
  background-color: var(--bg-header);
  border-top: 1px solid var(--border-color);
  padding: 40px clamp(10px, 5%, 20px);
  width: 100%;
}
.pre-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.pre-footer-brand {
  flex: 1 1 300px;
}
.pre-footer-brand h3 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pre-footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.pre-footer-features {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.feature-item {
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid var(--border-color);
  box-shadow: var(--glass-shadow);
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--color-orange);
}
.feature-item i {
  font-size: 1.8rem;
  color: var(--color-orange);
  margin-bottom: 10px;
  display: inline-block;
}
.feature-item h4 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
.feature-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-header);
  padding: 30px clamp(10px, 5%, 20px);
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.75rem, 2.2vw, 0.9rem);
  word-break: break-word;
}
footer a {
  color: var(--color-orange);
}
footer a:hover {
  color: var(--color-green);
}
@media(max-width: 768px) {
  .pre-footer {
    padding: 25px clamp(10px, 5%, 20px);
  }
  .pre-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .pre-footer-brand {
    flex: 1 1 100%;
    width: 100%;
  }
  .pre-footer-features {
    flex: 1 1 100%;
    width: 100%;
    gap: 15px;
  }
}