/* Content Detail Page Styles */

/* Detail Hero */
.detail-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
    width: 100%;
    overflow: hidden;
}

.detail-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.detail-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, #000000 0%, #000000 10%, transparent 100%);
    z-index: 1;
}

.detail-hero-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    max-width: 700px;
    z-index: 2;
}

.detail-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-hero-price-badge-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.detail-hero-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fenogram-yellow);
    margin: 0;
    display: inline-block;
}

.content-badge {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.content-badge .badge-logo {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(1.2);
}

.detail-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0 20px 0;
    font-size: 1rem;
    flex-wrap: wrap;
    font-weight: 200;
}

.detail-hero-meta span:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: var(--fenogram-yellow);
    margin-left: 16px;
    vertical-align: middle;
}

.detail-hero-meta .maturity {
    padding: 0;
    border: none;
    display: inline-flex;
    align-items: center;
}

.detail-hero-meta .maturity .maturity-icon {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.detail-hero-synopsis {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 30px 0;
    max-width: 650px;
    color: var(--fenogram-text-gray);
    font-weight: 300;
}

.detail-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Detail page buttons - Desktop: All buttons 55px x 200px */
.detail-btn-primary {
    height: 55px;
    width: 200px;
    padding: 0 20px;
    background-color: rgba(255, 255, 138, 0.08);
    color: var(--fenogram-white);
    border: none;
    border-left: 6px solid var(--fenogram-yellow);
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s var(--transition-smooth);
    text-decoration: none;
}

.detail-btn-primary:hover {
    background-color: rgba(255, 255, 138, 0.15);
}

.detail-btn-primary .btn-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Desktop: show full text, hide short text */
.detail-btn-primary .btn-text-full {
    display: inline;
}

.detail-btn-primary .btn-text-short {
    display: none;
}

.detail-btn-secondary {
    height: 55px;
    width: 55px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--fenogram-white);
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s var(--transition-smooth);
}

.detail-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Desktop: hide text on secondary buttons, show only icons */
.detail-btn-secondary .btn-text {
    display: none;
}

.detail-btn-secondary svg {
    width: 22px;
    height: 22px;
}

/* Episodes Section */
.episodes-section {
    padding: 40px 60px;
    margin-bottom: 0;
    background-color: var(--fenogram-black);
}

.season-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.season-tab {
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--fenogram-white);
    border: none;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.season-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.season-tab.active {
    background-color: rgba(255, 255, 138, 0.08);
    color: var(--fenogram-white);
    border-left: 3px solid var(--fenogram-yellow);
    font-weight: 700;
    padding-left: 15px;
}

/* Episodes Grid - Desktop: 4 columns */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Episode play icon - Desktop size */
.episode-play-icon {
    width: 60px;
    height: 40px;
}

.episode-play-icon img {
    width: 18px;
    height: 18px;
}

.episode-card {
    background-color: var(--fenogram-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.episode-card:hover {
    /* No movement or border on hover */
}

.episode-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: var(--fenogram-dark-gray);
    overflow: hidden;
}

.episode-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.episode-card:hover .episode-thumbnail video {
    opacity: 1;
}

/* Video overlay removed - video plays full in the box */

.episode-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 2;
}

.episode-play-icon img {
    object-fit: contain;
    filter: brightness(1.2);
}

.episode-info {
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.episode-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.episode-header span {
    font-size: 0.85rem;
    color: var(--fenogram-text-gray);
    font-weight: 200;
}

.episode-title {
    font-size: 0.9rem;
    color: var(--fenogram-text-gray);
    margin-bottom: 8px;
    font-weight: 200;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Related Section - Carousel Style */
.related-section {
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Carousel section on content detail page */
.section-subtitle {
    color: var(--fenogram-text-gray);
    margin-bottom: 24px;
    font-weight: 200;
}

.related-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.related-carousel::-webkit-scrollbar {
    display: none;
}

/* Hide overlay/play icon in related section */
.related-section .content-card .card-overlay {
    display: none !important;
}

/* Hide badge logo/icon in related section */
.related-section .content-card .card-badge img {
    display: none !important;
}

.related-section .content-card .card-badge {
    padding-left: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .back-button {
        left: 20px;
        top: 70px;
    }

    .detail-hero {
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }

    .detail-hero-content {
        left: 20px;
        right: 20px;
        bottom: 25px !important;
        top: auto !important;
    }

    .detail-hero-title {
        font-size: 2.5rem;
    }
    
    /* Mobile: Smaller badge */
    .content-badge {
        font-size: 0.55rem;
        padding: 3px 8px;
        gap: 4px;
        margin-top: 8px;
        margin-bottom: 6px;
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .content-badge .badge-logo {
        width: 9px;
        height: 9px;
        flex-shrink: 0;
    }
    
    /* Mobile: Smaller meta info (2024, 1 Sezon, Dizi) */
    .detail-hero-meta {
        font-size: 0.8rem;
        gap: 10px;
        margin: 10px 0 12px 0;
    }
    
    .detail-hero-meta span:not(:last-child)::after {
        height: 12px;
        margin-left: 10px;
    }
    
    .detail-hero-meta .maturity .maturity-icon {
        height: 20px;
    }
    
    /* Mobile: Price and badge */
    .detail-hero-price {
        font-size: 1.5rem;
    }
    
    /* Mobile: Smaller synopsis text */
    .detail-hero-synopsis {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* Mobile action buttons styling moved to responsive.css */

    .episodes-section,
    .related-section {
        padding: 30px 20px;
    }
    
    /* Mobile: Smaller section titles */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    /* Mobile: Smaller subtitle - same as synopsis */
    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Mobile: Hide desktop volume button, show mobile one */
    .desktop-volume-btn {
        display: none !important;
    }
    
    .mobile-volume-btn {
        display: inline-flex !important;
    }
    
    /* Mobile: Smaller play icon */
    .episode-play-icon {
        width: 40px;
        height: 28px;
        border-radius: 6px;
    }
    
    .episode-play-icon img {
        width: 14px;
        height: 14px;
    }
    
    /* Mobile: Smaller episode card text */
    .episode-info {
        padding: 10px;
    }
    
    .episode-header {
        margin-bottom: 4px;
        flex-wrap: nowrap;
    }
    
    .episode-header h4 {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .episode-header span {
        font-size: 0.65rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .episode-title {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Related carousel is same as main page - no special mobile rules needed */
}

/* Tablet: 3 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .episodes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Tablet: Medium play icon */
    .episode-play-icon {
        width: 50px;
        height: 35px;
    }
    
    .episode-play-icon img {
        width: 16px;
        height: 16px;
    }
}

/* Desktop Volume Toggle Button - Absolute Positioned Right, Square Design */
.detail-volume-toggle {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.2s var(--transition-smooth);
}

.detail-volume-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.detail-volume-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--fenogram-white);
}

/* Mobile volume button - in action buttons (hidden on desktop) */
.mobile-volume-btn {
    display: none;
}

/* Hero overlay - Hafif karartma (ses kapalıyken) */
.detail-hero::after {
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease-in-out;
}

/* Hero top gradient - Ses kapalıyken 50% yükseklikte */
.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Bottom gradient - Ses kapalıyken 50% yükseklikte, ses açıkken çok küçülecek */
.detail-hero-gradient {
    height: 50%;
    transition: height 0.5s ease-in-out;
}

/* Ses açıldığında: üst gradient ve opacity kaybolur, alt gradient çok küçülür */
.detail-hero.sound-active::after {
    opacity: 0;
}

.detail-hero.sound-active::before {
    opacity: 0;
}

.detail-hero.sound-active .detail-hero-gradient {
    height: 20%;
}
/* ============================================
   BÖLÜMLER MODAL - LOGIN MODAL TASARIMI
   ============================================ */

/* Modal Overlay */
.episodes-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episodes-modal-overlay.show {
    display: block;
    opacity: 1;
}

/* Modal Container - Login Modal Style */
.episodes-modal-container {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(-20px);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 3px;
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-left: 5px solid var(--fenogram-yellow);
    padding: 35px;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    z-index: 2001;
}

/* SlideDown Animation - Login Modal gibi */
.episodes-modal-overlay.show .episodes-modal-container {
    animation: episodesSlideDown 0.35s var(--transition-smooth) forwards;
}

@keyframes episodesSlideDown {
    to {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }
}

/* Modal Content */
.episodes-modal-content {
    position: relative;
}

/* Close Button - Login Modal Style */
.episodes-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--transition-smooth);
    z-index: 2002;
    color: white;
}

.episodes-close-btn:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}

.episodes-close-btn svg {
    width: 24px;
    height: 24px;
}

/* Modal Header - Centered */
.episodes-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.episodes-modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 0 0 8px 0;
}

.episodes-modal-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Season Tabs */
.episodes-season-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.episodes-season-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-left: 3px solid transparent;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.episodes-season-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.episodes-season-tab.active {
    background: rgba(255, 255, 138, 0.1);
    border-left-color: var(--fenogram-yellow);
}

/* Episodes Grid */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Episode Card */
.episodes-grid .episode-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.episodes-grid .episode-card:hover {
    border-color: rgba(255, 255, 138, 0.4);
}

/* Episode Thumbnail */
.episode-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #1a1a1a;
    overflow: hidden;
}

.episode-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.episode-play-icon img {
    width: 16px;
    height: 16px;
}

/* Episode Info */
.episode-info {
    padding: 12px;
}

.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.episode-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.episode-header span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.episode-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .episodes-modal-container {
        max-width: 900px;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .episodes-modal-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .episodes-modal-title {
        font-size: 1.5rem;
    }
    
    .episodes-modal-subtitle {
        font-size: 0.9rem;
    }
    
    /* Season Tabs - Centered on Mobile */
    .episodes-season-tabs {
        gap: 8px;
        justify-content: center;
    }
    
    .episodes-season-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Minimal Episode Cards on Mobile */
    .episode-info {
        padding: 6px;
    }
    
    .episode-header h4 {
        font-size: 0.7rem;
    }
    
    .episode-header span {
        font-size: 0.65rem;
    }
    
    .episode-title {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .episode-play-icon {
        width: 35px;
        height: 24px;
    }
    
    .episode-play-icon img {
        width: 12px;
        height: 12px;
    }
    
    .episodes-close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .episodes-close-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Series Overview Section - Parallax Background */
.series-overview-section {
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
}

/* Parallax Background with Poster */
.series-overview-parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
}

/* Extra opacity overlay for darkening */
.series-overview-parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Backdrop - Blur + Black Opacity + Gradients */
.series-overview-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Top Gradient - Black to Transparent */
.series-overview-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 2;
}

/* Bottom Gradient - Black to Transparent */
.series-overview-backdrop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 2;
}

.series-overview-content {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    margin: 0;
    padding-left: 0;
}

.series-overview-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.series-overview-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

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

.series-overview-info {
    flex: 1;
    max-width: 800px;
}

.series-overview-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--fenogram-white);
    letter-spacing: -0.5px;
}

.series-overview-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-weight: 300;
}

.series-overview-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.overview-meta-item {
    display: flex;
    gap: 8px;
}

.meta-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
}

.meta-value {
    color: var(--fenogram-white);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive - Series Overview */
@media (max-width: 768px) {
    .series-overview-section {
        padding: 50px 30px;
    }
    
    .series-overview-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .series-overview-info {
        order: 1;
        text-align: center;
    }
    
    .series-overview-image {
        order: 2;
        width: 180px;
        height: 180px;
    }
    
    .series-overview-title {
        font-size: 1.5rem;
    }
    
    .series-overview-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .series-overview-meta {
        justify-content: center;
        gap: 20px;
    }
    
    .overview-meta-item {
        font-size: 0.85rem;
    }
    
    .meta-label,
    .meta-value {
        font-size: 0.85rem;
    }
    
    /* Cast Section Mobile */
    .cast-section {
        padding: 50px 20px;
    }
    
    .cast-header {
        margin-bottom: 40px;
    }
    
    .cast-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .cast-subtitle {
        font-size: 0.8rem;
    }
    
    .cast-grid {
        gap: 16px;
    }
    
    .cast-member {
        width: 100px;
        gap: 3px;
    }
    
    .cast-member img {
        border-radius: 8px;
    }
    
    .cast-name {
        font-size: 11px;
        margin-top: 5px;
        margin-bottom: 1px;
    }
    
    .cast-role {
        font-size: 10px;
    }
    
}

/* Cast Section - Oyuncular */
.cast-section {
    position: relative;
    padding: 80px 60px;
    background: var(--fenogram-black);
    overflow: hidden;
}

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

.cast-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    z-index: 2;
}

.cast-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

.cast-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

.cast-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0;
}

.cast-header {
    text-align: left;
    margin-bottom: 20px;
}

.cast-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fenogram-white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cast-subtitle {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--fenogram-text-gray);
    letter-spacing: 0.5px;
}

.cast-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
}

.cast-member {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 160px;
}

.cast-member:hover {
    /* No transform on hover */
}

.cast-member img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cast-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--fenogram-white);
    text-align: left;
    margin-top: 8px;
    margin-bottom: 2px;
}

.cast-role {
    font-size: 13px;
    color: var(--fenogram-text-gray);
    text-align: left;
    margin: 0;
}

.cast-name {
    font-size: 14px;
    font-weight: 200;
    color: var(--fenogram-white);
    text-align: left;
    line-height: 1.4;
}

/* Details Section */
.details-section {
    padding: 40px 60px 60px;
    background: var(--fenogram-black);
}

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

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

.detail-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fenogram-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 300;
    color: var(--fenogram-white);
    line-height: 1.6;
}

/* Mobile Responsive for Cast and Details */
@media (max-width: 768px) {
    .cast-section {
        padding: 40px 20px 30px;
    }
    
    .cast-name {
        font-size: 11px;
    }
    
    .details-section {
        padding: 30px 20px 40px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-label {
        font-size: 11px;
    }
    
    .detail-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cast-grid {
        gap: 12px;
    }
    
    .cast-member {
        width: 90px;
    }
    
    .cast-name {
        font-size: 10px;
    }
    
    .cast-role {
        font-size: 9px;
    }
}

/* ============================================
   BENZERİÇERİKLER SECTION
   ============================================ */

.similar-section {
    position: relative;
    padding: 60px 0 80px 0;
    background: var(--fenogram-black);
    overflow: hidden;
}

/* Background Video */
.similar-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Backdrop - Blur + Black Opacity */
.similar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    z-index: 2;
}

/* Top Gradient - Black to Transparent */
.similar-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

/* Bottom Gradient - Black to Transparent */
.similar-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

/* Content Container */
.similar-content {
    position: relative;
    z-index: 4;
    max-width: 100%;
    margin: 0;
    padding: 0 50px;
}

/* Header - Left Aligned */
.similar-header {
    text-align: left;
    margin-bottom: 20px;
}

.similar-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fenogram-white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.similar-subtitle {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--fenogram-text-gray);
    letter-spacing: 0.5px;
}

/* Slider Wrapper */
.similar-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Slider - Horizontal Scroll */
.similar-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    justify-content: flex-start;
    width: 100%;
}

.similar-slider::-webkit-scrollbar {
    display: none;
}

/* Similar Item */
.similar-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
}

.similar-item:hover {
    /* No transform on hover */
}

/* Poster - Bigger Size */
.similar-poster {
    width: 200px;
    aspect-ratio: 2/3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

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

/* Name - Same size as cast names */
.similar-name {
    font-size: 14px;
    font-weight: 200;
    color: var(--fenogram-white);
    text-align: left;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

/* ============================================
   BENZER İÇERİKLER - RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .similar-section {
        padding: 60px 40px;
    }
    
    .similar-content {
        padding: 0;
    }
    
    .similar-header {
        margin-bottom: 24px;
    }
    
    .similar-slider {
        gap: 20px;
    }
    
    .similar-poster {
        width: 140px;
    }
    
    .similar-name {
        max-width: 140px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .similar-section {
        padding: 50px 20px;
    }
    
    .similar-content {
        padding: 0;
    }
    
    .similar-header {
        margin-bottom: 16px;
        padding: 0;
        text-align: left;
    }
    
    .similar-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .similar-subtitle {
        font-size: 0.8rem;
    }
    
    .similar-slider-wrapper {
        padding: 0;
        overflow: hidden;
        width: 100%;
    }
    
    .similar-slider {
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 20px;
        cursor: grab;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        width: 100%;
    }
    
    .similar-slider:active {
        cursor: grabbing;
    }
    
    /* Mobile: 2 items full visible */
    .similar-item {
        scroll-snap-align: start;
        gap: 6px;
    }
    
    .similar-poster {
        width: calc((100vw - 64px) / 2);
        max-width: 160px;
    }
    
    .similar-name {
        max-width: calc((100vw - 64px) / 2);
        font-size: 11px;
    }
    
    .similar-gradient-top,
    .similar-gradient-bottom {
        height: 120px;
    }
    
    /* Cast section mobile - CENTERED */
    .cast-section {
        padding: 50px 20px;
    }
    
    .cast-header {
        text-align: center;
    }
    
    .cast-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .cast-subtitle {
        font-size: 0.8rem;
    }
    
    .cast-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        justify-content: flex-start;
        padding: 0 0px;
        margin: 0;
    }
    
    .cast-member {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .cast-member img {
        width: 100%;
        aspect-ratio: 2/3;
        object-fit: cover;
        border-radius: 6px;
    }
    
    .cast-name {
        text-align: center;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .cast-role {
        text-align: center;
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .similar-poster {
        width: calc((100vw - 40px - 16px) / 2);
    }
    
    .similar-name {
        max-width: calc((100vw - 40px - 16px) / 2);
        font-size: 11px;
    }
}
