/* ====================================================================
   top/top.css (ЖИДКОЕ СТЕКЛО ВЕРСИЯ) - ИСПРАВЛЕННЫЙ
   ==================================================================== */

/* УНИВЕРСАЛЬНЫЙ ФОН */
#top-screen {
    background: linear-gradient(135deg, #080808 0%, #0f0f1a 50%, #0a0a15 100%) !important;
    background-color: #080808 !important;
    min-height: 100vh;
}

/* ВЕРХНЯЯ ПАНЕЛЬ - LIQUID GLASS */
.top-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    
    /* LIQUID GLASS ЭФФЕКТ */
    background: rgba(30, 35, 50, 0.65) !important;
    backdrop-filter: blur(25px) saturate(180%) brightness(1.05) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(1.05) !important;
    
    border-bottom: 0.6px solid rgba(169, 217, 248, 0.25) !important;
    border-top: 0.8px solid rgba(169, 217, 248, 0.35) !important;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 1px 1px rgba(255, 255, 255, 0.05),
        inset 0 0.8px 0 rgba(255, 255, 255, 0.1),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.2) !important;
    
    height: 70px;
}

/* АКРИЛОВЫЙ СЛОЙ */
.top-page-header::before {
    content: "";
    position: absolute;
    top: 0.5px;
    left: 0.5px;
    right: 0.5px;
    bottom: 0.5px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    pointer-events: none;
    z-index: -1;
    border-radius: 0 0 20px 20px;
}

/* ЭФФЕКТ ВЛАЖНОГО СТЕКЛА */
.top-page-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 100%
    );
    border-radius: 0 0 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* КНОПКА НАЗАД */
.back-button {
    background: rgba(169, 217, 248, 0.1);
    color: rgba(169, 217, 248, 0.9);
    border: 0.8px solid rgba(169, 217, 248, 0.25);
    border-top: 1px solid rgba(169, 217, 248, 0.35);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    padding: 10px 18px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    
    /* LIQUID GLASS */
    background: rgba(40, 45, 60, 0.5) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
    
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(255, 255, 255, 0.05),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.1),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
    
    position: relative;
    overflow: hidden;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0.5px;
    left: 0.5px;
    right: 0.5px;
    bottom: 0.5px;
    border-radius: 15.5px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.07) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.back-button:hover {
    background: rgba(169, 217, 248, 0.15) !important;
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(-3px);
    border-color: rgba(169, 217, 248, 0.4);
    
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(255, 255, 255, 0.08),
        inset 0 0.8px 0 rgba(255, 255, 255, 0.15),
        inset 0 -0.8px 0 rgba(0, 0, 0, 0.1);
    
    padding-right: 25px;
}

.back-button:active {
    transform: translateX(-1px) scale(0.98);
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(169, 217, 248, 0.08) !important;
}

/* ЗАГОЛОВОК */
.top-page-title {
    text-align: center;
    font-size: 2.5em;
    margin: 25px 0 15px 0;
    background: linear-gradient(45deg, 
        rgba(169, 217, 248, 0.9),
        rgba(123, 184, 232, 0.8),
        rgba(169, 217, 248, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 40px rgba(169, 217, 248, 0.4),
        0 0 20px rgba(123, 184, 232, 0.3);
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
}

/* СНЕЖИНКИ В ЗАГОЛОВКЕ */
.top-page-title::after {
    content: '❄❄❄';
    position: absolute;
    font-size: 0.4em;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    animation: snowFloat 3s infinite ease-in-out;
}

@keyframes snowFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-5px) rotate(180deg); }
}

/* ОСНОВНОЙ КОНТЕЙНЕР */
.top-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 90px;
    position: relative;
}

/* ТАБЛИЦА РЕЙТИНГА - LIQUID GLASS */
.ranking-table {
    background: rgba(40, 45, 60, 0.4) !important;
    border-radius: 22px;
    padding: 20px;
    border: 0.8px solid rgba(169, 217, 248, 0.2) !important;
    border-top: 1px solid rgba(169, 217, 248, 0.3) !important;
    border-bottom: 0.6px solid rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(20px) saturate(160%) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) brightness(1.1) !important;
    margin-top: 15px;
    
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(255, 255, 255, 0.05),
        inset 0 0.8px 0 rgba(255, 255, 255, 0.08),
        inset 0 -0.8px 0 rgba(0, 0, 0, 0.15) !important;
    
    position: relative;
    overflow: hidden;
}

/* АКРИЛОВЫЙ СЛОЙ ТАБЛИЦЫ */
.ranking-table::before {
    content: "";
    position: absolute;
    top: 0.5px;
    left: 0.5px;
    right: 0.5px;
    bottom: 0.5px;
    border-radius: 21.5px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    pointer-events: none;
    z-index: -1;
}

/* СВЕРКАЮЩАЯ ОБВОДКА */
.ranking-table::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(169, 217, 248, 0.4),
        rgba(255, 255, 255, 0.6),
        rgba(169, 217, 248, 0.4),
        transparent);
    animation: shimmer 4s linear infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ЗАГОЛОВОК ТАБЛИЦЫ */
.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
    border-bottom: 0.8px solid rgba(169, 217, 248, 0.15) !important;
    margin-bottom: 15px;
    font-weight: 700;
    color: rgba(169, 217, 248, 0.9);
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(50, 55, 70, 0.3);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    
    border: 0.6px solid rgba(169, 217, 248, 0.1) !important;
    box-shadow: 
        inset 0 0.5px 0 rgba(255, 255, 255, 0.05),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
}

/* СТРОКИ ИГРОКОВ - LIQUID GLASS */
.table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    background: rgba(45, 50, 65, 0.35) !important;
    border-radius: 16px;
    border: 0.8px solid rgba(169, 217, 248, 0.1) !important;
    border-top: 1px solid rgba(169, 217, 248, 0.15) !important;
    border-bottom: 0.6px solid rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    
    backdrop-filter: blur(15px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
    
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(255, 255, 255, 0.03),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.05),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
}

/* АКРИЛОВЫЙ СЛОЙ ДЛЯ СТРОК */
.table-row::before {
    content: "";
    position: absolute;
    top: 0.5px;
    left: 0.5px;
    right: 0.5px;
    bottom: 0.5px;
    border-radius: 15.5px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.table-row:hover {
    background: rgba(169, 217, 248, 0.1) !important;
    transform: translateX(8px) scale(1.02);
    border-color: rgba(169, 217, 248, 0.25) !important;
    
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 3px 8px rgba(169, 217, 248, 0.15),
        0 0 0 0.8px rgba(169, 217, 248, 0.2),
        inset 0 0.8px 0 rgba(255, 255, 255, 0.1),
        inset 0 -0.8px 0 rgba(0, 0, 0, 0.1);
}

/* СТИЛИ ДЛЯ ЧАСТЕЙ СТРОКИ */
.table-row > div:first-child {
    width: 60px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    /* СЮДА ДОБАВЬ margin-left: */
    margin-left: -20px; /* ПОДВИНЕТ ЦИФРУ ЛЕВЕЕ */
}

.table-row > div:nth-child(2) {
    flex: 1;
    display: flex;
    align-items: center;
    /* ИЗМЕНИ ЭТУ СТРОКУ: */
    margin-left: -10px; /* Было 10px */
    min-width: 0;
}

.table-row > div:last-child {
    width: 120px;
    text-align: right;
    flex-shrink: 0;
}

/* НОМЕР РАНГА */
.rank-number-simple {
    font-size: 1.3em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
}

/* ОСОБЫЕ ЦВЕТА ДЛЯ ТОП-3 */
.table-row:nth-child(1) .rank-number-simple {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.table-row:nth-child(2) .rank-number-simple {
    color: #C0C0C0;
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
}

.table-row:nth-child(3) .rank-number-simple {
    color: #CD7F32;
    text-shadow: 0 0 8px rgba(205, 127, 50, 0.4);
}

/* АВАТАР И ИНФОРМАЦИЯ ОБ ИГРОКЕ */
.player-info-wrapper {
    display: flex;
    margin-left: -7px !important; /* ← ДОБАВЬТЕ ЭТО */
    align-items: center;
    gap: 0px !important;
    width: 100%;
}

.avatar-container {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    top: 2px !important; /* ← ДОБАВЬТЕ ЭТО */
}

.top-user-avatar, .top-user-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 0.8px solid rgba(169, 217, 248, 0.25) !important;
    
    /* LIQUID GLASS ЭФФЕКТ ДЛЯ АВАТАРА */
    background: rgba(50, 55, 70, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 0.5px 0 rgba(255, 255, 255, 0.1),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
}

.top-user-avatar-placeholder {
    background: linear-gradient(45deg, 
        rgba(169, 217, 248, 0.2),
        rgba(123, 184, 232, 0.15)) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(169, 217, 248, 0.8);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.player-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.player-name {
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-username {
    font-size: 0.85em;
    color: rgba(169, 217, 248, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ЯЧЕЙКА БАЛАНСА */
.balance-cell {
    font-size: 1.2em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.top-balance-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.balance-amount {
    font-size: 14px !important;
    font-weight: 100 !important;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-family: 'Arial Black', sans-serif;
}

/* ФУТЕР СТАТИСТИКИ */
.stats-footer {
    margin-top: 25px;
    text-align: center;
    color: rgba(169, 217, 248, 0.7);
    font-size: 0.9em;
    padding: 15px;
    border-top: 0.8px solid rgba(169, 217, 248, 0.1) !important;
    background: rgba(40, 45, 60, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    
    border: 0.6px solid rgba(169, 217, 248, 0.08) !important;
    box-shadow: 
        inset 0 0.5px 0 rgba(255, 255, 255, 0.04),
        inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
}

/* КАРТОЧКА МОЕГО РАНГА */
.user-rank-card {
    background: rgba(169, 217, 248, 0.1);
    border: 0.8px solid rgba(169, 217, 248, 0.2);
    border-top: 1px solid rgba(169, 217, 248, 0.25);
    border-bottom: 0.6px solid rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 15px;
    color: rgba(169, 217, 248, 0.9);
    font-weight: 600;
    display: inline-block;
    width: 90%;
    
    backdrop-filter: blur(15px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
    
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(255, 255, 255, 0.03),
        inset 0 0.6px 0 rgba(255, 255, 255, 0.08),
        inset 0 -0.6px 0 rgba(0, 0, 0, 0.1);
}

#my-rank-value {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(169, 217, 248, 0.4);
}

/* СОСТОЯНИЯ ЗАГРУЗКИ */
.loading-state, .error-state, .empty-state {
    text-align: center;
    padding: 40px;
    border-radius: 18px;
    margin: 20px 0;
    backdrop-filter: blur(15px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
    
    border: 0.8px solid rgba(169, 217, 248, 0.15) !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 0.6px 0 rgba(255, 255, 255, 0.05),
        inset 0 -0.6px 0 rgba(0, 0, 0, 0.1);
}

.loading-state {
    color: rgba(169, 217, 248, 0.8);
    background: rgba(40, 45, 60, 0.3) !important;
}

.error-state {
    color: rgba(255, 107, 107, 0.8);
    background: rgba(255, 107, 107, 0.05) !important;
    border-color: rgba(255, 107, 107, 0.15) !important;
}

.empty-state {
    color: rgba(169, 217, 248, 0.7);
    background: rgba(40, 45, 60, 0.25) !important;
}

/* АНИМАЦИИ */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.table-row:nth-child(1) { animation-delay: 0.1s; }
.table-row:nth-child(2) { animation-delay: 0.2s; }
.table-row:nth-child(3) { animation-delay: 0.3s; }
.table-row:nth-child(4) { animation-delay: 0.4s; }
.table-row:nth-child(5) { animation-delay: 0.5s; }
.table-row:nth-child(6) { animation-delay: 0.6s; }
.table-row:nth-child(7) { animation-delay: 0.7s; }
.table-row:nth-child(8) { animation-delay: 0.8s; }
.table-row:nth-child(9) { animation-delay: 0.9s; }
.table-row:nth-child(10) { animation-delay: 1s; }

/* СНЕЖИНКИ НА ФОНЕ */
#top-screen::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(169, 217, 248, 0.2) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 40px 70px, rgba(169, 217, 248, 0.15) 50%, transparent 50%),
        radial-gradient(2px 2px at 60px 20px, rgba(123, 184, 232, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 80px 50px, rgba(169, 217, 248, 0.1) 50%, transparent 50%);
    background-size: 150px 150px;
    z-index: -1;
    pointer-events: none;
    animation: snowFall 20s linear infinite;
}

@keyframes snowFall {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 150px, 30px 150px, 60px 150px, 90px 150px; }
}

/* ОСОБЫЕ ЭФФЕКТЫ ДЛЯ ТОП-3 СТРОК */
.table-row:nth-child(1) {
    border-left: 3px solid rgba(255, 215, 0, 0.4) !important;
}

.table-row:nth-child(2) {
    border-left: 3px solid rgba(192, 192, 192, 0.4) !important;
}

.table-row:nth-child(3) {
    border-left: 3px solid rgba(205, 127, 50, 0.4) !important;
}

.table-row:nth-child(1):hover {
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(255, 215, 0, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .top-page-header {
        padding: 12px 15px;
        height: 65px;
    }
    
    .top-page-title {
        font-size: 2em;
        margin: 20px 0 12px 0;
    }
    
    .top-page-container {
        padding: 90px 15px 80px;
    }
    
    .ranking-table {
        margin-top: 12px;
        padding: 15px;
    }
    
    .table-row > div:first-child {
        width: 50px;
        font-size: 1.1em;
    }
    
    .table-row > div:last-child {
        width: 100px;
    }
    
    .top-user-avatar, .top-user-avatar-placeholder {
        width: 35px;
        height: 35px;
    }
    
    .player-name {
        font-size: 1em;
    }
    
    .balance-cell {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .top-page-header {
        padding: 10px 12px;
        height: 60px;
    }
    
    .top-page-title {
        font-size: 1.6em;
        margin: 15px 0 10px 0;
    }
    
    .top-page-container {
        padding: 80px 12px 70px;
    }
    
    .back-button {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .table-row {
        padding: 10px 12px;
    }
    
    .table-row > div:first-child {
        width: 45px;
        font-size: 1em;
    }
    
    .table-row > div:last-child {
        width: 85px;
    }
    
    .top-user-avatar, .top-user-avatar-placeholder {
        width: 32px;
        height: 32px;
    }
    
    .player-name {
        font-size: 0.95em;
    }
    
    .player-username {
        font-size: 0.8em;
    }
    
    .balance-cell {
        font-size: 1em;
    }
}

/* ================== ОЧЕНЬ СИЛЬНЫЕ ПРАВКИ ДЛЯ ПОДНЯТИЯ ВСЕГО ================== */

/* ПОДНИМАЕМ ВСЮ ТАБЛИЦУ ЕЩЁ ВЫШЕ */
#top-screen {
    padding-top: 0 !important;
    margin-top: -40px !important; /* ЕЩЁ ВЫШЕ */
}

/* ЕЩЁ СИЛЬНЕЕ ПОДНИМАЕМ КОНТЕЙНЕР */
.top-page-container {
    padding-top: 0 !important; /* Было 20px, теперь 0 */
    margin-top: -30px !important; /* Было -20px */
}

/* ЕЩЁ СИЛЬНЕЕ ПОДНИМАЕМ ЗАГОЛОВОК */
.top-page-title {
    margin-top: 35px !important; /* Было 0px */
    margin-bottom: 5px !important; /* Было 10px */
}

/* ЕЩЁ СИЛЬНЕЕ ПОДНИМАЕМ САМУ ТАБЛИЦУ */
.ranking-table {
    margin-top: -10px !important; /* Было 0px */
}

/* УБИРАЕМ ОТСТУПЫ ВО ВЕРХНЕЙ ШАПКЕ ЕЩЁ БОЛЬШЕ */
.top-page-header {
    height: 45px !important; /* Было 50px */
    padding: 3px 15px !important; /* Было 5px 15px */
}

/* ВАРИАНТ 1: Просто поднять таблицу */
.ranking-table {
    margin-top: -55px !important;
}

/* БАЛАНС НАСТРОЙКА В ТОПЕ БАЛАНСА */
.balance-cell .stars-icon {
    width: 50px !important;
    height: 50px !important;
    background-image: url('../img/star.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
    display: inline-block !important;
    margin-right: -2px !important;
    margin-left: 3px !important; /* ← ДОБАВЬТЕ ЭТО */
}