






/* --- DLE Расписание выхода аниме --- */
:root {
    --primary-orange: #f66600;
    --primary-blue: #060077;
    --white: #ffffff;
    --light-gray: #ffffff;
    --border-light: rgba(255, 255, 255, 0.15);
    --hover-orange: #ff8533;
    --active-gradient: linear-gradient(135deg, #f66600 0%, #ff8c42 100%);
}

* {
    color: #ffffff !important;
}

.main-title {
    margin: 0 0 35px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.top-description {
    line-height: 1.6;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-date {
    margin: 35px 0;
    padding: 20px 0;
}

.calendar-date__list {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) transparent;
}

.calendar-date__list::-webkit-scrollbar {
    height: 6px;
}

.calendar-date__list::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.calendar-date__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    min-width: 70px;
}

.calendar-date__item:hover {
    transform: translateY(-2px);
}

.calendar-date__item-number {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 1.3em;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.calendar-date__item:hover .calendar-date__item-number {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-orange);
}

.calendar-date .calendar-date__item.calendar-date__active .calendar-date__item-number {
    background: var(--active-gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(246, 102, 0, 0.4);
    transform: scale(1.05);
}

.calendar-date__item-day {
    margin-top: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.calendar-date__item.calendar-date__active .calendar-date__item-day {
    color: #ffffff;
    font-weight: 600;
}

.calendar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 45px;
}

.calendar__item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.calendar__item-weekday h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-orange);
    position: relative;
}

.calendar__item-weekday h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--active-gradient);
}

.calendar__item-anime {
    display: flex;
    align-items: center;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
}

.calendar__item-anime:hover {
    background: rgba(255, 255, 255, 0.08);
}

.calendar__item-anime:last-of-type {
    border-bottom: none;
}

.calendar__item-number {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(246, 102, 0, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    position: static;
    margin-right: 12px;
}

.calendar__item-img {
    margin-right: 15px;
    width: 45px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.calendar__item-img:hover {
    transform: scale(1.05);
}

.calendar__item-img img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.calendar__item-names {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding-right: 15px;
}

.calendar__item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.calendar__item-name:hover {
    color: #ffffff;
}

.calendar__item-english-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.3;
    color: #ffffff;
    opacity: 0.9;
}

.calendar__item-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.calendar__item-episode {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.calendar__item-serie {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.calendar__item-time {
    font-size: 11px;
    color: #ffffff;
    opacity: 0.8;
}

.calendar__item-bookmark {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 32px;
    width: 32px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.calendar__item-bookmark:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.watchlist_btn_success .calendar__item-bookmark {
    background: var(--active-gradient);
    border-color: var(--primary-orange);
}

.watchlist_btn_success i {
    color: #ffffff;
}

.show-more-schedules {
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
    background: rgba(246, 102, 0, 0.1);
    border: 1px solid rgba(246, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.show-more-schedules:hover {
    background: rgba(246, 102, 0, 0.2);
    transform: translateY(-2px);
}

.calendar-date__item-day1 {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
}

.calendar-date__item-month1 {
    color: #ffffff;
    font-size: 0.85em;
}

.calendar__item-date {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.23;
    color: #ffffff;
}

.calendar__item-day {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Domine', serif;
    color: #ffffff;
}

.calendar__item-month {
    font-size: 13px;
    color: #ffffff;
}

.calendar-date__item1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 123px;
    height: 70px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    margin-right: 8px;
    color: #ffffff;
}

.calendar-date__item1:last-of-type {
    margin-right: 0;
}

.calendar-date__item1:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.calendar-active {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-active .calendar-date__item-day1 {
    color: #ffffff;
    font-weight: 600;
}

.calendar-date__item-number {
    color: #ffffff !important;
}

.calendar-date .calendar-date__item.calendar-date__active .calendar-date__item-number {
    color: #ffffff !important;
}

.calendar__item-name:hover {
    color: #ffffff !important;
}

/* Темная тема улучшения */
.dark .calendar__item {
    background: rgba(30, 30, 40, 0.7);
}

.dark .calendar__item-anime:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dark .calendar__item-name,
.dark .calendar-date__item-day1 {
    color: #ffffff;
}

.dark .calendar__item-english-name {
    color: #ffffff;
}

.dark .calendar__item-bookmark {
    background: hsla(240, 5%, 48%, 0.1);
    border-color: #2d3236;
}

.dark .calendar-date__item1 {
    background-color: hsl(240deg 1% 16%);
    color: #ffffff;
    opacity: 1;
}

.dark .calendar-date__item-month1 {
    color: #ffffff;
}

.dark .main-title {
    color: #ffffff;
}

.dark .calendar-date__item1:hover {
    border-color: #2d3236;
}

.dark .calendar-active .calendar-date__item-day1,
.dark .calendar__item-name,
.dark .top-description {
    color: #ffffff;
}

.dark .calendar__item-weekday h3 {
    color: #ffffff;
}

.dark .calendar__item-bookmark {
    background: hsla(240, 5%, 48%, 0.1);
    border-color: #2d3236;
}

/* Адаптивность */
@media only screen and (max-width: 1024px) {
    .calendar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calendar__item {
        padding: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .main-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .calendar-date__list {
        gap: 12px;
    }
    
    .calendar-date__item-number {
        height: 50px;
        width: 50px;
        font-size: 1.2em;
    }
    
    .calendar__item-info {
        gap: 15px;
    }
    
    .calendar__item-bookmark {
        height: 30px;
        width: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .calendar__item {
        padding: 15px;
        border-radius: 12px;
    }
    
    .calendar__item-anime {
        padding: 12px 10px;
    }
    
    .calendar__item-img {
        width: 40px;
        height: 60px;
        margin-right: 12px;
    }
    
    .calendar__item-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    
    .calendar__item-episode {
        align-items: flex-end;
    }
}

@media only screen and (max-width: 360px) {
    .calendar__item-names {
        padding-right: 10px;
    }
    
    .calendar__item-name {
        font-size: 13px;
    }
    
    .calendar__item-english-name {
        font-size: 11px;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar__item-anime {
    animation: fadeInUp 0.4s ease forwards;
}

.calendar__item-anime:nth-child(odd) {
    animation-delay: 0.1s;
}

.calendar__item-anime:nth-child(even) {
    animation-delay: 0.2s;
}

/* Гарантия белого цвета для всех текстовых элементов */
body, div, span, h1, h2, h3, h4, h5, h6, p, a, li, td, th, input, textarea, select, button, label {
    color: #ffffff !important;
}

/* Особое внимание для псевдоэлементов */
::placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

::-webkit-input-placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

::-moz-placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

:-ms-input-placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}
/* таймер выхода серий  */


.pretimer {
  background: transparent;
  border-radius: 12px;
  padding: 16px;
  color: #eaeaea;
  font-family: 'Roboto', sans-serif;
  animation: fadeInUp 0.6s ease-out;
  max-width: 340px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.countdown_title p {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 8px;
  color: #d8caff;
  animation: fadeInUp 0.8s ease-out;
}

.countdown_text {
  font-size: 0.95em;
  line-height: 1.4;
  color: #cbbcff;
  background: rgba(60, 40, 90, 0.3);
  padding: 10px;
  border-radius: 8px;
  animation: fadeInUp 1s ease-out;
}

.countdown_wrp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  animation: fadeInUp 1.2s ease-out;
}

.countdown_wrp li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(80, 60, 120, 0.3);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.countdown_wrp li:hover {
  background: rgba(100, 80, 150, 0.4);
  transform: translateX(4px);
}

.countdown_wrp .value {
  font-size: 1.3em;
  font-weight: 600;
  color: #d68cff;
  background-color: rgba(90, 60, 130, 0.4);
  padding: 4px 10px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}

.countdown_wrp .unit {
  font-size: 0.95em;
  color: #e0d4ff;
}

/* таймер выхода серий  */







.personal-recommendations {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.guest-recommendations {
    margin: 20px 0;
    padding: 15px;
    background: #e3f2fd;
    border-radius: 8px;
    text-align: center;
}

.guest-recommendations a {
    color: #1976d2;
    text-decoration: underline;
}



.dark-theme {
  background-color: #1c1c1e;
  color: #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.anime-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anime-meta li {
  font-size: 15px;
  line-height: 1.4;
}

.anime-meta strong {
  color: #ff79c6;
}

.anime-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  margin-top: 10px;
}

.anime-description {
  font-size: 15px;
  line-height: 1.6;
}

/* Shikimori Rating */
.shikimori-rating {
  margin-top: 20px;
  background-color: #2c2c2e;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: inset 0 0 0 1px #3a3a3c;
}

.shikimori-title {
  font-size: 16px;
  font-weight: bold;
  color: #ff79c6;
  margin-bottom: 8px;
}

.shikimori-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shikimori-icon {
  width: 24px;
  height: 24px;
  color: #ff79c6;
  flex-shrink: 0;
}

.shikimori-text .score {
  font-weight: bold;
  font-size: 16px;
  color: #ff79c6;
}

.shikimori-text .votes {
  font-size: 14px;
  color: #b0b0b0;
}

/* Mobile */
@media (max-width: 480px) {
  .dark-theme {
    padding: 12px;
  }

  .anime-meta li,
  .anime-description {
    font-size: 14px;
  }

  .shikimori-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .shikimori-text {
    text-align: left;
  }
}





.vtrend-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #1e1e2a;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(0,0,0,0.3);
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}
.vtrend-card:hover {
    transform: scale(1.02);
}

.vtrend-poster {
    position: relative;
    width: 180px;
    flex-shrink: 0;
}
.vtrend-poster img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff7043;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.episodes-counter {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.item__rating {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  color: #333;
  font-weight: 600;
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: none;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.vtrend-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item__title {
    font-size: 20px;
    color: #ff7043;
    text-decoration: none;
    margin-bottom: 8px;
}

.item__meta {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 6px;
}

.vtrend-meta {
    font-size: 13px;
    color: #bbb;
    margin-top: 10px;
}


/* Стили для статуса */
.status-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    background: rgba(0,0,0,0.8);
    color: white;
    text-transform: uppercase;
}

/* Зеленый кружок для статуса "Завершён" */
.status-badge.Завершён,
.status-badge.завершён,
.status-badge.released,
.status-badge.finished {
    background: #27ae60 !important;
    color: white !important;
}

/* Оранжевый кружок для других статусов */
.status-badge {
    background: #e67e22 !important;
    color: white !important;
}

/* Стили для счетчика серий */
.episodes-counter {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    background: rgba(0,0,0,0.8);
    color: white;
    backdrop-filter: blur(10px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .status-badge,
    .episodes-counter {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* Анимация при наведении */
.item__img:hover .status-badge,
.item__img:hover .episodes-counter {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}









/* ====================== скриншот ====================== */
.screenshots-gallery {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.screenshot {
    width: 22%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.screenshot:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Модальное окно */
.screenshot-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.screenshot-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}


/* ====================== скриншот ====================== */


/* Общий стиль для ссылок */
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4caf50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

/* Цвет текста при наведении */
.nav-link:hover {
    color: #81c784;
}

/* Иконки — фиксированный стиль */
.nav-link i {
    font-size: 18px;
    padding-left: 11px;
    color: inherit; /* ← сохраняет основной цвет, но не реагирует на hover */
    transition: none; /* ← отключает анимацию */
}

/* Аниме */
.nav-link.nav-icon-anime i {
    font-size: 18px;
}

/* По годам */
.nav-link.nav-icon-years i {
    font-size: 18px;
}

/* В тренде / Топ 100 */
.nav-link.nav-icon-trend,
.nav-link.nav-icon-top {
    color: #ff7043;
}
.nav-link.nav-icon-trend:hover,
.nav-link.nav-icon-top:hover {
    color: #ffab91;
}
.nav-link.nav-icon-trend i,
.nav-link.nav-icon-top i {
    font-size: 18px;
    color: #ff7043; /* ← фиксируем цвет иконки */
}

/* Обзор */
.nav-link.nav-icon-overview i {
    font-size: 18px;
}



/* МЕНЮ НЗВАНИЯ " */


.btn-collections {
    display: inline-block;
    background: linear-gradient(135deg, #43a047, #66bb6a);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-collections:hover {
    background: linear-gradient(135deg, #388e3c, #4caf50);
    transform: translateY(-2px);
}




/* Стили для блока "В тренде" */
.trending-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.trending-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.trending-header i {
    color: #007bff;
    margin-right: 10px;
    font-size: 18px;
}

.trending-header span {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.trending-item:hover {
    background-color: #f1f3f4;
}

.trending-number {
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.trending-title {
    flex-grow: 1;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
}

.trending-title:hover {
    color: #007bff;
}

.trending-views {
    color: #6c757d;
    font-size: 12px;
    margin-left: 10px;
    flex-shrink: 0;
}

.trending-views i {
    margin-right: 3px;
}

/* Стили для попапа в меню */
.menu-trending {
    position: relative;
}

.trending-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 300px;
    z-index: 1000;
}

.trending-popup-header {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

.trending-popup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.trending-popup-list li {
    border-bottom: 1px solid #eee;
}

.trending-popup-list li:last-child {
    border-bottom: none;
}

.trending-popup-list a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.trending-popup-list a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.views-count {
    float: right;
    background: #6c757d;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
}




/* BASIC LAYOUT
----------------------------------------------- */
.wrapper {min-width: 320px; position: relative; overflow: clip;}
.wrapper__container {max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 20; 
	display: grid; grid-template-rows: auto 1fr auto; grid-template-columns: 260px minmax(0,1fr); 
	background-color: var(--bg); box-shadow: 0 0 30px rgba(0,0,0,0.2); min-height: 100vh;
	grid-template-areas: "header header" "sidebar content" "sidebar footer";}
.header {padding: 10px var(--indent); grid-area: header; color: #fff; --tt: #fff; z-index: 100;
	background-color: rgba(19,59,55,0.8); backdrop-filter: blur(16px); position: sticky; left: 0; top: 0;}
.content {grid-area: content; padding: 40px var(--indent);}
.sidebar {grid-area: sidebar; background-color: var(--bg-darker); 
	border-right: 1px solid var(--bdc); position: relative; z-index: 10;}
.sidebar__sticky {padding: 30px; padding-top: 15px; position: sticky; left: 0; top: 70px; transition: top 0.3s;}
.footer {padding: 30px var(--indent); gap: 15px 60px; border-top: 1px solid var(--bdc);}
.header.sticky {translate: 0 -100%;}
.wrapper:has(.header.sticky) .sidebar__sticky {top: 0;}
.has-branding {padding-top: 140px;}

.scrolltop {position: fixed; width: 40px; height: 40px; right: -60px; bottom: 10px; padding: 0;
	z-index: 990; border-radius: 50%; font-size: 18px; opacity: 0; transition: right 0.2s, opacity 0.2s;}
.scrolltop.is-active {right: 10px; opacity: 1;}


/* HEADER
----------------------------------------------- */
.logo {font-weight: 700; font-size: 22px; color: var(--tt); display: flex; align-items: center;
	position: relative; height: 40px; min-width: 200px;}
.logo img {display: block; position: absolute; left: 0; top: 50%; translate: 0 -50%; max-height: 100%;}
.header__btn {margin-left: -18px;}
.header__login a {opacity: 0.6;}

.search-block {width: 600px; position: relative;}
.search-block__input, .search-block__input:focus {padding: 0 30px 0 50px; height: 50px; border-radius: 25px; 
	background-color: rgba(255,255,255,0.1); color: #fff; border: 0; line-height: 50px;}
.search-block__input:not(:focus)::placeholder {color: #fff; opacity: 0.6;}
.search-block__btn {position: absolute; left: 0; top: 0; height: 50px; 
	font-size: 18px; color: #fff; width: 55px; border-radius: 20px;}


/* SECTION
----------------------------------------------- */
.sect:not(:last-child) {margin-bottom: 40px;}
.sect__header {margin-bottom: 20px;}
.sect__title {font-size: 20px; font-weight: 500;}
.sect__link {color: var(--accent);}
.sect__btn {padding: 0;}
.sect--rkl {border: 1px solid var(--bdc); min-height: 80px;}
.sect--slider {margin: -40px var(--indent-negative); margin-bottom: 40px;}
.sect--bg {border-radius: 10px; padding: 20px; background-color: var(--bg-darker);}

.speedbar {color: var(--tt-fade); font-size: 14px; margin-bottom: 20px;}
.speedbar a {color: var(--tt-dark);}
.speedbar::before {color: var(--accent-red); margin-right: 10px;}

.descr {display: grid; gap: 10px; line-height: 1.6; padding-top: 40px; 
	border-top: 1px solid var(--bdc); color: var(--tt-fade-0);}
.descr :is(h1,h2,h3) {font-size: 16px; font-weight: 500; line-height: 1.3; color: var(--tt);}
.descr a {text-decoration: underline; color: var(--accent);}
.descr ul li {position: relative; padding-left: 25px; margin-left: 25px;}
.descr ul li::before {content:"\f00c"; color: var(--accent); position: absolute; left: 0; top: 0;}

.sorter {position: relative; cursor: pointer; height: 40px; display: flex; align-items: center; gap: 10px; min-width: 162px;}
.sorter form {display: none; background-color: var(--bg); padding: 0px; 
	box-shadow: var(--bsh); position: absolute; right: 0; top: 100%; 
	width: 100%; z-index: 99; border-radius: 10px;}
.sorter a {display: block; border-bottom: 1px solid var(--bdc); padding: 6px 10px;}
.sort li.asc a::after, .sort li.desc a::after {content:"\f063"; font-family:"Font Awesome 5 Pro"; 
	display: inline-block; margin-left: 10px; font-weight: 300;}
.sort li.desc a::after {content:"\f062"}
.carou-6:not(.owl-carousel) > .item {width: calc((100% - 100px)/6); flex-shrink: 0;}
.carou-4:not(.owl-carousel) > .item {width: calc((100% - 60px)/4); flex-shrink: 0;}
.carou-1:not(.owl-carousel) > .item {width: 100%; flex-shrink: 0;}
.carou-6:not(.owl-carousel), .carou-4:not(.owl-carousel) {display: flex; overflow: hidden; gap: 20px;}
.carou-1:not(.owl-carousel) {display: flex; overflow: hidden;}


/* ITEM
----------------------------------------------- */
.item__img {border-radius: 8px; margin-bottom: 11px;}
.item__rating, .item__btn-info {width: 40px; background-color: rgba(60,60,60,0.6); color: #fff; backdrop-filter: blur(15px);}
.item__rating svg {position: absolute; left: 0; top: 0; fill: none; transform: rotate(-90deg);}
.item__rating svg circle {fill: inherit; stroke: none;}
.item__rating svg circle:nth-child(2) {stroke: #fbbf24;}
.item__label {padding: 3px 7px; border-radius: 3px; font-size: 10px; background-color: var(--bg-darker); color: var(--tt);}
.item__btn-info {position: absolute; right: 5px; top: 50px; z-index: 25; 
	scale: 0.5 0.5; opacity: 0; font-size: 18px; cursor: pointer;}
.item:not(:has(.item__rating)) .item__btn-info {top: 5px;}

.item-slider {height: 400px; overflow: hidden; position: relative; background-color: #221f27;}
.item-slider__desc {padding: 40px var(--indent); margin-right: 200px; position: relative; z-index: 10; color: #fff;}
.item-slider__img img {opacity: 0.5;}
.item-slider__img::before {content: ''; position: absolute; inset: 0; z-index: 1;
	background-image: linear-gradient(to bottom, #221f27, transparent, #221f27), 
	linear-gradient(to right, #221f27, transparent, #221f27);} 
.item-slider__title {text-transform: uppercase; font-weight: 800; font-size: 30px; color: transparent; 
	background: url(../images/texture.webp); background-clip: text;}
.item-slider__btns {padding-top: 20px;}
.item-slider .item__text, .item-slider .item__meta-item {opacity: 0.6;}
.item-slider .item__label, .item__btn-trailer {background-color: rgba(71, 75, 78, 0.6); color: #fff; backdrop-filter: blur(15px);}

.item-category {border-radius: 10px; padding: 10px 20px; padding-right: 130px; 
	overflow: hidden; position: relative; min-height: 90px;}
.item-category__img, .item-category::after {width: 80px; border-radius: 8px 8px 0 0; z-index: 2;
	position: absolute; right: 30px; bottom: 0; rotate: 9deg; transform-origin: left bottom;}
.item-category::after {content: ''; rotate: -9deg; aspect-ratio: 1 / 1; right: 40px; bottom: -20px;
	background-color: rgba(0,0,0,0.15); transform-origin: right bottom; z-index: 1;}

.item-top .item__img {border: 3px solid var(--bg); box-shadow: 0 0 0 3px var(--accent); 
	margin: 3px; margin-bottom: 10px; border-radius: 50%;}
.item-poster .item__rating {position: absolute; right: 5px; top: 5px; z-index: 5; scale: 0.5 0.5; opacity: 0;}
.item-poster .item__title {margin-bottom: 3px;}
.item-collection .item__img {aspect-ratio: 3 / 1.5;}
.item-blog .item__meta {margin-top: 5px;}
.item-hot .item__img {width: 46px; margin: 0;}
.sect--bg .item__label {background-color: var(--bg-darkest);}

.trl {background-color: rgba(0,0,0,0.9); position: fixed; z-index: 990; left: 0; top: 0; 
	width: 100%; height: 100%; overflow-x: hidden; overflow-y: auto; backdrop-filter: blur(10px);}
.trl__close {position: absolute; right: 20px; top: 20px; font-size: 40px; color: #fff;}
.trl__inner {width: 100%; max-width: 700px; margin: 0 auto; color: #fff; padding: 80px 20px 20px 20px;}
.trl__btn {height: 40px; padding: 0 40px; margin: 15px 0; width: 100%;}
.trl h1 {margin-bottom: 15px; margin-top: 20px; font-size: 24px;}
.trl .page__text {color: #ccc; margin: 0px;}
.trl-is-opened {overflow: hidden;}

.th-active {z-index: 100;}
.th-text {display: none; background-color: var(--bg); cursor: auto; 
	padding: 20px; text-align: left; position: absolute; z-index: 1000; left: 100%; top: 0; 
	width: 460px; box-shadow: var(--bsh); border-radius: 4px; min-height: 100px; font-size: 12px;}
.th-text::after {content: ""; border: 10px solid var(--bg); position: absolute; top: 30px; right: 100%;
	border-left-color: transparent; border-bottom-color: transparent; }
.pop-left .th-text::after {border: 10px solid var(--bg); border-right-color: transparent; 
	border-bottom-color: transparent; left: 100%; right: auto;}
.pop-left .th-text {left: auto; right: 100%;}
.th-text-loader {text-align: center; font-size: 18px; color: var(--accent); padding-top: 20px;}
.th-text .not-shown-ajax, .th-text .h1 a {display: none;}
.th-text .page__text {display: -webkit-box; -webkit-line-clamp: 6; line-clamp: 6; 
	-webkit-box-orient: vertical; overflow: hidden; margin: 15px 0; font-size: 12px;}
.th-text .page__titles h1 {font-size: 24px;}
.th-text .page__btn-trailer {width: 100%; margin-top: 15px;}


/* SIDEBAR
----------------------------------------------- */
.sb + .sb {border-top: 1px solid var(--bdc); padding-top: 15px; margin-top: 15px;}
.sb-menu a {height: 42px; border-radius: 10px; margin: 0 -10px; padding: 0 10px; gap: 15px;}
.sb__caption {margin-bottom: 15px; padding-top: 5px; font-weight: 500;}
.sb-menu .is-active a {background-color: rgba(0,0,0,0.1)}
.sb-menu li {position: relative;}
.sb-menu__hidden {position: absolute; left: 98%; top: 0; padding: 20px; border-radius: 10px;
	background-color: var(--bg); box-shadow: var(--bsh); width: 600px; 
	display: none; grid-template-columns: repeat(2,1fr); gap: 0 10px;}
.sb-menu__hidden a {height: 30px; margin: 0;}


/* FOOTER, PAGINATION
----------------------------------------------- */
.footer__menu li:not(.footer__menu-caption) {flex: 1 0 40%; --tt: var(--tt-fade-0);}
.footer__btn {align-self: flex-start;}

.pagination {gap: 20px 20px; padding-top: 15px;}
.pagination__pages a, .pagination__pages span {display: grid; place-items: center; color: var(--tt-fade);
	height: 36px; min-width: 36px; padding: 0 10px; border-radius: 18px; border: 2px solid var(--bdc);}
.pagination__pages {gap: 10px; font-size: 13px;}
.pagination__pages span:not(.nav_ext) {color: var(--tt); border-color: var(--accent);}
.pagination__btns {height: 36px; border-radius: 18px; overflow: hidden; border: 2px solid var(--bdc);}
.pagination__btns > * {width: 40px; display: grid; place-items: center; color: var(--accent); font-size: 18px;}
.pagination__btns > span {color: var(--tt-fade);}


/* INNER PAGE
----------------------------------------------- */
.page__header {display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 25px 40px; 
	grid-template-areas: "pposter pheader" "pposter pinfo"; grid-template-rows: auto 1fr;}
.page__titles {grid-area: pheader;}
.page__poster {grid-area: pposter; width: 250px;}
.page__info {grid-area: pinfo;}

.page__titles h1 {font-size: 30px; font-weight: 700; margin-top: -10px;}
.page__titles h1 a {font-size: 16px; margin-left: 10px;}
.page__img {border-radius: 10px;}
.page__likes a {display: flex; align-items: center; gap: 10px; height: 40px; padding: 0 20px;
	border-radius: 20px; color: var(--tt-fade); background-color: var(--bg-darker);}
.page__tech li {position: relative; padding-left: 140px; min-height: 14px;}
.page__tech li > span:first-child {position: absolute; left: 0; top: 0; color: var(--tt-fade);}
.page__tech a {color: var(--accent);}
.page__tags a {display: block; padding: 5px 10px; border-radius: 5px; background-color: var(--bg-darker); color: var(--tt-fade);}

.page__header {position: relative; isolation: isolate;}
.page__bg {position: absolute; width: 80%; bottom: 0; right: 0; top: -40px; z-index: -1; overflow: hidden;}
.page__bg img {opacity: 0.5; filter: blur(10px) grayscale(0.5);}
.page__bg::before {content: ''; position: absolute; inset: 0; z-index: 1;
	background-image: linear-gradient(to bottom, var(--bg), transparent, var(--bg)), 
	linear-gradient(to right, var(--bg), transparent, var(--bg));} 

.page__subtitle {text-align: center; font-size: 18px; margin-bottom: 25px; font-weight: 500;}
.page__text {margin-top: -8px;}
.page__scr ul {display: grid; gap: 15px; grid-template-columns: repeat(4,1fr); margin-bottom: 20px;}
.page__scr a, .page__scr img {display: block; height: auto; width: 100%; border-radius: 6px; aspect-ratio: 300 / 200;}
.page__scr img {object-fit: cover;}

.page__player {position: relative;}
.tabs-block__select {gap: 10px; margin-bottom: 10px;}
.tabs-block__select button {background-color: var(--bg-darker); color: var(--tt-fade);}
.tabs-block__select button.is-active, .tabs-block__select button:hover {background: var(--accent); color: #fff;}
.page__complaint a {position: absolute; right: 0; top: 0; display: flex; align-items: center; height: 40px; 
	gap: 10px; color: var(--ui-red);}
.nl .page__player-controls + .tabs-block__content {display: block;}
.page__add-to-list-list {overflow: hidden; display: none; box-shadow: var(--bsh);
	position: absolute; top: 100%; right: 0; min-width: 100%; background-color: var(--bg); border-radius: 10px;}
.page__add-to-list-list button + button {border-top: 1px solid var(--bdc);}
.page__add-to-list-list button {border-radius: 0; background: none; color: var(--tt); 
	width: 100%; justify-content: flex-end; font-size: 12px; display: flex;}
.page__add-to-list-list button.is-active {background-color: var(--accent); color: #fff;}
.page__lists-btn.is-active {background-color: var(--bg-btn-hover); color: #fff;}
.page__add-to-list-list button.d-none {display: none;}

.page__tooltip {cursor: pointer; font-size: 24px; color: var(--tt-fade); height: 40px;}
.page__tooltip-info {position: absolute; left: 50%; top: 100%; transform: translate(-50%,30px); z-index: 100;
	background-color: var(--bg-darker); box-shadow: var(--bsh); color: var(--tt);
	border-radius: 6px; font-size: 14px; width: 400px; visibility: hidden; opacity: 0;}
.page__tooltip-info::before {content: ''; border: 10px solid transparent; border-bottom-color: var(--bg-darkest); 
	position: absolute; left: 50%; bottom: 100%; transform: translate(-50%);}
.page__tooltip-info-header {background-color: var(--bg-darkest); padding: 15px 20px; 
	font-weight: 500; font-size: 18px; color: var(--tt); border-radius: 6px 6px 0 0;}
.page__tooltip-info-content {padding: 20px;}
.page__rating-list-item-count, .page__rating-list-item-value {width: 50px;}
.page__rating-list-item-bar {border: 0px solid var(--accent); background-color: var(--bg); 
	height: 20px; position: relative; border-radius: 2px;}
.page__rating-list-item-bar-progress {position: absolute; left: 0; top: 0; height: 100%; min-width: 35px; 
	background-color: var(--accent); color: #fff; padding-right: 5px; border-radius: 2px;}
.page__tooltip.is-active::before {color: var(--accent);}
.page__tooltip.is-active .page__tooltip-info {visibility: visible; opacity: 1; transform: translate(-50%,0px);}
.page__list-info {justify-self: center; color: var(--tt); cursor: pointer;}
.page__list-info .page__tooltip {font-size: 18px; height: auto;}
.page__list-info .page__rating-list-item-value {width: 100px; font-size: 12px;}

.notify-18 {background-color: var(--bg); position: fixed; inset: 0; z-index: 9999;}
.notify-18__block {margin: 0 auto; max-width: 600px; overflow-y: auto; padding: 40px 20px; text-align: center; min-height: 100vh;}
.notify-18__block > * {flex-shrink: 0;}
.notify-18__icon {width: 100px; font-size: 34px; font-weight: 700; background: var(--ui-red); color: #fff;}
.notify-18__title {font-size: 34px; font-weight: 700;}
.notify-18__text {color: var(--tt-fade-0);}
.notify-18__btn {height: 60px; padding: 0 30px;}


/* TEXT BLOCK, TYPOGRAPHY, VIDEO BLOCK
----------------------------------------------- */
.page__title {margin-bottom: 30px; font-size: 24px;}
.full-text {line-height: 1.6; font-size: 15px; word-wrap: break-word; color: var(--tt-fade-0);}
.full-text a {text-decoration: underline; color: var(--ui-accent);}
.full-text img:not(.emoji), .full-text p, .full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5, 
.full-text > ul, .full-text > ol, .full-text table {margin-bottom: 25px;}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text > ul li, .full-text > ol li {padding-left: 60px; position: relative;}
.full-text > ul li:before {content: ''; width: 8px; height: 8px; border-radius: 50%; 
	border: 3px solid var(--accent); position: absolute; top: 6px; left: 34px;}
.full-text > ol {counter-reset: num;}
.full-text > ol li:before {content: counter(num); counter-increment: num; background-color: var(--accent); color: #fff; 
	position: absolute; top: -3px; left: 17px; width: 24px; height: 30px; font-size: 14px; font-weight: 500;
	display: flex; justify-content: flex-end; align-items: center; padding-right: 6px; box-sizing: border-box;}
.full-text > ol li:after {content: ''; border: 10px solid transparent; border-left-color: var(--accent); 
	position: absolute; left: 41px; top: -3px; transform: scale(0.66,1.5); transform-origin: 0 0;}
.full-text > ul li + li, .full-text > ol li + li {margin-top: 10px;}
.full-text table, .video-inside > * {width:100%;}
.full-text > *:last-child {margin-bottom: 0;}
.video-responsive {padding-top: 60%; position: relative; background-color: #000;}
.video-responsive > iframe, .video-responsive > video {position: absolute; left: 0; top: 0; width: 100%; height: 100%;}
.full-text h1, .full-text h2, .full-text h3, .full-text h4, .full-text h5 {font-size: 21px; margin-bottom: 20px;}


/* COMMENTS
----------------------------------------------- */
.page__comments {margin-top: 0px;}
.page__comments-title {font-size: 24px; margin-bottom: 20px;}
.page__comments-info {color: var(--tt-fade); display: block; margin: 10px 0 20px; font-size: 14px; padding-left: 23px; position: relative;}
.page__comments-info::before {color: var(--ui-red); position: absolute; left: 0; top: 2px;}
.ac-form {margin-bottom: 30px; position: relative;}
.ac-form__header, .ac-form__editor, .ac-form .message-info {gap: 10px; margin-bottom: 10px;}
.ac-form__btn {padding: 0 60px;}
.ac-form__bottom {gap: 25px;}
.confidential-check {font-size: 14px;}
.ac-form__header > span {margin-left: 15px;}
.ac-form .comments_subscribe {margin-top: 0px;}

.ac-toggle.ac-form {cursor: pointer;}
.ac-form__header input, .ac-form__editor textarea {border-radius: 0; background-color: var(--bg-darker);}
.ac-toggle, .ac-toggle .ac-form__editor {position: relative;}
.ac-toggle .ac-form__bottom button {position: absolute; bottom: 20px; right: 10px; z-index: 10; pointer-events: none;}
.ac-form .bb-btn {display: none;}
.ac-form .bb-pane {background: none; box-shadow: none; border: 0; position: absolute; left: 0; bottom: 0; right: 0;}
.ac-form #b_emo, .ac-form #b_leech, .ac-form #b_quote, .ac-form #b_spoiler, 
.ac-form #b_b, .ac-form #b_u, .ac-form #b_s, .ac-form #b_color, .ac-form #b_hide {display: grid;}
.ac-toggle .bb-btn {pointer-events: none;}
.ac-toggle .ac-form__editor .bb-editor textarea {height: 120px; resize: none;}
.ac-form__editor .bb-editor textarea {height: 200px; line-height: 1.4; padding-bottom: 40px;}
.comments_subscribe + br, .ac-form .bb-editor + br {display: none;}
.ac-toggle .has-checkbox {display: none;}

.mass_comments_action {display: none; align-items: center; flex-wrap: wrap; gap: 10px;}
.mass_comments_action select {flex: 1 1 0; margin: 0 -28px 0 0; border-radius: 0; box-shadow: none; min-width: 60%;}
.mass_comments_action .bbcodes {border-radius: 0; padding: 0 10px;}

.comm__title {font-size: 18px; margin-bottom: 20px;}

.comm {margin-bottom: 25px; position: relative;}
.comm__img {width: 40px; height: 40px; border-radius: 50%;}
.comm__letter {width: 100%; height: 100%; text-transform: uppercase; border-radius: inherit;
	position: absolute; left: 0; top: 0; color: #fff; font-size: 18px; font-weight: 500;}
.comm__author, .comm__author a {color: var(--tt); font-weight: 500; font-size: 14px;}
.comm__date {color: var(--tt-fade); font-size: 12px; margin-top: 3px;}
.comm__action {gap: 20px; font-size: 12px;} 
.comm__main {margin: 10px 0;}
.comm__action li, .comm__action li a {color: var(--tt-fade); cursor: pointer; gap: 8px; display: flex; align-items: center;}
.comm__ctrl, .comm__ctrl a {font-size: 15px; gap: 10px 15px; color: var(--tt-fade);}
.comm__rating {gap: 10px; font-size: 12px;}
.comm__rating > * {display: flex; gap: 5px; height: 30px; border-radius: 15px; align-items: center; 
	background-color: var(--bg-darker); color: var(--tt-fade); font-size: 12px; padding: 0 15px;}
.comm__rating > * .fal {font-size: 14px;}


/* LOGIN
----------------------------------------------- */
.login {position: fixed; z-index: 999; left: 50%; top: 50%; transform: translate(-50%,-50%);
	width: 440px; max-width: calc(100vw - 40px); max-height: calc(100vh - 40px);}
.login__header {padding-bottom: 25px; color: #fff; padding-left: 50px; font-size: 18px; font-weight: var(--ui-fw-bolder);}
a.login__title {color: #ccc; margin-left: 50px;}
div.login__title::after {content: ''; border: 10px solid transparent; border-bottom-color: var(--bg); 
	position: absolute; left: 50%; bottom: -25px; margin-left: -5px;}
.login__close {font-size: 23px; position: absolute; right: 0px; top: -3px; padding: 0; width: 40px; height: 40px; color: #fff;}
.login__content {display: grid; gap: 20px; padding: 25px 50px; padding-bottom: 50px; position: relative; 
	background-color: var(--bg);}
.login__row::before {position: absolute; right: 2px; bottom: 0; width: 50px; height: 50px; 
	display: grid; place-items: center; opacity: 0.3; font-size: 18px;}
.login__input input {padding-right: 50px; height: 50px; line-height: 48px; border-radius: 0;}
.login__row button {width: 100%; height: 50px; border-radius: 0;}
.login__social {padding-top: 10px; text-align: center; gap: 10px; margin-bottom: -20px;}
.login__social-caption {font-size: 13px; width: 100%;}
.login__social a {padding: 0 10px; border-radius: 20px; position: relative; width: 40px; height: 40px; 
	overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center;}
.login__social a::before {content: ''; width: 40px; background: rgba(0,0,0,0); position: absolute; left: 0; top: 0; height: 100%;}
.login__social a img {position: absolute; left: 10px; top: 50%; height: 20px; width: 20px; z-index: 1; 
	display: block; filter: invert(1); transform: translateY(-50%);}
.login__social-vk {background-color: #587ba1;}
.login__social-ok {background-color: #ff9800;}
.login__social-fb {background-color: #3b5998;}
.login__social-ml {background-color: #2196f3;}
.login__social-gg {background-color: #f44336;}
.login__social-ya {background-color: #fc3f1d;}
.header__login-panel {position: absolute; right: 0; top: 100%; width: 240px; padding-bottom: 10px;
	background-color: var(--bg); box-shadow: var(--ui-bsh); border-radius: var(--bdrs); margin-top: 15px;}
.header__login-header {padding: 20px; color: var(--tt); font-weight: 700; gap: 20px; border-bottom: 1px solid var(--bdc);
	background-color: var(--ui-bg-darker); margin-bottom: 10px; border-radius: 6px 6px 0 0;}
.header__login-avatar {width: 40px; height: 40px; border-radius: 50%;}
.header__login-group span {font-size: 12px; font-weight: 400; margin-top: 2px; 
	display: block; color: var(--ui-tt-fade) !important;}
.header__login-menu {position: absolute; right: 0; top: 100%; width: 260px; --tt: #000; color: #000;
	background-color: var(--bg); box-shadow: var(--bsh); padding: 20px; border-radius: 10px; display: none;}
.header__login-menu span {margin-left: auto; font-size: 12px; opacity: 0.6;}
.header__ava {width: 50px; height: 50px; cursor: pointer;}
.header__btn1 {font-size: 18px; position: relative;}
.header__btn1 span {position: absolute; right: 0; top: 0; padding: 1px 3px; font-size: 10px; border-radius: 6px; 
	background-color: var(--accent); color: #fff; display: inline-block; text-align: center; min-width: 20px;}
.c-0 span {display: none;}
.dt .js-theme::before {content:"\f186";}


/* ADAPTIVE, MOBILE MENU
----------------------------------------------- */
.overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%; 
	opacity: 0.6; background-color: #000; cursor: pointer; display: none;}
.mobile-menu {width: 280px; height: 100%; overflow-x: hidden; overflow-y: auto;
	z-index: 999; position: fixed; left: -360px; top: 0; transition: left 0.4s; background-color: var(--bg);}
.mobile-menu.is-active {left: 0;}
body.mobile-menu-is-opened {overflow: hidden; width: 100%; height: 100%;}
.mobile-menu__header {padding: 15px 20px; gap: 10px; background-color: var(--bg-darker);}
.mobile-menu__btn-close {font-size: 24px; width: 40px; height: 40px; margin-right: -10px;}
.mobile-menu__content .sidebar__sticky {position: static; min-height: 0;}
.mobile-menu__content .sb-menu__hidden {border-radius: 0; box-shadow: none; margin: 10px -30px; background: var(--bg-darker);
	font-size: 12px; padding: 10px 20px; position: static; display: grid; width: calc(100% + 60px);}

@media screen and (min-width: 1220px) {
	.col2 .wrapper__container--main {grid-template-columns: 80px minmax(0,1fr);}
	.col2 .col2-hide {display: none;}
	.col2 .sb-menu > li + li {margin-top: 3px;}
	.col2 .sb-menu > li > a {width: 40px; overflow: hidden; padding-left: 0;}
	.col2 .sb-menu a::before {width: 40px !important; font-size: 20px; flex-shrink: 0;}
	.col2 .content, .col2 .footer {--indent: 120px; --indent-negative: -120px;}
	.col2 .item-slider {height: 500px;}
	.has-branding .wrapper__container--main {max-width: 1200px;}
	.has-branding:not(.col2) .wrapper__container--main {grid-template-columns: 220px minmax(0,1fr);}
	.has-branding .content, .has-branding .footer { --indent: 20px; --indent-negative: -20px}
	.has-branding.col2 .content, .has-branding.col2 .footer { --indent: 80px; --indent-negative: -80px}
	.has-branding .search-block {width: 500px;}
}

@media screen and (max-width: 1220px) {
	:root {--indent-negative: -20px; --indent: 20px;}
	.wrapper__container {max-width:1000px; display: block;}
	.sidebar, .header__btn, .header__login a {display: none;}
	.header__btn-menu {display: flex; margin: 0;}
	.header__search {flex: 1 1 0; max-width: 100%; min-width: 50px;}
	.logo {min-width: 0;}
	.carou-6:not(.owl-carousel) > .item {width: calc((100% - 100px)/6);}
	.carou-4:not(.owl-carousel) > .item {width: calc((100% - 60px)/4);}

	.page__main {gap: 20px;}
	.page__watch {margin-right: 10px;}
	.page__rates {position: static; width: 100%; justify-content: center; padding-top: 10px;}
	.page__trl {flex-grow: 1;}
}

@media screen and (max-width: 950px) {
	.wrapper__container {max-width:768px;}
	.carou-6:not(.owl-carousel) > .item {width: calc((100% - 80px)/5);}
	.carou-4:not(.owl-carousel) > .item {width: calc((100% - 40px)/3);}
	.footer__about {min-width: 100%;}
	.scroll-items-1000 {display: flex; gap: 20px; overflow-x: auto;}
	.scroll-items-1000 > .item-top {flex-shrink: 0; width: 105px;}
	.scroll-items-1000 > .item-hot {flex-shrink: 0; width: 260px;}

	.pagination {gap: 10px;}
	.pagination__btn-loader a, .pagination__btn-loader span {width: 100%;}
	.pagination > a, .pagination > span {flex-grow: 1; order: 10;}
	.pagination__pages, .pagination__btns {min-width: 100%;}
	.pagination__pages a, .pagination__pages span, .pagination__btns > * {flex-grow: 1;}
	
	.page__header {grid-template-columns: minmax(0,1fr); gap: 20px 20px; 
		grid-template-areas: "pheader" "pposter" "pinfo";}
	.page__bg {width: 100%; height: 500px; top: 100px;}
	.page__titles, .page__poster {align-self: center; text-align: center;}
	.page__poster {margin: 0 auto;}
	.page__meta, .page__ratings {justify-content: center; gap: 10px 20px;}
	.page__share {margin: 0;}

	.page__related:not(.owl-carousel) > .rels {width: calc((100% - 60px)/4);}
}

@media screen and (max-width: 760px) {
	.wrapper__container {max-width:640px;}
	.login__header {padding-left: 20px; font-size: 16px;}
	a.login__title {margin-left: 20px;}
	.login__content {padding: 20px;}
	.login__social {margin-bottom: 0;}
	.login__social a {border-radius: var(--bdrs); height: 30px; flex: 1 0 30%;}
	.login__social a img {left: 50%; margin-left: -10px;}
	.carou-6:not(.owl-carousel) > .item {width: calc((100% - 40px)/3);}
	.carou-4:not(.owl-carousel) > .item {width: calc((100% - 20px)/2);}

	.header__logo {flex: 1 1 0; max-width: 100%; min-width: 50px;}
	.header__search {min-width: 100%; order: 10;}
	.item-slider {text-align: center; justify-content: flex-end;}
	.item-slider__desc {align-items: center; margin: 0;}
	.item-slider .item__meta {justify-content: center;}
	.item-slider__btns > * {flex-grow: 1;}

	.page__complaint {display: none !important;}
	.tabs-block__select button {flex-grow: 1;}
	.wrapper__container--main {overflow: hidden; overflow: clip;}
	.page__bg {width: 200%; height: 600px; right: 50%; bottom: auto; top: -40px; transform: translateX(50%);}
	.page__tech {font-size: 12px;}
	.page__tech li {min-height: 12px; padding-left: 120px;}
	
	.ac-form__bottom {gap: 10px;}
	.ac-form__bottom button {padding: 0 20px; width: 100%;}
	.ac-form__header input + input {min-width: 100%; order: 10;}
	.ac-form__header > span, .comm__rating::before {display: none;}
	.ac-form #b_color {display: none;}
	.ac-toggle .ac-form__bottom button {position: static; width: 100%;}
	.comm__img {width: 40px; height: 40px;}
	.comm__ctrl {justify-content: flex-start; min-width: 100%; margin-top: 10px;}
}

@media screen and (max-width: 590px) {
	.wrapper__container {max-width:480px;}
	.footer__col {min-width: 100%;}
	.header__login button {height: 40px; border-radius: 20px; padding: 0 20px;}
	.carou-4:not(.owl-carousel) > .item {width: calc((100% - 0px)/1);}
	.sect__header:has(.sorter) .sect__title {min-width: 100%;}
	.page__list-info, .page__lists {order: 11;}
	.page__share {width: 100%;}
	.page__lists {margin-right: auto;}
	.page__tooltip-info {left: auto; right: 0; transform: translate(0%,30px); width: calc(100vw - 40px);}
	.page__tooltip.is-active .page__tooltip-info {transform: translate(0%,0px);}
	.page__tooltip-info::before {display: none;}
}

@media screen and (max-width: 470px) {
	.wrapper__container123 {max-width:360px;}
	.carou-6:not(.owl-carousel) > .item {width: calc((100% - 20px)/2);}
	.header__btn1:first-child {display: none;}
	
	.page__lists {order: 10;}
	.page__scr ul {grid-template-columns: repeat(2,1fr);}
	.sect__title {line-height: 1.3;}
	.ac-form__bottom .comments_subscribe {font-size: 13px;}
	.full-text iframe {width: calc(100% + 40px); max-width: calc(100% + 40px); height: 260px; margin-left: -20px; margin-right: -20px;}
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel {width: 100%; position: relative; z-index: 1;}
.owl-stage {position: relative; display:flex; justify-content:flex-start;}
.owl-stage-outer {position: relative; overflow: hidden; transform: translate3d(0px, 0px, 0px);}
.owl-item {position: relative; min-height: 10px;}
.owl-nav.disabled,.owl-dots.disabled, .owl-carousel.owl-refresh .owl-item {display: none;}
.owl-carousel.owl-drag .owl-item {user-select: none;}
.owl-carousel.owl-grab {cursor: move; cursor: grab;}
.owl-carousel .animated {animation-duration: 1000ms; animation-fill-mode: both;}
.owl-animated-in {z-index: 0;}
.owl-animated-out {z-index: 1;}
.moveIn {animation-name: moveIn;}
@keyframes moveIn {from {transform: translateX(100%)} to {transform: translateX(0%)}}
.fadeOut {animation-name: fadeOut;}
.fadeIn {animation-name: fadeIn;}
@keyframes fadeOut { from {opacity: 1;} to {opacity: 0;} }
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
.scaleIn {animation-name: scaleIn;}
.scaleOut {animation-name: scaleOut;}
@keyframes scaleIn { from {opacity: 0; transform: scale(0.66,0.66); transform-origin: center top;} to {opacity: 1; transform: scale(1,1); transform-origin: center top;} }
@keyframes scaleOut { from {opacity: 1; transform: scale(1,1);} to {opacity: 0; transform: scale(0.66,0.66);} }
.slideOutDown {animation-name: slideOutDown;}
.slideInDown {animation-name: slideInDown;}
@keyframes slideOutDown { from {transform: translate3d(0, 0, 0);} to {visibility: hidden; transform: translate3d(0, 100%, 0);} }
@keyframes slideInDown { from {transform: translate3d(0, -100%, 0); visibility: visible;} to {transform: translate3d(0, 0, 0);} }
.rollOut {animation-name: rollOut;}
@keyframes rollOut { from {opacity: 1;} to {opacity: 0; transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);} }
.owl-nav {position: absolute; right: 0; left: 0; top: 50%; margin-top: -60px;}
.owl-prev, .owl-next {cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; 
	font-size: 18px; background-color: var(--bg); color: var(--tt-fade); box-shadow: var(--bsh); 
	position: absolute; top: 0; border-radius: 50%;}
.owl-prev {left: -20px;}
.owl-next {right: -20px;}
.owl-prev:hover, .owl-next:hover {background-color: var(--accent); color: #fff;}
.owl-dots {display: flex; gap: 10px; justify-content: center; 
	position: absolute; left: var(--indent); right: var(--indent); bottom: 10px;}
.owl-dot {display: block; width: 50px; height: 6px; border-radius: 3px; cursor: pointer; 
	background-color: rgba(71, 75, 78, 0.6); backdrop-filter: blur(15px);}
.owl-dot.active, .owl-dot:hover {background-color: var(--accent);}
#broadcasts .owl-nav {margin-top: -40px;}
#collections .owl-nav {margin-top: -40px;}
#bslider .owl-nav {left: auto; right: var(--indent); margin-top: -61px; 
	display: flex; flex-direction: column; gap: 15px;}
#bslider .owl-nav button {position: static; width: 54px; height: 54px; font-size: 18px; backdrop-filter: blur(15px);}
#bslider .owl-nav button:not(:hover) {background-color: rgba(71, 75, 78, 0.6); color: #fff;}
@media screen and (max-width: 760px) {
	#bslider .owl-nav {display: none;}
	.owl-dot {flex-grow: 1;}

}

.filter-block {margin-bottom: 30px;}
.filter-block__form {display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); grid-gap: 10px 10px;}
.filter-block__cell--full-width {grid-column: 1 / -1;}
.filter-block__cell-caption {margin-bottom: 10px;}
.filter-block__cell-content > * {width: 100%; display: block;}
.filter-block__cell-content--two-columns {display: flex; justify-content: space-between;}
.filter-block__cell-content--two-columns > * {width: calc((100% - 10px)/2) !important;}
.filter-block__cell-content select, .filter-block__cell-content input[type="text"], 
.filter-block__cell-content--check-group {height: 36px; line-height: 34px; background-position: right 8px top 50%;
	background-color: var(--bg-darker); color: var(--tt); border: 1px solid var(--bdc); border-radius: 4px; 
	box-shadow: none; font-size: 14px;  padding: 0 7px; 
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.filter-block__cell-content select {padding: 0 20px 0 4px;}
.filter-block__cell-content input[type="text"]::placeholder {opacity: 1; color: var(--tt); font-size: 14px;}
.filter-block__cell-content input[type="text"]:focus::placeholder {opacity: 0;}
.filter-block__cell-content label {position: relative; padding-left: 50px; cursor: pointer; 
	height: 36px; display: flex; flex-direction: column; justify-content: center; font-size: 14px;}
.filter-block__cell-content label input {display: inline-block; appearance: none; -webkit-appearance: none;
	height: 20px; width: 40px; border-radius: 10px; background-color: var(--bg-darker); cursor: pointer; transition: all .2s linear; 
	box-shadow: inset 0 2px 5px rgba(0,0,0,0.1); position: absolute; left: 0; top: 50%; margin-top: -10px;}
.filter-block__cell-content label input::before {content: ''; width: 18px; height: 18px; border-radius: 10px; 
	position: absolute; left: 1px; top: 1px; background-color: var(--bg); transition: all .2s linear;}
.filter-block__cell-content label input:checked {background-color: #6ab04c;}
.filter-block__cell-content label input:checked::before {left: 21px;}
.filter-block__cell-content input[type="button"], .filter-block__cell-content button {cursor: pointer; 
	height: 36px; display: inline-flex; justify-content: center; padding: 0 10px; box-shadow: none; border-radius: 4px;}
.filter-block__cell-content input[type="button"][data-dlefilter="reset"] {background: var(--bg-darker); color: var(--tt);}
.filter-block__cell-content--check-group label {padding: 0; text-align: center; white-space: nowrap; 
	flex: 1 1 0; min-width: 30px; max-width: 100%; background: var(--bg);}
.filter-block__cell-content--check-group label input {position: absolute; left: 0; top: 0; 
	width: 100%; height: 100%; opacity: 0; z-index: 5;}
.filter-block__cell-content--check-group {display: flex; justify-content: center; overflow: hidden; padding: 0;}
.filter-block__cell-content--check-group label + label {border-left: 1px solid var(--bg-darker);}
.filter-block__cell-content--check-group label div {height: 36px; font-size: 13px;}
.filter-block__cell-content--check-group label input:checked + div {background-color: var(--bg-darker); color: var(--tt);}
	