/* ===== ЦВЕТОВАЯ ПАЛИТРА НА ОСНОВЕ #607c7e ===== */
:root {
    --main-bg: #607c7e;           /* Основной цвет фона */
    --dark-bg: #4d6566;           /* Темнее на 15% */
    --darker-bg: #3a4d4e;         /* Темнее на 30% */
    --light-bg: #6f9294;          /* Светлее на 15% */
    --lighter-bg: #7da8aa;        /* Светлее на 25% */
    --accent: #8bb5b8;            /* Акцентный цвет (сине-бирюзовый) */
    --accent-hover: #9cced1;      /* Акцент при наведении */
    --text-light: #f0f5f5;        /* Светлый текст */
    --text-muted: #c2d4d6;        /* Приглушенный текст */
    --border-color: #556e70;      /* Цвет границ */
    --shadow-color: rgba(74, 96, 98, 0.5); /* Цвет теней */
}

/* ===== ОБНОВЛЕННЫЙ ФОН САЙТА ===== */
.app-wrapper {
    background-color: var(--main-bg) !important;
    background-image: linear-gradient(
        135deg,
        var(--main-bg) 0%,
        var(--dark-bg) 50%,
        var(--main-bg) 100%
    ) !important;
}

/* ===== БЕЛЫЕ КНОПКИ ШАПКИ С КРАСИВЫМИ ШРИФТАМИ ===== */

/* Кнопки Дискорд и Вконтакте - белые */
.navbar-nav .nav-link {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    margin: 0 2px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Кнопка Админ панель - белая */
.auth-btn[href*="admin"] {
    font-family: 'Verdana', 'Geneva', Tahoma, sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.auth-btn[href*="admin"]:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Баланс - белый */
.balance-btn {
    font-family: 'Courier New', 'Lucida Console', monospace;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Кнопка ПРОФИЛЬ - белая */
.profile-btn.auth {
    font-family: 'Verdana', 'Geneva', Tahoma, sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.profile-btn.auth:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Название сайта - красивый шрифт */
.navbar-brand {
    font-family: 'Impact', 'Franklin Gothic Bold', 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #ffffff !important;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(139, 181, 184, 0.3);
    letter-spacing: 0.5px;
}

/* ===== УДАЛЕНИЕ ВЫБОРА ЯЗЫКА ===== */
.language-switcher {
    display: none !important;
}

/* ===== СТИЛЬ КНОПОК КАК У КОНКУРЕНТА ===== */
.app-button {
    border-radius: 6px;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--dark-bg), var(--darker-bg));
    color: var(--text-light);
    box-shadow: 
        0 4px 8px var(--shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid var(--border-color);
    min-width: 120px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Основные кнопки (синие) */
.app-button--primary {
    background: linear-gradient(145deg, var(--dark-bg), var(--darker-bg));
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.app-button--primary:hover {
    background: linear-gradient(145deg, var(--main-bg), var(--dark-bg));
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(74, 96, 98, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--lighter-bg);
}

.app-button--primary.app-button--active {
    background: linear-gradient(145deg, var(--main-bg), var(--dark-bg));
    color: var(--text-light);
    box-shadow: 
        inset 0 3px 5px rgba(0, 0, 0, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    position: relative;
}

/* Эффект свечения для активной кнопки */
.app-button--primary.app-button--active::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 6px;
    background: linear-gradient(45deg, 
        transparent, 
        var(--accent) 20%, 
        transparent 80%);
    opacity: 0.3;
    z-index: 0;
}

.app-button--primary.app-button--active:hover {
    background: linear-gradient(145deg, var(--light-bg), var(--main-bg));
    border-color: var(--accent);
}

/* Жирный текст */
.app-button--bold {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Эффект при нажатии */
.app-button:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 4px 6px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

/* ===== КОНТЕЙНЕР КНОПОК КАТЕГОРИЙ ===== */
.products-types-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(74, 96, 98, 0.7);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== СДВИГ БЛОКА PRODUCTS-CONTAINER ===== */
.products-container {
    position: relative;
    left: 238px;
    transition: left 0.4s ease;
    width: calc(100% - 150px);
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== ОБНОВЛЕННЫЙ СТИЛЬ ПОИСКА ===== */
.search-input {
    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 181, 184, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

/* ===== КАРТОЧКИ ТОВАРОВ В НОВОМ СТИЛЕ ===== */
.product-card {
    background: linear-gradient(135deg, 
        rgba(74, 96, 98, 0.9), 
        rgba(58, 77, 78, 0.9));
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent), 
        var(--lighter-bg));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.product-card:hover::before {
    opacity: 1;
}

/* Заголовки карточек */
.product-card-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.product-card-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Глобальные стили текста */
body {
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Улучшение читаемости заголовков */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Стили для навбара (дополнительно) */
.navbar {
    background: rgba(74, 96, 98, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-link {
    color: var(--text-light) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* ===== НЕМНОГО УВЕЛИЧЕННЫЕ КАРТОЧКИ ТОВАРОВ ===== */
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.product-card {
    background: linear-gradient(135deg, 
        rgba(74, 96, 98, 0.95), 
        rgba(58, 77, 78, 0.95));
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

/* Верхняя полоска */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--lighter-bg));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Контейнер изображения */
.product-card-image-container {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-card-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Подвал карточки */
.product-card-footer {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.1);
}

/* Название товара */
.product-card-name {
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
}

/* Цена товара */
.product-card-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Эффекты при наведении */
.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover .product-card-image-container img {
    transform: scale(1.08);
}

/* ===== ОБВОДКА ДЛЯ ФУТЕРА ===== */
.footer {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    background: rgba(74, 96, 98, 0.8);
    backdrop-filter: blur(5px);
    position: relative;
}

/* Эффект свечения при наведении */
.footer:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(139, 181, 184, 0.3);
}

/* Верхняя акцентная линия */
.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent), 
        transparent);
    border-radius: 3px;
}

/* ===== ОБВОДКА ДЛЯ НАВБАРА ===== */
.navbar {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 25px;
    background: rgba(74, 96, 98, 0.9) !important;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Постоянная акцентная линия */
.navbar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent), 
        transparent);
    border-radius: 3px;
}

/* Постоянный эффект свечения */
.navbar {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(139, 181, 184, 0.4);
}

/* ===== СДВИГ ССЫЛОК В НАВБАРЕ ===== */
.navbar-links {
    padding-left: 70px !important;
}

/* ===== КРАСИВЫЙ ШРИФТ ДЛЯ НАЗВАНИЯ С ЭФФЕКТОМ СВЕЧЕНИЯ ===== */
.navbar-brand {
    font-family: 'Segoe UI', 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff !important;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 15px rgba(139, 181, 184, 0.4),
        0 0 20px rgba(139, 181, 184, 0.3);
    letter-spacing: 0.5px;
    transition: text-shadow 0.3s ease;
}

/* Эффект при наведении */
.navbar-brand:hover {
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 25px rgba(139, 181, 184, 0.6),
        0 0 35px rgba(139, 181, 184, 0.5);
}

/* ===== УБРАТЬ ОБВОДКУ У ССЫЛОК ===== */
.nav-link {
    border: none !important;
    background: none !important;
}

.nav-link:hover {
    border: none !important;
    background: none !important;
}

/* Оставить только подчеркивание */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--lighter-bg));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== СТИЛИ ДЛЯ ЭЛЕМЕНТА ИНН ===== */
#inn {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    color: var(--text-light) !important;
    background: linear-gradient(135deg, 
        rgba(74, 96, 98, 0.95), 
        rgba(58, 77, 78, 0.95));
    border: 2px solid var(--border-color);
    border-top: none;
    border-left: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 
        0 0 15px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(139, 181, 184, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Верхняя акцентная линия */
#inn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent), 
        transparent);
    border-radius: 3px;
}

/* Эффект свечения */
#inn {
    border-color: var(--accent);
    box-shadow: 
        0 0 15px rgba(139, 181, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 768px) {
    /* Центрируем контейнер продуктов */
    .products-container {
        position: static !important;
        left: 0 !important;
        width: 100% !important;
        margin: 20px auto !important;
        padding: 20px !important;
        text-align: center !important;
    }
    
    /* Центрируем кнопки категорий */
    .products-types-buttons {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Центрируем поиск */
    .search-input {
        text-align: center !important;
    }
    
    /* Карточки товаров в одну колонку по центру */
    .product-cards {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    /* Карточки по центру */
    .product-card {
        width: 90% !important;
        max-width: 320px !important;
        text-align: center !important;
    }
    
    /* Центрируем содержимое карточек */
    .product-card-footer {
        align-items: center !important;
        text-align: center !important;
    }
    
    .product-card-name {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Навбар по центру */
    .navbar {
        text-align: center !important;
    }
    
    .navbar-links {
        padding-left: 0 !important;
        justify-content: center !important;
    }
    
    /* Хедер по центру */
    .navbar-mobile {
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .navbar-brand {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    /* Центрируем кнопку меню */
    .mobile-buttons {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    
    .navbar-toggler {
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Футер по центру */
    .footer {
        text-align: center !important;
        margin: 20px auto !important;
    }
    
    /* Центрируем ИНН (или скрываем) */
    #inn {
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        border-top-right-radius: 10px !important;
        border-top-left-radius: 10px !important;
        border-left: 2px solid var(--border-color) !important;
    }
}

/* ===== ИСПРАВЛЕНИЕ КОНФЛИКТОВ ===== */
.auth-btns .balance-btn {
    font-family: 'Courier New', 'Lucida Console', monospace !important;
    color: #ffffff !important;
}

.auth-btns .auth-btn {
    font-family: 'Verdana', 'Geneva', Tahoma, sans-serif !important;
    color: #ffffff !important;
}

/* Убираем старые стили для навбара */
header .navbar {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 25px;
    background: rgba(74, 96, 98, 0.95) !important;
    backdrop-filter: blur(10px);
    position: relative;
    padding: 10px 20px;
}

/* Убираем подчеркивание для белых кнопок */
.navbar-nav .nav-link::after {
    display: none !important;
}
/* ===== СТИЛИ ДЛЯ МОБИЛЬНОГО МЕНЮ ===== */
@media (max-width: 768px) {
    /* Фон для мобильного меню */
    .navbar-links {
        background-color: #607c7e !important;
        background-image: linear-gradient(
            135deg,
            #607c7e 0%,
            #4d6566 50%,
            #607c7e 100%
        ) !important;
        border: 1px solid #556e70;
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px !important;
    }
    
    /* Стиль для кнопки меню */
    .navbar-toggler {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 8px 20px;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: #ffffff;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    
    /* Стиль для текста внутри кнопки */
    .navbar-toggler-icon {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 700;
        color: #ffffff;
        font-size: 14px;
    }
    
    /* Фон для выпадающего меню */
    .navbar-nav {
        background-color: transparent !important;
    }
    
    /* Ссылки в мобильном меню */
    .navbar-nav .nav-item {
        margin-bottom: 8px;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        padding: 10px !important;
        margin: 5px 0 !important;
        border-radius: 6px;
    }
    
    /* Центрируем контейнер продуктов */
    .products-container {
        position: static !important;
        left: 0 !important;
        width: 100% !important;
        margin: 20px auto !important;
        padding: 20px !important;
        text-align: center !important;
    }
    
    /* Центрируем кнопки категорий */
    .products-types-buttons {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Центрируем поиск */
    .search-input {
        text-align: center !important;
    }
    
    /* Карточки товаров в одну колонку по центру */
    .product-cards {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    /* Карточки по центру */
    .product-card {
        width: 90% !important;
        max-width: 320px !important;
        text-align: center !important;
    }
    
    /* Центрируем содержимое карточек */
    .product-card-footer {
        align-items: center !important;
        text-align: center !important;
    }
    
    .product-card-name {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Навбар по центру */
    .navbar {
        text-align: center !important;
    }
    
    .navbar-links {
        padding-left: 0 !important;
        justify-content: center !important;
    }
    
    /* Хедер по центру */
    .navbar-mobile {
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .navbar-brand {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    /* Центрируем кнопку меню */
    .mobile-buttons {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    
    /* Футер по центру */
    .footer {
        text-align: center !important;
        margin: 20px auto !important;
    }
    
    /* Центрируем ИНН */
    #inn {
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        border-top-right-radius: 10px !important;
        border-top-left-radius: 10px !important;
        border-left: 2px solid #556e70 !important;
    }
}
/* ===== ДОБАВЛЕНИЕ ФОНОВОЙ КАРТИНКИ ===== */
.app-wrapper {
    background: 
        /* Полупрозрачный цветной слой поверх фото (можно настроить прозрачность) */
        linear-gradient(
            rgba(96, 124, 126, 0.7), 
            rgba(77, 101, 102, 0.8)
        ),
        /* Ваша фоновое изображение - ЗАМЕНИТЕ URL НА СВОЕ ИЗОБРАЖЕНИЕ */
        url('https://img.freepik.com/premium-vector/abstract-dark-gray-splash-grunge-texture-background_278222-6229.jpg?semt=ais_hybrid&w=740') !important;
    
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
}