/* СТИЛИ ГАЛЕРЕИ АРТОВ */
.arts-gallery-v2 {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.gallery-title-v2 {
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.arts-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.art-card-v2 {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 3px solid transparent;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)) border-box;
}

.art-image-v2 {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    overflow: hidden;
    background: #000;
}

.art-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

/* ЭФФЕКТЫ ПРИ НАВЕДЕНИИ */
.art-card-v2:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                0 0 50px rgba(255, 255, 255, 0.2),
                0 0 70px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.art-card-v2:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .arts-gallery-v2 {
        padding: 0 15px;
    }
    
    .gallery-title-v2 {
        font-size: 2.2rem;
    }
    
    .arts-grid-v2 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}