.ja-films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.ja-film-card {
    position: relative;
}

.ja-film-poster {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ja-film-poster:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.ja-film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ja-film-poster:hover img {
    transform: scale(1.08);
}

.ja-film-no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

.ja-film-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ja-film-poster:hover .ja-film-overlay {
    opacity: 1;
}

.ja-film-overlay-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .ja-films-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .ja-films-grid {
        grid-template-columns: 1fr;
    }
}

.ja-music-slider-container {
    position: relative;
    margin: 32px 0;
    padding: 0 60px;
}

.ja-slider-track-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.ja-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.ja-slider-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

@media (max-width: 1200px) {
    .ja-slider-slide {
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

@media (max-width: 768px) {
    .ja-music-slider-container {
        padding: 0 50px;
    }
    .ja-slider-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .ja-music-slider-container {
        padding: 0 40px;
    }
    .ja-slider-slide {
        flex: 0 0 100%;
    }
    .ja-slider-track {
        gap: 10px;
    }
}

.ja-music-slider-container .ja-slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #fff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.ja-music-slider-container .ja-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.ja-music-slider-container .ja-slider-arrow:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.ja-music-slider-container .ja-slider-arrow svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    stroke: #fff !important;
    fill: none !important;
}

.ja-music-slider-container .ja-slider-prev {
    left: 0 !important;
}

.ja-slider-next {
    right: 0;
}

@media (max-width: 768px) {
    .ja-slider-arrow {
        width: 40px;
        height: 40px;
    }
}

.ja-slider-slide .ja-film-card {
    position: relative;
}

.ja-slider-slide .ja-film-poster {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ja-slider-slide .ja-film-poster:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.ja-slider-slide .ja-film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ja-slider-slide .ja-film-poster:hover img {
    transform: scale(1.08);
}

.ja-slider-slide .ja-film-no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

.ja-slider-slide .ja-film-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ja-slider-slide .ja-film-poster:hover .ja-film-overlay {
    opacity: 1;
}

.ja-slider-slide .ja-film-overlay-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}
