/* ========================================
   Modern Video Watch Page Styles - Updated
   ======================================== */

/* Main Section Padding */
.details-section {
    padding-top: 100px;
}

/* Container ve Row Düzeni */
.details-section .container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.details-section .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Film durumunda ortalama */
.details-section .row.movie-centered {
    justify-content: center;
}

.details-section .row.movie-centered .col-lg-9 {
    max-width: auto;
    flex: 0 0 auto;
}

.details-section .col-lg-9 {
    flex: 1;
    max-width: none;
}

/* Video Player Wrapper */
.video-player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.video-player-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.video-player-wrapper video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* Movie Details Section */
.movie-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.movie-details .title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Movie Meta Wrapper */
.movie-meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.movie-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.movie-meta span i {
    color: hsl(var(--base));
    font-size: 16px;
}

.movie-meta span .fas.fa-star {
    color: hsl(45, 100%, 58%);
}

/* Movie Details Container - Allow tooltips to overflow */
.movie-details {
    position: relative;
    overflow: visible;
}

/* Watch Toolbar - Modern Unified Layout */
.watch-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: visible;
    position: relative;
}

/* Action Divider */
.action-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
}

/* Responsive Toolbar */
@media (max-width: 991px) {
    .watch-toolbar {
        flex-direction: column-reverse;
        /* Rating bottom, actions top */
        gap: 20px;
        padding: 20px;
        align-items: center;
    }

    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: center;
    }

    .toolbar-left {
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .action-divider {
        display: none;
    }
}

/* Action Icons Group - Modern Professional Design */
.action-icons-group {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0;
}

.action-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.action-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.action-icon-btn:hover::before {
    width: 100%;
    height: 100%;
}

.action-icon-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-icon-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.action-icon-btn:hover i {
    transform: scale(1.15);
}

.action-icon-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Active States - Sayfa Standartına Uygun Renkler */
.action-icon-btn.active[data-action="love"] {
    background: linear-gradient(135deg, hsl(25, 95%, 55%) 0%, hsl(15, 90%, 50%) 100%);
    border-color: hsl(25, 95%, 55%);
    color: #fff;
    box-shadow: 0 4px 15px hsla(25, 95%, 55%, 0.4);
}

.action-icon-btn.active[data-action="like"] {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    box-shadow: 0 4px 15px hsl(var(--base) / 0.4);
}

.action-icon-btn.active[data-action="dislike"] {
    background: linear-gradient(135deg, hsl(0, 70%, 50%) 0%, hsl(0, 80%, 45%) 100%);
    border-color: hsl(0, 70%, 50%);
    color: #fff;
    box-shadow: 0 4px 15px hsla(0, 70%, 50%, 0.4);
}

.action-icon-btn.active[data-action="bookmark"] {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    box-shadow: 0 4px 15px hsl(var(--base) / 0.4);
}

.action-icon-btn.active[data-action="watched"] {
    background: linear-gradient(135deg, hsl(142, 70%, 45%) 0%, hsl(142, 75%, 40%) 100%);
    border-color: hsl(142, 70%, 45%);
    color: #fff;
    box-shadow: 0 4px 15px hsla(142, 70%, 45%, 0.4);
}

/* Icon specific hover colors - Sayfa Standartına Uygun */
.action-icon-btn[data-action="love"]:hover {
    border-color: hsl(25, 95%, 55%);
    color: hsl(25, 95%, 55%);
}

.action-icon-btn[data-action="like"]:hover {
    border-color: hsl(var(--base));
    color: hsl(var(--base));
}

.action-icon-btn[data-action="dislike"]:hover {
    border-color: hsl(0, 70%, 50%);
    color: hsl(0, 70%, 50%);
}

.action-icon-btn[data-action="bookmark"]:hover {
    border-color: hsl(var(--base));
    color: hsl(var(--base));
}

.action-icon-btn[data-action="watched"]:hover {
    border-color: hsl(142, 70%, 45%);
    color: hsl(142, 70%, 45%);
}

/* Movie Description */
.movie-description {
    margin-bottom: 25px;
}

.movie-description h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.movie-description h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: hsl(var(--base));
    border-radius: 2px;
}

.movie-description p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Movie Cast */
.movie-cast {
    margin-top: 25px;
}

.movie-cast h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.movie-cast h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: hsl(var(--base));
    border-radius: 2px;
}

.movie-cast p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Sidebar Column */
.details-section .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 350px;
    flex: 0 0 350px;
}

/* Episodes Column - Allow tooltips to overflow */
.details-section .col-lg-3,
.details-section .col-xl-3 {
    overflow: visible;
}

/* Episodes Sidebar */
.episodes-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow: visible;
}

.episodes-card {
    /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    position: relative;
}

.episodes-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid hsl(var(--base));
    display: flex;
    align-items: center;
    gap: 10px;
}

.episodes-card-title i {
    color: hsl(var(--base));
    font-size: 22px;
}

/* Seasons Filter */
.seasons-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    padding: 0 15px 0 0;
    /* Yatay scroll desteği */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--base)) rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.seasons-filter::-webkit-scrollbar {
    height: 4px;
}

.seasons-filter::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.seasons-filter::-webkit-scrollbar-thumb {
    background: hsl(var(--base));
    border-radius: 4px;
}

.seasons-filter::-webkit-scrollbar-thumb:hover {
    background: hsl(220, 55%, 40%);
}

.season-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.season-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

.season-btn.active {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    box-shadow: 0 2px 8px hsl(var(--base) / 0.3);
}

/* Episodes List */
.episodes-list {
    max-height: calc(100vh - 260px);
    min-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    /* Sol padding kadar sağ padding */
    padding-left: 0;
}

.episodes-list::-webkit-scrollbar {
    width: 6px;
}

.episodes-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.episodes-list::-webkit-scrollbar-thumb {
    background: hsl(var(--base));
    border-radius: 10px;
    transition: background 0.3s ease;
}

.episodes-list::-webkit-scrollbar-thumb:hover {
    background: hsl(220, 55%, 40%);
}

/* Episode Item - Kompakt Liste Görünümü */
.episode-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.episode-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: hsl(var(--base));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.episode-item:hover::before,
.episode-item.active::before {
    transform: scaleY(1);
}

.episode-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.episode-item.active {
    background: rgba(37, 99, 235, 0.1);
    border-color: hsl(var(--base));
}

/* Episode Number Badge */
.episode-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: hsl(var(--base));
    transition: all 0.3s ease;
}

.episode-item:hover .episode-number {
    background: hsl(var(--base));
    color: #fff;
    border-color: hsl(var(--base));
    transform: scale(1.05);
}

.episode-item.active .episode-number {
    background: hsl(var(--base));
    color: #fff;
    border-color: hsl(var(--base));
}

/* Eski görselli kısımları kaldırdık */
.episode-thumb {
    display: none;
}

.episode-overlay {
    display: none;
}

.episode-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
}

.episode-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    /* allow ellipsis */
}

.episode-info h6 {
    margin: 0 0 2px 0;
    font-size: 13px;
    font-weight: 500;
    /* sinematik görünüm */
    color: #fff;
    line-height: 1.2;
}

.episode-info .episode-title {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-info .episode-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-top: 2px;
}

.episode-info .episode-duration i {
    color: hsl(var(--base));
    font-size: 10px;
}

/* Sağ grup: watched icon */
.episode-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-left: 8px;
}

.watched-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: transparent;
    /* başlangıçta görünmez */
    font-size: 16px;
    cursor: pointer;
    transition: all 0.18s ease;
}

.watched-icon .check {
    line-height: 1;
    opacity: 0;
    /* başlangıçta görünmez */
    transition: opacity 0.18s ease;
}

/* Mouse üzerine gelince ikon görünsün */
.episode-item:hover .watched-icon .check {
    opacity: 1;
    color: rgba(255, 255, 255, 0.5);
}

.episode-item:hover .watched-icon {
    background: rgba(255, 255, 255, 0.05);
}

/* Tıklanınca ikon kalıcı olarak görünsün */
.episode-item.watched .watched-icon .check,
.watched-icon[aria-pressed="true"] .check {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.9);
}

.episode-item.watched .watched-icon,
.watched-icon[aria-pressed="true"] {
    background: rgba(255, 255, 255, 0.08);
}

/* Only active episode checkbox is visible and interactive */
.episode-item:not(.active) .watched-icon {
    display: none !important;
}

.episode-item.active .watched-icon {
    display: inline-flex;
    pointer-events: auto;
    opacity: 1;
}

/* Sidebar Wrapper - Eski sidebar için uyumluluk */
.sidebar-wrapper {
    display: none;
}

/* Movie Info Cards */
.movie-info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid hsl(var(--base));
}

.movie-info-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.movie-info-card p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}



.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-tag:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design - Büyük Ekranlar (2K, 4K) */
@media (min-width: 1920px) {
    .recommended-card {
        max-width: 240px;
        /* 1920px+ için daha küçük card */
    }

    .recommended-content h5 {
        font-size: 13px;
    }

    .recommended-content {
        padding: 10px;
    }
}

@media (min-width: 2560px) {
    .recommended-card {
        max-width: 260px;
        /* 4K ekranlar için biraz daha büyük ama kontrollü */
    }

    .recommended-content h5 {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .details-section {
        padding-top: 80px;
    }

    .details-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .details-section .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .details-section .row.movie-centered .col-lg-9 {
        max-width: 100%;
    }

    .details-section .col-lg-3 {
        max-width: 100%;
        flex: 0 0 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .episodes-sidebar {
        position: static;
        max-height: none;
    }

    .episodes-list {
        max-height: 500px;
    }

    .movie-details .title {
        font-size: 26px;
    }

    .movie-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .top-right-controls {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }



    .action-icons-group {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .action-icon-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .movie-info-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .movie-info-card h5 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .movie-info-card p {
        font-size: 15px;
    }

    .recommended-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .recommended-section .section-title {
        font-size: 22px;
    }

    .recommended-card {
        max-width: 200px;
        /* Tablet için */
    }
}

@media (max-width: 767px) {
    .details-section {
        padding-top: 70px;
    }

    .details-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .video-player-wrapper {
        border-radius: 8px;
        margin-bottom: 20px;
        margin-top: 50px;
        padding-top: 0;
    }

    .movie-details {
        padding: 20px;
    }

    .movie-details .title {
        font-size: 22px;
    }

    .movie-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .movie-meta span {
        font-size: 14px;
    }

    .actions-rating-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .viewer-rating-inline {
        width: 100%;
        margin-left: 0;
        padding: 10px 14px;
    }

    .rating-label {
        font-size: 13px;
    }

    .viewer-stars-inline .viewer-star {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .action-icons-group {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .action-icon-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .movie-info-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .movie-info-card h5 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .movie-info-card p {
        font-size: 14px;
    }

    .episodes-card {
        padding: 15px;
    }

    .episodes-card-title {
        font-size: 18px;
    }

    .seasons-filter {
        gap: 6px;
        margin-bottom: 12px;
        padding: 0 15px 0 0;
    }

    .season-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .episode-item {
        padding: 10px;
        gap: 10px;
    }

    .episode-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .watched-icon {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .recommended-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .recommended-section .section-title {
        font-size: 20px;
    }

    .recommended-content h5 {
        font-size: 13px;
        min-height: 34px;
    }

    .recommended-meta .rating,
    .recommended-meta .year {
        font-size: 11px;
    }

    .recommended-card {
        max-width: 180px;
        /* Mobil için */
    }
}

@media (max-width: 575px) {
    .details-section {
        padding-top: 60px;
    }

    .video-player-wrapper {
        margin-top: 50px;
        padding-top: 0;
    }

    .movie-details .title {
        font-size: 20px;
    }

    .action-icons-group {
        gap: 8px;
        padding: 12px 0;
    }

    .action-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .movie-description h4,
    .movie-cast h4 {
        font-size: 18px;
    }

    .movie-description p,
    .movie-cast p {
        font-size: 14px;
    }

    .movie-info-card {
        padding: 10px;
        margin-bottom: 10px;
    }

    .movie-info-card h5 {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .movie-info-card p {
        font-size: 13px;
    }

    .seasons-filter {
        gap: 5px;
        margin-bottom: 10px;
        padding: 0 15px 0 0;
        flex-wrap: wrap;
    }

    .season-btn {
        padding: 4px 8px;
        font-size: 10px;
    }

    .episode-item {
        flex-direction: row;
        padding: 8px 10px;
        gap: 10px;
        min-height: 55px;
    }

    .episode-number {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .episode-info h6 {
        font-size: 12px;
    }

    .episode-info .episode-title {
        font-size: 11px;
    }

    .episode-info .episode-duration {
        font-size: 10px;
    }

    .actions-rating-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .viewer-rating-inline {
        width: 100%;
        margin-left: 0;
        padding: 8px 12px;
    }

    .rating-label {
        font-size: 12px;
    }

    .viewer-stars-inline .viewer-star {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .action-icons-group {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .action-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .recommended-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .recommended-section .section-title {
        font-size: 18px;
        padding-left: 12px;
    }

    .recommended-section .section-title::before {
        width: 4px;
        height: 22px;
    }

    .recommended-content h5 {
        font-size: 12px;
        min-height: 32px;
    }

    .recommended-overlay i {
        font-size: 24px;
    }

    .recommended-meta .rating {
        font-size: 11px;
    }

    .recommended-meta .rating i {
        font-size: 11px;
    }

    .recommended-meta .year {
        font-size: 10px;
    }

    .recommended-card {
        max-width: 160px;
        /* Küçük mobil için */
    }
}

/* ========================================
   Recommended Movies/Series Section - Optimize edilmiş
   ========================================== */

.recommended-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
}

.recommended-section .container {
    max-width: 1600px;
    padding-left: 15px;
    padding-right: 15px;
}

.recommended-section .section-header {
    margin-bottom: 25px;
}

.recommended-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
    padding-left: 18px;
}

/* .recommended-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 28px;
    background: hsl(var(--base));
    border-radius: 3px;
} */

/* Swiper Navigation - Hidden */
.swiper-navigation {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Recommended Card - Basitleştirilmiş ve optimize edilmiş */
.recommended-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    /* 2K ekranlar için maksimum genişlik sınırı */
    transform: translateZ(0);
    /* GPU hızlandırması - daha stabil */
}

.recommended-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.recommended-thumb {
    width: 100%;
    aspect-ratio: 2/3;
    /* Responsive oran */
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Loading state */
}

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

/* Overlay - Yukarıdan aşağıya düşen efekt */
.recommended-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    overflow: hidden;
}

/* Yukarıdan aşağıya düşen renk efekti */
.recommended-overlay::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: hsl(var(--base));
    opacity: 0.85;
    z-index: -1;
    transition: height 0.5s ease;
    visibility: hidden;
}

.recommended-card:hover .recommended-overlay {
    opacity: 1;
}

.recommended-card:hover .recommended-overlay::before {
    visibility: visible;
    height: 100%;
}

.recommended-overlay i {
    color: #fff;
    font-size: 32px;
    transform: scale(0.6);
    transition: transform 0.4s ease;
}

.recommended-card:hover .recommended-overlay i {
    transform: scale(1);
}

.recommended-content {
    padding: 12px;
    background-color: rgba(14, 13, 18, 0.9);
}

.recommended-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.recommended-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.recommended-meta .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
}

.recommended-meta .rating i {
    color: #ffd700;
    font-size: 12px;
}

.recommended-meta .year {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

/* Swiper Container - Düzgün padding ve boşluk */
.recommended-swiper {
    padding: 10px 0 30px 0;
    margin: 0;
    overflow: hidden;
    /* Performans için hidden */
}

.recommended-swiper .swiper-wrapper {
    transition-timing-function: linear;
    /* Daha pürüzsüz kaydırma */
}

.swiper-slide {
    height: auto;
    transform: translateZ(0);
    /* GPU hızlandırması */
    backface-visibility: hidden;
    /* Kasma önleme */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

/* ========================================
   Video Player Controls - Theme Color
   ======================================== */

/* Plyr Progress Bar Color - Tema Mavisi */
.details-section .plyr__progress__played,
.details-section .plyr__volume__progress {
    background-color: hsl(var(--base));
}

.details-section .plyr__progress__buffer {
    background-color: hsl(var(--base) / 0.3);
}

.details-section .plyr__control[aria-expanded="true"] {
    background-color: hsl(var(--base));
}

.details-section .plyr__progress__played::after {
    background-color: hsl(var(--base));
}

.details-section .plyr__volume__progress::after {
    background-color: hsl(var(--base));
}

.details-section .plyr__control--overlaid {
    background-color: hsl(var(--base) / 0.8);
}

.details-section .plyr__control--overlaid:hover {
    background-color: hsl(var(--base));
}

/* Progress bar range input */
.details-section .plyr--full-ui input[type="range"] {
    color: hsl(var(--base));
}

/* Volume bar range input */
.details-section .plyr__volume input[type="range"] {
    color: hsl(var(--base));
}

/* Kontroller hover ve focus durumu */
.details-section .plyr--video .plyr__control:focus-visible,
.details-section .plyr--video .plyr__control:hover,
.details-section .plyr--video .plyr__control[aria-expanded="true"] {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

/* Progress bar thumb */
.details-section .plyr__progress input[type="range"]::-webkit-slider-thumb {
    background-color: hsl(var(--base));
}

.details-section .plyr__progress input[type="range"]::-moz-range-thumb {
    background-color: hsl(var(--base));
}

/* Volume bar thumb */
.details-section .plyr__volume input[type="range"]::-webkit-slider-thumb {
    background-color: hsl(var(--base));
}

.details-section .plyr__volume input[type="range"]::-moz-range-thumb {
    background-color: hsl(var(--base));
}

/* Ayarlar menüsü (Settings) ve Captions */
.details-section .plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
    background-color: hsl(var(--base));
}

.details-section .plyr__menu__container .plyr__control--pressed {
    color: hsl(var(--base));
}

.details-section .plyr__menu__container [role="menuitemradio"]:hover {
    background-color: hsl(var(--base) / 0.1);
}

.details-section .plyr__menu__container [role="menuitemradio"][aria-checked="true"] {
    background-color: hsl(var(--base) / 0.15);
}

/* SVG ikonlar için renk */
.details-section .plyr__controls button.plyr__control svg {
    fill: currentColor;
}

/* Hover durumlarında hafif arka plan */
.details-section .plyr__controls button.plyr__control:hover {
    background-color: hsl(var(--base) / 0.2);
}

/* ========================================
   Watch Page Inline Styles (Moved from Blade)
   ======================================== */

.video-player-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
}

.current-episode-info {
    font-size: 14px;
    margin-bottom: 10px;
}

.movie-crew-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.crew-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crew-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.rating-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars-small {
    display: flex;
    gap: 2px;
}

.rating-stars-small i {
    color: #ffc107;
    font-size: 14px;
}

.rating-number-small {
    font-size: 15px;
    font-weight: 600;
    color: #ffc107;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 18px;
}

.rating-number {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Movie Info with Poster Layout */
.movie-info-with-poster {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.movie-poster-side {
    flex-shrink: 0;
    width: 200px;
}

.movie-poster-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

/* Crew Compact (resmin altı) */
.movie-crew-compact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
}

.crew-compact-item {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crew-compact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.crew-compact-item:first-child {
    padding-top: 0;
}

.crew-compact-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.crew-compact-value {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.rating-compact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars-compact {
    display: flex;
    gap: 1px;
}

.rating-stars-compact i {
    color: #ffc107;
    font-size: 11px;
}

.rating-value-compact {
    font-size: 14px;
    font-weight: 600;
    color: #ffc107;
}

@media (max-width: 768px) {
    .movie-info-with-poster {
        flex-direction: column;
    }

    .movie-poster-side {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .movie-crew-compact {
        margin-top: 15px;
    }
}

/* Action buttons active state */
.action-icon-btn.active {
    background: linear-gradient(135deg, #e50914, #b20710);
    color: #fff;
}

/* ========================================
   Viewer Rating Inline (Next to Action Buttons)
   ======================================== */

.viewer-rating-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
}

.rating-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.viewer-stars-inline {
    display: flex;
    align-items: center;
    gap: 4px;
}

.viewer-stars-inline .viewer-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.viewer-stars-inline .viewer-star:hover {
    color: #ffc107;
    transform: scale(1.15);
}

.viewer-stars-inline .viewer-star i.fas {
    color: #ffc107;
}

.viewer-stars-inline .viewer-star i.far {
    color: rgba(255, 255, 255, 0.3);
}

.viewer-stars-inline .viewer-star:hover i {
    color: #ffc107;
}

/* Responsive adjustments for inline rating */
@media (max-width: 991px) {
    .rating-label {
        font-size: 13px;
    }

    .viewer-stars-inline .viewer-star {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .action-icons-group {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .movie-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .top-right-controls {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }

    .episode-navigation {
        width: 100%;
    }

    .actions-rating-group {
        width: 100%;
        justify-content: flex-start;
    }

    .viewer-rating-inline {
        padding: 10px 14px;
        margin-bottom: 15px;
        width: 100%;
        display: flex;
    }

    .action-icons-group {
        width: 100%;
        justify-content: flex-start;
    }

    .viewer-stars-inline {
        gap: 3px;
    }

    .viewer-stars-inline .viewer-star {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .viewer-rating-inline {
        padding: 8px 12px;
        gap: 8px;
    }

    .rating-label {
        font-size: 12px;
    }

    .viewer-stars-inline {
        gap: 2px;
    }

    .viewer-stars-inline .viewer-star {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* ========================================
   Episode Navigation Buttons
   ======================================== */

.episode-info-wrapper {
    margin-bottom: 15px;
}

.episode-navigation {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.episode-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.episode-nav-btn:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--base) / 0.3);
}

.episode-nav-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.episode-nav-btn i {
    font-size: 12px;
}

/* ========================================
   Rating Tooltip
   ======================================== */

.rating-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(220, 70%, 45%) 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}

.rating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid hsl(220, 70%, 45%);
}

.rating-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    top: -50px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-tooltip i {
    font-size: 14px;
}

/* Dinamik tooltip - minimalist tasarım */
.rating-tooltip-dynamic {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%) scale(0.9);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.rating-tooltip-dynamic.show {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
}

.rating-tooltip-dynamic::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.85);
}

/* Action tooltip - siyah tema (puanlama gibi) */
.action-tooltip-dynamic {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%) scale(0.9);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-tooltip-dynamic.show {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
}


.action-tooltip-dynamic::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.85);
}

.action-tooltip-dynamic i {
    font-size: 14px;
    color: #4caf50;
}

.viewer-rating-inline {
    position: relative;
}

/* Responsive */
@media (max-width: 767px) {
    .episode-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .episode-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }

    .rating-tooltip {
        font-size: 12px;
        padding: 8px 14px;
    }
}



/* ======================================== */
/* Video Mode Toggle Buttons - Compact Toolbar Version */
/* ======================================== */
.video-mode-toggle {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mode-btn i {
    font-size: 14px;
}

.mode-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mode-btn.active {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
}

.mode-btn.active:hover {
    background: hsl(220, 70%, 50%);
    border-color: hsl(220, 70%, 50%);
}

/* Trailer Notification - Compact Version */
.trailer-notification {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 193, 7, 0.9);
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
    white-space: nowrap;
}

.trailer-notification i {
    font-size: 14px;
    color: rgba(255, 193, 7, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-mode-toggle {
        gap: 8px;
    }

    .mode-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .mode-btn i {
        font-size: 16px;
    }

    .trailer-notification {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* ========================================
   Minimalist Metadata Card - Redesigned
   ======================================== */
.watch-metadata-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.metadata-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Top Row: Social Media + Episode Navigation */
.metadata-row>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Social Media Icons */
.metadata-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metadata-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.metadata-social .social-icon:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--base) / 0.3);
}

/* Episode Navigation */
.episode-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-episode-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-episode-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-episode-btn:hover {
    background: hsl(var(--base));
    border-color: hsl(var(--base));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--base) / 0.3);
}

.nav-episode-btn.prev-episode:hover i {
    transform: translateX(-2px);
}

.nav-episode-btn.next-episode:hover i {
    transform: translateX(2px);
}

/* Bottom Row: Content Info (Centered) */
.metadata-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metadata-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: hsl(var(--base) / 0.12);
    border: 1px solid hsl(var(--base) / 0.25);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 12px;
}

.metadata-badge i {
    font-size: 13px;
    color: hsl(var(--base));
}

.metadata-separator {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    font-size: 12px;
}

.metadata-category,
.metadata-year {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .watch-metadata-card {
        padding: 16px 20px;
    }

    .metadata-row>div:first-child {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .metadata-social {
        justify-content: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .episode-navigation {
        justify-content: space-between;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .metadata-info {
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .metadata-social .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .nav-episode-btn .nav-text {
        display: none;
    }

    .nav-episode-btn {
        min-width: 40px;
        padding: 9px;
        justify-content: center;
    }

    .nav-episode-btn i {
        font-size: 13px;
    }
}