/* ========== ОСНОВА ========== */
.movie-full {
    background: #1a1a1a;
    padding-bottom: 20px;
}

/* ========== HEADER ========== */
.movie-header {
    position: relative;
    padding: 16px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}

.movie-title-full {
    margin: 0;
    padding-right: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

 
 

 

/* ========== СТАТИСТИКА ========== */
.stats-bar {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #1a1a1a;
    overflow-x: auto;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
}

.stat-chip svg {
    width: 14px;
    height: 14px;
    fill: #666;
}

.stat-chip.rating {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
}

.stat-chip.rating svg {
    fill: #FFD700;
}

.stat-chip.rating span {
    color: #FFD700;
    font-weight: 700;
}

/* ========== ПОСТЕР ========== */
.poster-container {
    position: relative;
    margin: 0 16px 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.poster-full {
    width: 100%;
    height: auto;
    display: block;
}

.quality-badge-full {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #FFD700;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.quality-4K, .quality-2160P { background: linear-gradient(135deg, #FFD700, #FFA500) !important; }
.quality-1080P, .quality-BLURAY { background: linear-gradient(135deg, #4CAF50, #66BB6A) !important; }
.quality-720P { background: linear-gradient(135deg, #2196F3, #42A5F5) !important; }
.quality-CAMRIP, .quality-TS { background: linear-gradient(135deg, #F44336, #EF5350) !important; color: #fff !important; }

/* ========== КОМПАКТНАЯ ИНФО СЕТКА ========== */
 

 

 

 

.info-item.subtitle {
    grid-column: 1 / -1;
    border-left: 3px solid #4CAF50;
}

.sub-Ελληνικοί, .sub-Greek { color: #4CAF50 !important; }
.sub-ENG { color: #2196F3 !important; }
.sub-Χωρίς { color: #F44336 !important; }

/* ========== ЖАНРЫ ========== */
.genre-section {
    padding: 0 16px 16px;
}

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

.genre-tags-full a {
    padding: 6px 14px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    font-size: 12px;
    color: #ccc;
    text-decoration: none;
}

/* ========== УВЕДОМЛЕНИЯ ========== */
.episode-notice {
    margin: 0 16px 12px;
    padding: 12px;
    background: rgba(33,150,243,0.1);
    border-left: 3px solid #2196F3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #ddd;
}

.episode-notice svg {
    width: 20px;
    height: 20px;
    fill: #2196F3;
}

.episode-notice.complete {
    background: rgba(76,175,80,0.1);
    border-left-color: #4CAF50;
}

.episode-notice.complete svg {
    fill: #4CAF50;
}

/* ========== ОПИСАНИЕ ========== */
.description-full {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* ========== КОМПАКТНЫЕ ДЕТАЛИ ========== */
.details-compact {
    margin: 0 16px 20px;
    padding: 16px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
}

.detail-line {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dt-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dt-value {
    font-size: 13px;
    color: #ddd;
    line-height: 1.4;
}

.dt-value.highlight {
    color: #4CAF50;
    font-weight: 600;
}

.detail-line.awards {
    background: rgba(255,215,0,0.05);
    padding: 12px;
    margin: 8px -16px -16px;
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.detail-line.awards .dt-value {
    color: #FFD700;
}

/* ========== КНОПКИ ПЛЕЕРА (как было) ========== */
.panel {
    display: flex;
    gap: 12px;
    padding: 0 16px 20px;
}

.panel .more {
    flex: 1;
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

.panel .more.secondary {
    background: #2a2a2a;
    border: 2px solid #3a3a3a;
    color: #ddd;
    box-shadow: none;
}

.panel .more a {
    color: inherit;
    text-decoration: none;
    display: block;
}



/* ========== RELATED NEWS SLIDER ========== */
.related-section {
    background: #1a1a1a;
    padding: 20px 0 24px;
    overflow: hidden;
}

.related-section .section-title {
    margin: 0 0 16px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
}

.related-grid {
    display: flex;
    gap: 12px;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #3a3a3a #1a1a1a;
    -webkit-overflow-scrolling: touch;
}

/* Webkit scrollbar */
.related-grid::-webkit-scrollbar {
    height: 6px;
}

.related-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    margin: 0 16px;
}

.related-grid::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 3px;
}

.related-grid::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* Карточка */
.related-card {
    flex-shrink: 0;
    width: 140px;
}

.related-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.related-link:active {
    transform: scale(0.95);
}

/* Постер */
.related-poster {
    position: relative;
    width: 140px;
    height: 210px;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* No poster placeholder */
.related-no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.related-no-poster svg {
    width: 48px;
    height: 48px;
    fill: #555;
}

/* Рейтинг */
.related-rating {
    position: absolute;
    bottom: 6px;
    left: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.related-rating svg {
    width: 12px;
    height: 12px;
    fill: #FFD700;
}

/* Заголовок */
.related-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Год */
.related-year {
    font-size: 11px;
    color: #888;
}

/* Fade edges effect */
.related-section::before,
.related-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 1;
}

.related-section::before {
    left: 0;
    background: linear-gradient(90deg, #1a1a1a 0%, transparent 100%);
}

.related-section::after {
    right: 0;
    background: linear-gradient(270deg, #1a1a1a 0%, transparent 100%);
}

/* Адаптив */
@media (min-width: 600px) {
    .related-card {
        width: 160px;
    }
    
    .related-poster {
        width: 160px;
        height: 240px;
    }
    
    .related-title {
        font-size: 14px;
    }
}

/* Анимация появления */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.related-card {
    animation: slideIn 0.3s ease-out;
    animation-fill-mode: both;
}

.related-card:nth-child(1) { animation-delay: 0.05s; }
.related-card:nth-child(2) { animation-delay: 0.1s; }
.related-card:nth-child(3) { animation-delay: 0.15s; }
.related-card:nth-child(4) { animation-delay: 0.2s; }
.related-card:nth-child(5) { animation-delay: 0.25s; }

/* ========== RELATED NEWS SLIDER ========== */


/* ========== COMMENTS ========== */
.comment-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 14px;
    transition: border-color 0.2s;
}

.comment-card:hover {
    border-color: #3a3a3a;
}

/* Header */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

/* Аватар */
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #2a2a2a;
    background: #2a2a2a;
}

/* Инфо автора */
.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comment-date {
    font-size: 11px;
    color: #888;
}

/* Действия */
.comment-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #2a2a2a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.action-btn svg {
    width: 20px;
    height: 20px;
    fill: #888;
    transition: fill 0.2s;
}

.action-btn:hover {
    background: #3a3a3a;
}

.action-btn:active {
    transform: scale(0.9);
}

/* Reply button */
.reply-btn:hover {
    background: rgba(33, 150, 243, 0.15);
}

.reply-btn:hover svg {
    fill: #2196F3;
}

/* Delete button */
.delete-btn:hover {
    background: rgba(244, 67, 54, 0.15);
}

.delete-btn:hover svg {
    fill: #F44336;
}

/* Текст комментария */
.comment-body {
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
    word-wrap: break-word;
}

.comment-body p {
    margin: 0 0 10px;
}

.comment-body p:last-child {
    margin-bottom: 0;
}

/* Ссылки в комментариях */
.comment-body a {
    color: #2196F3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.comment-body a:hover {
    border-bottom-color: #2196F3;
}

/* Цитаты в комментариях */
.comment-body blockquote {
    margin: 10px 0;
    padding: 10px 12px;
    background: #2a2a2a;
    border-left: 3px solid #4CAF50;
    border-radius: 4px;
    font-style: italic;
    color: #aaa;
}

/* Код в комментариях */
.comment-body code {
    padding: 2px 6px;
    background: #2a2a2a;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #4CAF50;
}

.comment-body pre {
    margin: 10px 0;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.4;
}

.comment-body pre code {
    padding: 0;
    background: none;
}

/* Смайлы (если есть) */
.comment-body img.smile {
    display: inline-block;
    vertical-align: middle;
    max-width: 24px;
    max-height: 24px;
}

/* Адаптивность */
@media (max-width: 400px) {
    .comment-card {
        padding: 12px;
    }
    
    .author-avatar {
        width: 36px;
        height: 36px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
    }
    
    .action-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Анимация появления */
@keyframes fadeInComment {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-card {
    animation: fadeInComment 0.3s ease-out;
}

/* Подсветка нового комментария */
.comment-card.new-comment {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Вложенные комментарии (если есть) */
.comment-card .comment-card {
    margin-left: 40px;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .comment-card .comment-card {
        margin-left: 20px;
    }
}



/* ========== COMMENTS SECTION ========== */
.comments-section {
    background: #1a1a1a;
    padding: 20px 16px;
}

.comments-header {
    margin-bottom: 16px;
}

.comments-header .section-title {
    padding: 0;
    margin: 0;
}

.comments-list {
    /* Контейнер для комментариев */
}

/* Пустое состояние */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.no-comments svg {
    width: 64px;
    height: 64px;
    fill: #3a3a3a;
    margin-bottom: 16px;
}

.no-comments p {
    margin: 0;
    font-size: 14px;
}


/* ========== COMMENT FORM ========== */
.comment-form-wrapper {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 16px;
}

.form-title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 12px;
    border-bottom: 2px solid #2a2a2a;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Form groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Inputs */
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    font-family: inherit;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus {
    outline: none;
    border-color: #4CAF50;
    background: #333;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Textarea */
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.2s;
    box-sizing: border-box;
    line-height: 1.5;
}

.form-textarea::placeholder {
    color: #666;
}

.form-textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: #333;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Счетчик символов */
.textarea-counter {
    text-align: right;
    font-size: 11px;
    color: #666;
    margin-top: -4px;
}

.textarea-counter #char-count {
    color: #4CAF50;
    font-weight: 600;
}

/* Labels */
.captcha-label,
.question-label,
.recaptcha-label {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}

/* Капча */
.captcha-group {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 16px;
}

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.captcha-image {
    display: flex;
    justify-content: center;
    padding: 12px;
    background: #fff;
    border-radius: 6px;
}

.captcha-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.captcha-input {
    /* Использует стили .form-input */
}

/* Вопрос */
.question-group {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 16px;
}

.question-label {
    display: block;
    margin-bottom: 8px;
}

/* reCAPTCHA */
.recaptcha-group {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 16px;
}

.recaptcha-container {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

/* Кнопка отправки */
.form-actions {
    margin-top: 8px;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    text-transform: none;
    font-family: inherit;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #66BB6A, #81C784);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.submit-btn:disabled {
    background: #3a3a3a;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

/* Валидация */
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #F44336;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

/* Адаптивность */
@media (min-width: 600px) {
    .comment-form-wrapper {
        margin: 20px 0;
    }
    
    .captcha-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .captcha-image {
        flex-shrink: 0;
    }
    
    .captcha-input {
        flex: 1;
    }
}

/* Анимация появления */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-form-wrapper {
    animation: slideUp 0.3s ease-out;
}

/* Focus visible для доступности */
.form-input:focus-visible,
.form-textarea:focus-visible,
.submit-btn:focus-visible {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}


/* ========== FULLSTORY STYLES ========== */
.movie-full {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

/* Header */
.movie-header {
    position: relative;
    padding: 16px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-bottom: 1px solid #3a3a3a;
}

.movie-title-full {
    margin: 0;
    padding-right: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.fav-btn-full {
    
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fav-icon {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.fav-outline { display: block; }
.fav-filled { display: none; }
.favmod.active .fav-outline { display: none; }
.favmod.active .fav-filled { display: block; fill: #e74c3c; }

/* Stats bar */
.stats-bar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    overflow-x: auto;
    scrollbar-width: none;
}

.stats-bar::-webkit-scrollbar {
    display: none;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #2a2a2a;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid #3a3a3a;
}

.stat-chip svg {
    width: 16px;
    height: 16px;
    fill: #888;
}

.stat-chip.rating svg {
    fill: #FFD700;
}

.stat-chip.rating {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-color: #4a4a4a;
}

/* Poster */
.poster-container {
    position: relative;
    padding: 16px;
    display: flex;
    justify-content: center;
}

.poster-full {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.quality-badge-full {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: #FFD700;
    color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.quality-badge-full.quality-4K,
.quality-badge-full.quality-2160P {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.quality-badge-full.quality-1080P,
.quality-badge-full.quality-BLURAY {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.quality-badge-full.quality-720P {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.quality-badge-full.quality-CAMRIP,
.quality-badge-full.quality-TS {
    background: linear-gradient(135deg, #F44336, #EF5350);
    color: #fff;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; 
    padding: 7px;
    background: #1a1a1a;
}

.info-item {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.info-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.info-value.sub-none,
.info-value.sub-eng {
    color: #F44336;
}

.info-value.sub-ready {
    color: #4CAF50;
}

/* Sections */
.section-title {
    margin: 0;
    padding: 16px 16px 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #1a1a1a;
}

/* Genres */
.genre-section {
    background: #1a1a1a;
    padding-bottom: 16px;
}

.genre-tags-full {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px;
}

.genre-tags-full a {
    display: inline-block;
    padding: 8px 16px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s;
}

.genre-tags-full a:active {
    background: #3a3a3a;
    transform: scale(0.95);
}

/* Episode notices */
.episode-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px;
    padding: 14px;
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: #2196F3;
}

.episode-notice.complete {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.episode-notice svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.episode-notice strong {
    color: #fff;
}

/* Description */
.description-section {
    background: #1a1a1a;
    padding-bottom: 16px;
}

.description-full {
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.description-full p {
    margin: 0 0 12px;
}

/* Details */
.details-section {
    background: #1a1a1a;
    padding-bottom: 16px;
}

.details-grid {
    padding: 0 16px;
}

.detail-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
    gap: 12px;
}

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

.dt-label {
    flex-shrink: 0;
    width: 100px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.dt-value {
    flex: 1;
    font-size: 13px;
    color: #fff;
}

.dt-value.highlight {
    color: #4CAF50;
    font-weight: 600;
}

.detail-row.awards .dt-value {
    color: #FFD700;
}

.detail-row.slogan .dt-value {
    font-style: italic;
    color: #aaa;
}

 

/* Related */
.related-section {
    background: #1a1a1a;
    padding: 16px 0;
}

.related-grid {
    padding: 0 8px;
}

/* Адаптивность */
@media (min-width: 600px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dt-label {
        width: 140px;
    }
}

@media (min-width: 900px) {
    .movie-full {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .poster-full {
        max-width: 400px;
    }
}













































/* Comment Card - Dark Theme */
.comment-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #404040;
}

/* Header */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.comment-author {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #404040;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.author-name {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.comment-date,
.comment-num {
    font-size: 12px;
    color: #909090;
}

/* Actions */
.comment-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
    position: relative;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.action-item a,
.action-item > a {
    color: #909090;
    text-decoration: none;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.action-item a:hover {
    background: rgba(255,255,255,0.1);
    color: #2196f3;
}

.like-count {
    font-size: 12px;
    color: #909090;
    font-weight: 600;
    user-select: none;
}

/* Desktop/Mobile Actions */
.desktop-actions {
    display: flex;
    gap: 6px;
}

.mobile-actions {
    display: none;
    position: relative;
}

.more-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #909090;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.more-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    overflow: hidden;
}

.dropdown-menu a {
    color: #979797;
}


.desktop-actions a {
    color: #979797;
}


.mobile-actions.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
}

.dropdown-item > a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    border-radius: 0 !important;
}

.dropdown-item > a:hover {
    background: #2a2a2a !important;
}

.dropdown-item.delete > a {
    color: #f44336;
}

.dropdown-item span {
    flex: 1;
}

/* Body */
.comment-body {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    word-wrap: break-word;
}

.comment-body a {
    color: #4fc3f7;
    text-decoration: none;
}

.comment-body a:hover {
    text-decoration: underline;
}

/* Signature */
.comment-signature {
    padding: 8px 12px;
    background: #1a1a1a;
    border-left: 3px solid #e50914;
    border-radius: 4px;
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 12px;
}

/* Footer */
.comment-footer {
    padding-top: 12px;
    border-top: 1px solid #404040;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #909090;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.news-link:hover {
    color: #e50914;
}

.news-link svg {
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .desktop-actions {
        display: none;
    }
    
    .mobile-actions {
        display: block;
    }
    
    .comment-card {
        padding: 12px;
    }
    
    .author-avatar {
        width: 36px;
        height: 36px;
    }
}













/* Fast Reply Form */
#dlefastreplycomments {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}

#dlefastreplycomments > b {
    color: #e50914;
    font-weight: 600;
}

#dlefastreplycomments br {
    display: block;
    content: "";
    margin: 8px 0;
}

/* BB Editor */
.bb-editor {
    margin: 12px 0;
}

.bb-editor textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    background: #1a1a1a;
    border: 2px solid #404040;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    transition: border-color 0.2s;
}

.bb-editor textarea:focus {
    outline: none;
    border-color: #e50914;
    background: #222;
}

.bb-editor textarea::placeholder {
    color: #808080;
}

/* Buttons */
#dlefastreplycomments div[align="right"] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 12px;
}

.bbcodes {
    padding: 7px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.bbcodes[value="Reply"] {
    background: #e50914;
    color: #fff;
}

.bbcodes[value="Reply"]:hover {
    background: #c00;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(229,9,20,0.3);
}

.bbcodes[value="Reply"]:active {
    transform: translateY(0);
}

.bbcodes[value="Cancel"] {
    background: #404040;
    color: #e0e0e0;
}

.bbcodes[value="Cancel"]:hover {
    background: #505050;
}

.bbcodes[value="Cancel"]:active {
    background: #303030;
}

/* Mobile */
@media (max-width: 768px) {
    #dlefastreplycomments {
        padding: 12px;
    }
    
    .bb-editor textarea {
        min-height: 100px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .bbcodes {
        padding: 7px 16px;
        flex: 1;
    }
}



ul.bb-pane-dropdown {
    display: none;
}





 










 



     
       /* Player Section */
.player-section {
    background: #1a1a1a;
    padding-bottom: 16px;
}

.section-title {
    padding: 16px;
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.tabs {
    padding: 0 16px;
}

.tabs ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tabs ul li {
    flex: 1;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.tabs ul li.active {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-color: #4CAF50;
    color: #fff;
}

.tabs ul li:active {
    transform: scale(0.97);
}

.tab12size {
    display: none;
}

.tab12size:first-child {
    display: block;
}

/* Player Wrapper - универсальный контейнер */
.player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
    border-radius: 0;
}

.player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Player Loading Button */
.player-loading-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #444;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-loading-btn.clicked {
    opacity: 0;
    pointer-events: none;
}

/* Player Loading Iframe */
.player-loading-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.player-loading-iframe.loaded {
    display: block;
    opacity: 1;
}

.player-loading-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: none;
}

/* Fake Player (превью) */
.player-iframe {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #211f26;
}

.fake-player {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fake-player::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1b1b21c9 0%, #211f26 100%);
    z-index: 0;
}

.fake-player-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    padding: 20px;
    color: #fff;
    text-shadow: 0 1px 1px #000;
    display: flex;
    flex-direction: column;
}

.fake-player-info span:first-child {
    font-weight: 600;
    margin-bottom: 5px;
}

.fake-player-info span:last-child {
    font-size: 13px;
}

#fake-player-btnplay {
    cursor: pointer;
    position: relative;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

#fake-player-btnplay:hover {
    opacity: 1;
    transform: scale(1.1);
}

.fake-player svg {
    fill: #31c468;
    width: 80px;
    height: 80px;
}

/* Utility classes */
.fx-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fx-center {
    justify-content: center;
}

.fx-middle {
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
    .tabs {
        padding: 0 12px;
    }
    
    .section-title {
        padding: 12px;
        font-size: 16px;
    }
    
    .tabs ul {
        gap: 6px;
    }
    
    .tabs ul li {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .fake-player svg {
        width: 60px;
        height: 60px;
    }
    
    .fake-player-info {
        padding: 16px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .player-wrapper {
        padding-bottom: 56.25%;
    }
}

/* Desktop Large */
@media (min-width: 1921px) {
    .player-wrapper {
        padding-bottom: 56.25%;
    }
}



/* Player Section */




















/* Bottom Player Container */
.botom-player {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 16px 24px;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
}

/* Favorite Button */
.fav-btn-full {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.favmod {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
    text-decoration: none;
    color: #909090;
    transition: all 0.2s;
}

.favmod:hover {
    background: #333;
    border-color: #4a4a4a;
    transform: translateY(-2px);
}

.fav-icon {
    fill: #909090;
    transition: fill 0.2s;
}

.favmod.active .fav-icon {
    fill: #e50914;
}

.fav-filled {
    display: none;
}

.favmod.active .fav-filled {
    display: block;
}

.favmod.active .fav-outline {
    display: none;
}

/* Subscribe Widget */
.subscr-lazydev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 !important;
}

.subscr-left {
    display: none;
}

.subscr-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Subscribe Button */
.subscr-btn,
.unsubscr-btn {
    position: relative;
    padding: 10px 20px;
    padding-left: 44px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid;
}

.subscr-btn::before,
.unsubscr-btn::before {
    content: "🔔";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.subscr-btn {
    background: #e50914;
    color: #fff;
    border-color: #e50914;
}

.subscr-btn:hover {
    background: #ff1a24;
    border-color: #ff1a24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.subscr-btn:active {
    transform: translateY(0);
}

.unsubscr-btn {
    background: #2a2a2a;
    color: #e0e0e0;
    border-color: #3a3a3a;
}

.unsubscr-btn::before {
    content: "🔕";
}

.unsubscr-btn:hover {
    background: #333;
    border-color: #4a4a4a;
    transform: translateY(-2px);
}

.unsubscr-btn:active {
    transform: translateY(0);
}

/* Subscribe Info */
.subscr-info {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #3a3a3a;
    color: #909090;
    font-size: 13px;
    font-weight: 600;
}

.subscr-info::before {
  /*   content: "👥";*/
   /*  font-size: 16px;*/
}

.subscr-info span {
    color: #fff;
}

/* Mobile */
@media (max-width: 300px) {
    .botom-player {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .subscr-btn,
    .unsubscr-btn {
        padding: 10px 16px;
        padding-left: 40px;
        font-size: 13px;
    }
    
    .subscr-btn::before,
    .unsubscr-btn::before {
        font-size: 16px;
        left: 12px;
    }
}

/* Ignore Select */
.ignore-select {
    user-select: none;
    -webkit-user-select: none;
}















