    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

    .sezcinematrend_section {
        padding: 40px 0;
        background: #050505;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .sezcinematrend_title {
        padding-left: 4%;
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #fff;
        font-family: sans-serif;
    }

    .sezcinematrend_container {
        position: relative;
        display: flex;
        align-items: center;
        group: hover;
    }

    .sezcinematrend_wrapper {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px 4% 50px 4%;
        gap: 15px; /* Kartlar arası boşluk */
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        /* TAM OTURMA ÖZELLİĞİ */
        scroll-snap-type: x mandatory; 
    }

    .sezcinematrend_wrapper::-webkit-scrollbar { display: none; }

    .sezcinematrend_card {
        position: relative;
        min-width: 220px; /* Sabit genişlik */
        flex-shrink: 0;
        height: 280px;
        transition: transform 0.3s ease;
        /* KAYDIRINCA TAM BURADA DUR */
        scroll-snap-align: start; 
    }

    .sezcinematrend_card:hover { transform: scale(1.05); z-index: 200; }

    .sezcinematrend_poster {
        width: 155px;
        height: 230px;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
        z-index: 1;
        margin-left: 40px;
        box-shadow: 0 0 20px rgba(0,0,0,0.8);
    }

    .sezcinematrend_poster img { width: 100%; height: 100%; object-fit: cover; }

    .sezcinematrend_number {
        position: absolute;
        left: 0;
        bottom: -15px;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 14rem; 
        line-height: 0.8;
        font-weight: 900;
        color: #000;
        -webkit-text-stroke: 2px #fff; 
        z-index: 10;
        pointer-events: none;
    }

    /* GELİŞTİRİLMİŞ OKLAR */
    .sezcinematrend_btn {
        position: absolute;
        top: 20px;
        bottom: 50px;
        width: 4%;
        background: rgba(0, 0, 0, 0);
        border: none;
        color: white;
        font-size: 3.5rem;
        cursor: pointer;
        z-index: 250;
        opacity: 0;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sezcinematrend_container:hover .sezcinematrend_btn { 
        opacity: 1; 
        background: rgba(0, 0, 0, 0.5); 
    }
    
    .sezcinematrend_btn:hover { 
        background: rgba(0, 0, 0, 0.8) !important; 
        color: #e50914; /* Netflix kırmızısı */
    }

    .sezcinematrend_prev { left: 0; }
    .sezcinematrend_next { right: 0; }

    @media (max-width: 768px) {
        .sezcinematrend_btn { display: none; }
        .sezcinematrend_card { min-width: 160px; height: 210px; }
        .sezcinematrend_number { font-size: 9rem; }
        .sezcinematrend_poster { width: 110px; height: 165px; margin-left: 25px; }
    }