/* =============================================
   ЖИДКОЕ СТЕКЛО v2 — УСИЛЕННАЯ ВЕРСИЯ ДЛЯ EASYDONATE
   ============================================= */

body, main.bg-elegant, .bg-elegant {
    background: linear-gradient(180deg, #0a0a0a, #1f1a14) !important;
}

/* ТЕСТ: если фон стал красным — CSS точно загружен */
body::before {
    content: "ТЕСТ CSS РАБОТАЕТ";
    position: fixed;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    z-index: 999999;
    font-size: 12px;
    display: none !important;
}

/* Навбар */
.navbar, .navbar.navbar-transparent, .navbar-theme-dark {
    background: rgba(15, 15, 15, 0.75) !important;
    backdrop-filter: blur(25px) !important;
    border-bottom: 2px solid rgba(245, 183, 89, 0.6) !important;
    box-shadow: 0 10px 40px rgba(245, 183, 89, 0.3) !important;
}

/* Карточки и блоки */
.card, .modal-content, .shop, .servers {
    background: rgba(15, 15, 15, 0.78) !important;
    backdrop-filter: blur(22px) !important;
    border: 1px solid rgba(245, 183, 89, 0.5) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px #f5b759 !important;
}

/* Кнопки */
.btn, .button-username, .shop-button, button {
    background: rgba(245, 183, 89, 0.15) !important;
    border: 2px solid #f5b759 !important;
    color: white !important;
    backdrop-filter: blur(15px) !important;
    position: relative;
    overflow: hidden;
}

/* Неоновый текст */
.shop-name, .display-1, .display-3, .text-warning {
    text-shadow: 0 0 20px #f5b759, 0 0 40px #f5b759 !important;
    animation: neonPulse 1.5s infinite alternate !important;
}

/* Анимации */
@keyframes neonPulse {
    from { text-shadow: 0 0 10px #f5b759; }
    to   { text-shadow: 0 0 30px #f5b759, 0 0 50px #f5b759; }
}

@keyframes liquidShine {
    0%   { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(300%) skewX(-25deg); }
}

/* Всё остальное (очень сильные правила) */
* {
    transition: all 0.3s ease !important;
}

.section-image.overlay::before,
.modal-content,
.card-body {
    backdrop-filter: blur(20px) !important;
}