/* © WatchJunk */
/* coded by nya & suzunay */

@media (max-width: 768px) {
    }

    .dual-timeline-container {
        max-width: 1400px;
        margin: 30px auto;
        padding: 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(11, 17, 32, 0.95) 100%);
        border-radius: 24px;
        box-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .timeline-column {
        background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%);
        padding: 30px;
        border-radius: 16px;
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(59, 130, 246, 0.2);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    }

    .timeline-column:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 14px rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.4);
    }

    @media (max-width: 767px) {
        .timeline-column {
            flex: 1 1 100%;
            padding: 20px;
        }
    }

    .timeline-item {
        margin-bottom: 25px;
    }

    .timeline-content {
        background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.9) 100%);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .timeline-content:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 10px rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.3);
    }

    .film-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .film-image {
        flex: 0 0 130px;
        position: relative;
    }

    .film-image img {
        width: 130px;
        height: 205px;
        border-radius: 12px;
        object-fit: cover;
        transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .film-image img:hover {
        transform: scale(1.05);
        filter: brightness(1.15);
        box-shadow: 0 8px 8px rgba(59, 130, 246, 0.4);
    }

    .film-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .film-details h3 {
        margin: 0;
        font-size: 1.3rem;
        color: #ffffff;
        line-height: 1.3;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .film-details p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #cbd5e1;
    }

    .release-info {
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
        padding: 10px 16px;
        border-radius: 8px;
        display: inline-block;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        letter-spacing: 0.5px;
        border: 1px solid rgba(59, 130, 246, 0.3);
    }

    .button-container {
        display: flex;
        gap: 12px;
        margin-top: 15px;
        flex-wrap: wrap;
        background: rgba(255, 255, 255, 0.03);
        padding: 12px;
        border-radius: 10px;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .buy-button,
    .info-button {
        background: linear-gradient(90deg, #00a3ff 0%, #0084d1 100%) !important;
        color: #fff !important;
        border: none !important;
        padding: 8px 16px !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        border-radius: 7px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        transition: all 0.3s ease !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        cursor: pointer !important;
        flex: 1;
        min-width: 90px;
    }

    .buy-button:hover,
    .info-button:hover {
        background: linear-gradient(90deg, #0084d1 0%, #1d4ed8 100%) !important;
        color: #fff !important;
        transform: translateY(-2px) !important;
    }


    @media (max-width: 1024px) {
        .film-image {
            flex: 0 0 110px;
        }

        .film-image img {
            width: 110px;
            height: 165px;
        }

        .film-details h3 {
            font-size: 1.2rem;
        }

        .film-details p {
            font-size: 0.9rem;
        }

        .release-info {
            font-size: 1rem;
        }

        .buy-button,
        .info-button {
            padding: 8px 16px;
        }
    }

    @media (max-width: 767px) {
        .film-card {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .film-image {
            margin-bottom: 15px;
        }

        .button-container {
            justify-content: center;
        }

        .buy-button,
        .info-button {
            flex: none;
            width: 100%;
            max-width: 200px;
        }
    }
    /* ── Shimmer Lazy Loading ── */
    .film-image img.lazy {
        background: linear-gradient(90deg, #12192b 0%, #1a2542 20%, #243156 40%, #1a2542 60%, #12192b 80%) !important;
        background-size: 200% 100% !important;
        animation: imgShimmer 1.6s ease-in-out infinite !important;
    }
    .film-image img.lazy-loading {
        background: linear-gradient(90deg, #12192b 0%, #1a2542 20%, #243156 40%, #1a2542 60%, #12192b 80%) !important;
        background-size: 200% 100% !important;
        animation: imgShimmer 1.6s ease-in-out infinite !important;
    }
