/* VESPERIA SMP - ОСНОВНОЙ CSS */

body {
    background: #0b0714 !important;
}

.bg-elegant, .bg-elegant-dark, main, .bg-transparent {
    background: transparent !important;
}

/* Звёзды */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #b794f6, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, #b794f6, transparent);
    background-repeat: repeat;
    background-size: 400px 300px;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

/* Заголовки */
h1, h2, h3, .shop-name {
    color: #b794f6 !important;
    text-shadow: 0 0 20px rgba(183, 148, 246, 0.5) !important;
}

/* Картинки на карточках */
.card-image, .profile-card .card-image {
    background-size: cover !important;
    background-position: center !important;
    min-height: 180px !important;
}

.card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* КАРТОЧКИ - ЖИДКОЕ СТЕКЛО */
.card, .profile-card .card {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.2), rgba(30, 20, 60, 0.9)) !important;
    border: 1px solid rgba(155, 106, 240, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(155, 106, 240, 0.1) !important;
    transition: all 0.3s ease !important;
}

.card:hover {
    border-color: #9b6af0 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(155, 106, 240, 0.3), inset 0 0 30px rgba(155, 106, 240, 0.15) !important;
}

.card-title, .card h3, .card h6 {
    color: #fff !important;
}

/* Кнопки */
.btn, button {
    background: linear-gradient(135deg, #8b00ff, #b794f6) !important;
    border: none !important;
    border-radius: 14px !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(139, 0, 255, 0.4) !important;
}

.btn:hover, button:hover {
    background: linear-gradient(135deg, #a855f7, #c9a7ff) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 255, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Поля ввода */
input, textarea, select, .form-control {
    background: rgba(30, 25, 55, 0.8) !important;
    border: 1px solid rgba(155, 106, 240, 0.3) !important;
    border-radius: 12px !important;
    color: white !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #9b6af0 !important;
    box-shadow: 0 0 15px rgba(155, 106, 240, 0.3) !important;
}

/* Страница оплаты - нормальный фон */
.payment-type, .payment-methods, .checkout-page {
    background: rgba(20, 13, 36, 0.9) !important;
    border: 1px solid rgba(155, 106, 240, 0.3) !important;
    border-radius: 16px !important;
}

.payment-type *, .payment-methods *, .checkout-page * {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Желтый блок -> фиолетовый */
.alert-warning, .alert, .bg-warning {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.25), rgba(60, 20, 120, 0.9)) !important;
    border: 1px solid rgba(155, 106, 240, 0.5) !important;
    border-radius: 16px !important;
    color: #e0c3ff !important;
}

/* Модальное окно */
.modal-content, .cart-content {
    background: linear-gradient(135deg, rgba(30, 20, 60, 0.95), rgba(15, 10, 30, 0.98)) !important;
    border: 1px solid rgba(155, 106, 240, 0.4) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 0, 255, 0.2) !important;
}

.modal-title, .modal-header h5 {
    color: #b794f6 !important;
}

/* Переход между баннером и контентом */
#welcome-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0b0714);
    z-index: 1;
}

/* Меню */
.navbar {
    background: rgba(11, 7, 20, 0.95) !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link:hover {
    color: #b794f6 !important;
}

/* Скроллбар */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: #9b6af0; border-radius: 4px; }
::-webkit-scrollbar-track { background: #0b0714; }

/* Скрываем лишнее */
#servers, .select-server-group, .pattern {
    display: none !important;
}

a { color: #b794f6 !important; }