/* 1. Общий фон страницы с плавным градиентом */
body {
    background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f1a 100%) !important;
    font-family: 'Inter', sans-serif !important;
    color: #ffffff !important;
}

/* 2. Эффект стеклянных карточек товара */
.shop-item, .card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease-in-out !important;
}

/* Эффект при наведении на товар */
.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #00c6ff !important; /* Цвет свечения при наведении */
}

/* 3. Стилизация кнопок */
.btn-primary, .buy-button {
    background: linear-gradient(45deg, #00c6ff, #0072ff) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s !important;
}

.btn-primary:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.6) !important;
}

/* 4. Красивое поле ввода никнейма */
input[type="text"], .form-control {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

input[type="text"]:focus {
    border-color: #00c6ff !important;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.2) !important;
}

/* 5. Анимация появления элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-item {
    animation: fadeInUp 0.6s ease backwards;
}