/* ПРИГЛУШЕННЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ АРТА */
.cyber-frame {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cyber-frame:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.cyber-frame::before,
.cyber-frame::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cyber-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.cyber-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.cyber-frame:hover::before,
.cyber-frame:hover::after {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Контейнеры для изображений */
.art-image-container {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.art-image-container:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.art-image-container h3 {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 20px !important;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.art-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.art-image-container img:hover {
    transform: scale(1.01);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

/* Блоки с описанием */
.description-box {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.description-box:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.description-box h3 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px !important;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.description-content {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 300;
}

.description-content p {
    margin-bottom: 15px !important;
}

.description-content strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.description-content em {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Навигация */
.navigation-art {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navigation-art:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.nav-button {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Ссылки навигации между постами */
.navigation-art div a {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    margin: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navigation-art div a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Заголовок страницы */
.art-page-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: none;
}

/* Сообщения о отсутствии контента */
.no-content-message {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    font-style: italic;
}

/* Адаптивность */
@media (max-width: 768px) {
    .art-grid-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .cyber-frame {
        padding: 20px;
    }
    
    .navigation-art {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .description-box {
        padding: 20px;
    }
    
    .art-image-container h3,
    .description-box h3 {
        font-size: 1.1rem;
    }
    
    .art-page-title {
        font-size: 1.8rem;
    }
}

/* Стили для фото прототипа - делаем его меньше */
.art-image-container:nth-child(2) img {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Для мобильных */
@media (max-width: 768px) {
    .art-image-container:nth-child(2) img {
        max-height: 300px;
    }
}

/* Кнопка "Хочу такой же Арт" */
.art-order-button {
    display: inline-block;
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.9), rgba(255, 180, 0, 0.7));
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.art-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.5);
    color: white;
}

/* Для мобильных */
@media (max-width: 768px) {
    .art-order-button {
        padding: 12px 25px;
        font-size: 1.1rem;
        display: block;
        margin: 0 20px;
    }
}