/* video info page - Enhanced Styles */

.video-info-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

.video-info-section .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Hero-style gradient - Left side dark */
.video-hero-gradient {
    position: absolute;
    inset: 0;
    width: 65%;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.98) 0%,
        rgba(0,0,0,0.95) 35%,
        rgba(0,0,0,0.75) 60%,
        rgba(0,0,0,0.4) 80%,
        rgba(0,0,0,0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Bottom fade */
.video-info-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #000, transparent);
    z-index: 3;
    pointer-events: none;
}

.video-info-section .video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full-width adjustments */
@media (max-width: 768px) {
    .video-info-section {
        height: 60vh;
    }
    
    .video-info-section .video {
        object-fit: contain !important;
        -webkit-object-fit: contain !important;
        width: 100% !important;
        height: 100% !important;
    }
}

@media (min-width: 480px) {
    .video-info-section {
        margin-left: calc(-1 * var(--app-space-md));
        margin-right: calc(-1 * var(--app-space-md));
        width: calc(100% + 2 * var(--app-space-md));
    }
}

@media (min-width: 960px) {
    .video-info-section {
        margin-left: calc(-1 * var(--app-space-lg));
        margin-right: calc(-1 * var(--app-space-lg));
        width: calc(100% + 2 * var(--app-space-lg));
    }
}

@media (min-width: 1200px) {
    .video-info-section {
        margin-left: calc(-1 * var(--app-space-xl));
        margin-right: calc(-1 * var(--app-space-xl));
        width: calc(100% + 2 * var(--app-space-xl));
    }
}

/* Video Text Overlay */
.video-text-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    padding: 20px 40px 40px 20px;
    margin: 0;
    width: 100%;
}

/* Hide UIkit slider navigation arrows in video section (doesn't affect scroller) */
.video-info-section .uk-slidenav,
.video-info-section .uk-position-center-left,
.video-info-section .uk-position-center-right,
.video-info-section .left-icon,
.video-info-section .right-icon {
    display: none !important;
    visibility: hidden !important;
}

/* ===============================
   TITLE IMAGE - HERO STYLE
   =============================== */
.video-title-image {
    max-width: 280px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .video-title-image {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .video-title-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .video-title-image {
        max-width: 160px;
    }
}

/* ===============================
   VIDEO ACTION BUTTONS - HERO STYLE
   =============================== */

.video-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    white-space: nowrap;
    color: #ffffff !important;
    background-color: #E50914;
    
}

.primary-btn {
    background: #E50914 !important;
    color: #ffffff !important;
    border: none;
}

.primary-btn:hover {
    background: #f40617 !important;
    transform: scale(1.02);
    text-decoration: none;
    color: #ffffff !important;
}

.primary-btn span {
    color: #ffffff !important;
}

.secondary-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 10px 20px !important;
    font-size: 14px;
    min-width: 120px;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    transform: scale(1.02);
    text-decoration: none;
    color: #ffffff !important;
}

.secondary-btn span {
    color: #ffffff !important;
}

.btn-play-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.btn-play-icon.secondary {
    color: #fff;
}

.secondary-btn:hover .btn-play-icon.secondary {
    color: #000;
}

/* Button Wrapper - Hero Style */
.video-action-btn-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* Video Action Icons */
.video-action-icons {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

/* Video Description */
.video-description,
.video-desc {
    color: #cccccc !important;
    line-height: 1.5;
    font-size: 14px;
    margin: 12px 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Desktop - limit width for wrap */
@media (min-width: 1024px) {
    .video-description,
    .video-desc {
        max-width: 550px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .video-description,
    .video-desc {
        max-width: 450px;
    }
}

/* Video Metadata Grid */
.video-metadata-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.metadata-item {
    color: #aaaaaa !important;
    font-size: 13px;
}

.metadata-label {
    color: #888888;
    margin-right: 5px;
}

/* Desktop */
@media (min-width: 960px) {
    .video-description {
        font-size: 14px;
        max-width: 550px;
    }
}

/* Tablet */
@media (max-width: 959px) {
    .video-description {
        font-size: 13px;
        max-width: 450px;
    }
}

/* Mobile */
@media (max-width: 639px) {
    .video-action-btn {
        padding: 10px 16px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .video-action-btn-wrapper {
        gap: 10px;
        margin-top: 15px;
    }
    
    .video-description {
        font-size: 13px;
        max-width: 100%;
    }
}

/* Video Icon Buttons (Watchlist, Share) - Hero Circle Style */
.video-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:#2a2a2a;
    
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.video-icon-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.video-icon-btn img {
    width: 20px !important;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.video-icon-btn:hover img {
    filter: brightness(0) invert(0);
}

.add-watchlist-btn,
.remove-watchlist-btn {
    width: 20px !important;
    height: 20px;
}

/* Mobile icon buttons */
@media (max-width: 639px) {
    .video-icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .video-icon-btn img {
        width: 18px !important;
        height: 18px;
    }
}

@media (max-width: 479px) {
    .video-icon-btn {
        width: 34px;
        height: 34px;
    }
}

/* ===============================
   ACTION BUTTONS (Watchlist, Like, Share)
   =============================== */

.video-info-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.video-info-actions img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-info-actions img:hover {
    transform: scale(1.15);
}

/* Extra large */
@media (min-width: 1200px) {
    .video-info-actions {
        gap: 20px;
    }
    .video-info-actions img {
        width: 45px;
    }
}

/* Large tablets */
@media (max-width: 1199px) and (min-width: 960px) {
    .video-info-actions {
        gap: 18px;
    }
    .video-info-actions img {
        width: 40px;
    }
}

/* Tablets */
@media (max-width: 959px) and (min-width: 640px) {
    .video-info-actions {
        gap: 15px;
    }
    .video-info-actions img {
        width: 38px;
    }
}

/* Large phones */
@media (max-width: 639px) and (min-width: 480px) {
    .video-info-actions {
        gap: 12px;
        margin-top: 12px;
    }
    .video-info-actions img {
        width: 35px;
    }
}

/* Small phones */
@media (max-width: 479px) {
    .video-info-actions {
        gap: 10px;
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .video-info-actions img {
        width: 32px;
    }
}

/* ===============================
   UIKIT SWITCHER FIX - Hide inactive tabs
   =============================== */
.uk-switcher > li:not(.uk-active) {
    display: none !important;
}

.uk-switcher > li.uk-active {
    display: block !important;
}

/* Additional specificity for video info page */
.uk-container .uk-switcher > li:not(.uk-active) {
    display: none !important;
}

.uk-container .uk-switcher > li.uk-active {
    display: block !important;
}

/* Hide all non-active list items in switcher */
[class*="uk-switcher"] > li:not(.uk-active) {
    display: none !important;
}

/* ===============================
   CAST SECTION STYLES
   =============================== */

.cast-row {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.cast-row::-webkit-scrollbar {
    height: 6px;
}

.cast-row::-webkit-scrollbar-track {
    background: transparent;
}

.cast-row::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.cast-card {
    min-width: 100px;
    max-width: 100px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Cast responsive */
@media (min-width: 1200px) {
    .cast-card {
        min-width: 110px;
        max-width: 110px;
    }
    .cast-name {
        font-size: 14px;
    }
}

@media (max-width: 639px) {
    .cast-card {
        min-width: 80px;
        max-width: 80px;
    }
    .cast-name {
        font-size: 11px;
    }
    .cast-role {
        font-size: 10px;
    }
    .cast-row {
        gap: 15px;
        padding: 15px 0;
    }
}

.cast-card:hover {
    transform: translateY(-3px);
}

.cast-card img {
    transition: transform 0.3s ease;
}

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

.cast-name {
    margin-top: 8px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.cast-role {
    margin-top: 3px;
    font-size: 11px;
    color: #888;
}

/* ===============================
   TAB NAVIGATION STYLES
   =============================== */

.video-info-tabs {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.video-info-tabs > li > a {
    color: #aaa !important;
    font-weight: 500;
    padding: 15px 20px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.video-info-tabs > li.uk-active > a {
    color: #E50914 !important;
    border-bottom-color: #E50914 !important;
}

.video-info-tabs > li > a:hover {
    color: #fff !important;
}

/* Tab responsive */
@media (min-width: 1200px) {
    .video-info-tabs > li > a {
        padding: 15px 25px;
        font-size: 15px;
    }
}

@media (max-width: 1199px) and (min-width: 960px) {
    .video-info-tabs > li > a {
        padding: 14px 18px;
        font-size: 14px;
    }
}

@media (max-width: 959px) and (min-width: 640px) {
    .video-info-tabs > li > a {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 639px) {
    .video-info-tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .video-info-tabs::-webkit-scrollbar {
        display: none;
    }
    .video-info-tabs > li > a {
        padding: 10px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
}

/* Fix for default UK tab styles */
.uk-tab > .uk-active > a {
    color: #E50914 !important;
    border-bottom-color: #E50914 !important;
}

.uk-tab > li > a {
    color: #aaa !important;
}

.uk-tab > li > a:hover {
    color: #fff !important;
}

/* ===============================
   HERO SECTION ENHANCEMENTS
   =============================== */

.hero-title-wrap {
    max-width: 400px;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title-image {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* Progress bar styles */
.custom-progress {
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.custom-progress-bar {
    height: 100%;
    background: #E50914;
    transition: width 0.3s ease;
}

/* Watchlist button hover effect */
.watchlist-btn {
    transition: all 0.3s ease;
}

.watchlist-btn:hover {
    transform: scale(1.1);
}

.watchlist-btn img {
    filter: brightness(0) invert(1);
}

/* Share dropdown styles */
.share-dropdown {
    background: rgba(0,0,0,0.9) !important;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.share-dropdown-wrapper {
    position: relative;
}

.share-dropdown-menu {
    display: none;
    position: absolute;
    bottom: 55px;
    right: 0;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 12px;
    min-width: 160px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.share-dropdown-menu a,
.share-dropdown-menu div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.share-dropdown-menu a:hover,
.share-dropdown-menu div:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    text-decoration: none;
}

.share-dropdown-menu img {
    width: 20px;
    height: 20px;
}

/* Video Mute Controls */
.video-mute-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 100;
    display: flex;
    gap: 8px;
}

.video-mute-controls span {
    cursor: pointer;
    padding: 10px;
    background: #2a2a2a;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
   
}

.video-mute-controls span:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #ffffff;
    transform: scale(1.1);
}

.video-mute-controls img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .video-mute-controls {
        bottom: 10px;
        right: 10px;
    }
    .video-mute-controls span {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    .video-mute-controls img {
        width: 18px;
        height: 18px;
    }
}

.share-dropdown .uk-dropdown-nav > li {
    padding: 8px 0;
}

.share-dropdown .uk-dropdown-nav > li > a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.share-dropdown .uk-dropdown-nav > li > a:hover {
    background: transparent;
    transform: scale(1.1);
}

/* Age badge */
.hero-age-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 10;
}

/* ===============================
   DETAILS SECTION STYLES
   =============================== */

.details-section {
    padding: 20px 0;
}

.details-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.detail-description {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 25px;
}

.description-text {
    color: #ccc;
    line-height: 1.7;
    margin-top: 10px;
}

/* Cast section headings */
.cast-heading {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cast-subheading {
    color: #aaa;
    font-size: 1.1rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Episodes Section */
.episodes-container {
    padding: 10px 0;
}

.episodes-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

/* Episodes responsive */
@media (min-width: 1200px) {
    .episodes-container {
        padding: 15px 0;
    }
    .episodes-header {
        margin-bottom: 25px;
    }
}

@media (max-width: 639px) {
    .episodes-container {
        padding: 5px 0;
    }
    .episodes-header {
        margin-bottom: 15px;
    }
}

/* Season Dropdown Button */
.season-dropdown-btn {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 16px;
    text-transform: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.season-dropdown-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.season-dropdown-btn span[uk-icon] {
    margin-top: 2px;
}

/* Series Dropdown Menu */
.seriesdropbar {
    background: rgba(30,30,30,0.95) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px;
    min-width: 150px;
}

.seriesdropbar .uk-nav > li {
    margin: 0;
}

.seriesdropbar .uk-nav > li > button {
    background: transparent;
    border: none;
    color: #aaa;
    text-align: left;
    padding: 8px 12px;
    width: 100%;
    transition: all 0.2s ease;
}

.seriesdropbar .uk-nav > li > button:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 4px;
}

.seriesdropbar .uk-nav > li > button a {
    color: inherit;
    text-decoration: none;
}

/* Cast image wrapper - Square with small border radius */
.cast-image-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cast-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.square-image {
    border-radius: 8px !important;
}

.director-image {
    border-radius: 8px !important;
}

.director-card .cast-image-wrap {
    border-radius: 8px !important;
}

/* Directors row */
.directors-row {
    margin-top: 10px;
}

/* ===============================
   MOBILE RESPONSIVE STYLES
   =============================== */

@media (max-width: 960px) {
    .hero-title-image {
        max-height: 100px;
    }
    
    .hero-title-wrap {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .cast-card {
        min-width: 70px;
        max-width: 70px;
    }
    
    .cast-image-wrap {
        width: 60px;
        height: 60px;
    }
    
    .cast-name {
        font-size: 11px;
    }
    
    .cast-role {
        font-size: 10px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-info-tabs > li > a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .hero-title-wrap {
        max-width: 250px;
    }
    
    .hero-title-image {
        max-height: 80px;
    }
    
    .hero-age-badge {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .custom-progress {
        height: 3px;
    }
}

/* ===============================
   ANIMATIONS
   =============================== */

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

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* Smooth scroll for cast row */
.cast-row {
    scroll-behavior: smooth;
}

/* Hover effects for interactive elements */
.hero-circle-btn,
.watchlist-btn {
    will-change: transform;
}

/* Notification styles for copy link */
.uk-notification-message {
    background: rgba(0,0,0,0.9) !important;
    color: #fff !important;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.uk-notification-message-success {
    border-left: 4px solid #32d296;
}

/* ===============================
   ENHANCED VIDEO INFO SECTION
   =============================== */

.video-info-enhanced {
    padding: 20px var(--app-space);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .video-info-enhanced {
        padding: 30px var(--app-space-lg);
    }
}

/* Section Titles */
.video-section {
    margin-bottom: 25px;
}

.section-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 639px) {
    .section-title {
        font-size: 16px;
    }
}

/* ===============================
   BADGES (Genre Pills)
   =============================== */

.video-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.video-badge {
    display: inline-block;
    /* background: rgba(255,255,255,0.15); */
    color: #ccc;
    padding: 5px 12px;
    /* border-radius: 20px; */
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    /* border: 1px solid rgba(255,255,255,0.2); */
    transition: all 0.2s ease;
}

.video-badge:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

@media (max-width: 639px) {
    .video-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* ===============================
   METADATA GRID
   =============================== */

.video-metadata-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 12px;
    padding: 10px 0;
}

.metadata-item {
    color: #aaa;
    font-size: 13px;
}

.metadata-label {
    color: #888;
    margin-right: 5px;
}

@media (max-width: 639px) {
    .video-metadata-grid {
        gap: 10px;
    }
    .metadata-item {
        font-size: 12px;
    }
}

/* ===============================
   CREW SECTION (Director/Producer)
   =============================== */

.video-crew-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
}

.crew-item {
    color: #ccc;
    font-size: 14px;
}

.crew-label {
    color: #888;
    font-weight: 500;
    margin-right: 5px;
}

@media (max-width: 639px) {
    .video-crew-section {
        flex-direction: column;
        gap: 10px;
    }
    .crew-item {
        font-size: 13px;
    }
}

/* ===============================
   EPISODES SECTION
   =============================== */

.episodes-section {
    margin-top: 20px;
}

.episodes-header {
    margin-bottom: 15px;
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.episode-item:hover {
    background: rgba(255,255,255,0.1);
}

.episode-thumbnail {
    width: 120px;
    min-width: 120px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.episode-number {
    color: #888;
    font-size: 12px;
    margin-bottom: 4px;
}

.episode-title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-duration {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
}

.episode-play-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E50914;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}

.episode-play-btn:hover {
    transform: scale(1.1);
    background: #f40617;
}

.episode-play-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 639px) {
    .episode-item {
        gap: 12px;
    }
    .episode-thumbnail {
        width: 100px;
        min-width: 100px;
        height: 56px;
    }
    .episode-title {
        font-size: 13px;
    }
    .episode-play-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

/* ===============================
   FULL DESCRIPTION
   =============================== */

.video-full-description {
    color: #ccc;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 639px) {
    .video-full-description {
        font-size: 13px;
        line-height: 1.6;
    }
}
