/* RESPONSIVE FIX - PageSkin Reklam Sistemi */

/* PageSkin Reklam Alanları */
.pageskin-left, .pageskin-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 600px;
    z-index: 1000;
}

.pageskin-left {
    left: 10px;
}

.pageskin-right {
    right: 10px;
}

/* LAPTOP/TABLET RESPONSIVE - 1400px altı */
@media screen and (max-width: 1400px) {
    .pageskin-left, .pageskin-right {
        width: 120px;
        height: 500px;
    }
}

/* MOBİL RESPONSIVE - 768px altı */
@media screen and (max-width: 768px) {
    .site-wrapper {
        border-radius: 0;
    }

    .pageskin-left, .pageskin-right {
        display: none !important;
    }

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

/* Çok küçük ekranlar - 480px altı */
@media screen and (max-width: 480px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .container {
        padding: 0 10px;
    }

    .site-header .container {
        padding: 0 10px;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .search-box input {
        width: 100%;
        min-width: 200px;
    }

    .section-title {
        font-size: 18px;
    }

    .movie-card {
        width: 100%;
    }

    .movie-poster {
        height: 240px;
    }
}