* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    padding: 0 0.25rem; /* ← МИНИМАЛЬНЫЙ ОТСТУП */
    margin: 0;
}

/* ХЕДЕР */
.header {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(30, 30, 50, 0.98) 100%);
    backdrop-filter: blur(20px);
    width: 100%; /* ← ПРОСТО 100% */
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
    box-sizing: border-box;
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 2rem 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem; /* ← ВОТ ОНИ ОТСТУПЫ */
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

/* ХУЛИГАНСКИЙ ЛОГОТИП */
.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 2.2rem;  /* Уменьшен */
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
}

.logo .hub {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* ПОИСК — УВЕЛИЧЕННЫЙ */
.search-container {
    flex: 2;  /* Больше места */
    min-width: 350px;
    max-width: 600px;
}

.search-form {
    display: flex;
    background: rgba(40, 40, 60, 0.9);
    border-radius: 50px;
    padding: 8px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
    height: 52px;
}

.search-form:hover {
    border-color: #ff8c00;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 24px;
    color: #e0e0e0;
    font-size: 1.05rem;
    outline: none;
    height: 100%;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    border: none;
    padding: 0 24px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
}

.search-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* КНОПКИ НАВИГАЦИИ */
.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-link {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    background: rgba(80, 80, 80, 0.8) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    font-weight: 600 !important;
    font-size: 1rem !important; /* ← ФИКСИРУЕМ РАЗМЕР */
    line-height: 1.4 !important; /* ← ЦЕНТРОВКА ПО ВЫСОТЕ */
    height: 48px !important; /* ← ФИКСИРОВАННАЯ ВЫСОТА */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid transparent !important;
    white-space: nowrap !important;
}

.nav-link:hover {
    background: rgba(255, 140, 0, 0.35) !important;
    border-color: #ff8c00 !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4) !important;
}

.nav-link.active {
    background: linear-gradient(135deg, #ff8c00, #ff6600, #ff4500) !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5) !important;
    color: white !important;
    border-color: #ff8c00 !important;
    transform: translateY(-1px) !important;
}

/* КОНТЕЙНЕР */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem; /* ← ФИКСИРОВАННЫЙ ОТСТУП */
    width: 100%;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

/* ПЕРЕКЛЮЧАТЕЛИ ФИЛЬТРОВ — ВОССТАНОВЛЕНЫ */
.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filters a {
    padding: 12px 24px !important; /* ← БОЛЬШЕ ПАДДИНГ */
    background: rgba(80, 80, 80, 0.7);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem !important; /* ← ТОТ ЖЕ РАЗМЕР */
    font-weight: 600 !important;
    line-height: 1.4 !important; /* ← ЦЕНТРОВКА */
    height: 48px !important; /* ← ЕДИНАЯ ВЫСОТА */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-right: 8px; /* ← ОТСТУПЫ МЕЖДУ КНОПКАМИ */
    box-sizing: border-box;
}

.filters a:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    transform: translateY(-2px);
    color: #fff;
}

.filters a.active {
    background: linear-gradient(45deg, #ff8c00, #ff4500) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
    border-color: #ff8c00 !important;
}

/* КАРТОЧКИ */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: start;
    width: 100%; /* ← ПОЛНАЯ ШИРИНА */
    padding: 0 0.5rem; /* ← МАЛЕНЬКИЙ ОТСТУП */
    box-sizing: border-box;
}

.movie-card {
    background: rgba(30, 30, 40, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 165, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
}

.movie-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 140, 0, 0.25);
    border-color: #ff8c00;
}

.poster-container {
    height: 480px;
    position: relative;
    overflow: hidden;
    width: 100%; /* ← ДОБАВЛЯЕМ */
    max-width: 100%; /* ← ОГРАНИЧИВАЕМ */
    box-sizing: border-box; /* ← ВАЖНО */
}

.poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-width: 100%; /* ← БЛОКИРУЕМ ВЫВАЛИВАНИЕ */
    display: block; /* ← УБИРАЕМ INLINE-ОТСТУПЫ */
}

.poster-container:hover .poster {
    transform: scale(1.08);
}

.poster-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(255, 69, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.card-content {
    padding: 1.8rem;
}

.card-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-subtitle {
    color: #b8b8b8;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.genres {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-info {
    display: flex;
    gap: 1.2rem;
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.status {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.proposed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.status.viewed {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    color: white;
    border: 1px solid rgba(255, 140, 0, 0.6);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.stats {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 30, 0.7);
    border-radius: 16px;
    font-size: 1rem;
    color: #b0b0b0;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 165, 0, 0.1);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .header-top {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .nav-buttons {
        justify-content: center;
        margin-left: 0;
        order: 3;
    }
    
    .search-container {
        order: 2;
        min-width: auto;
    }
}


@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1.5rem; /* ← ОТСТУПЫ МЕЖДУ БЛОКАМИ */
        padding: 1.2rem 0.75rem 1rem 0.75rem !important;
        align-items: center;
    }

    .filter-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .pagination {
        justify-content: center;
    }
    
    .container {
        padding: 1.5rem 0.75rem; /* ← ТОЧНО ТЕ ЖЕ 0.75rem */
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 350px)); /* ← ФИКСИРОВАННАЯ МАКС.ШИРИНА */
        justify-content: center; /* ← ЦЕНТРИРУЕМ КАРТОЧКИ */
        gap: 1.2rem;
        padding: 0;
    }
    
    .movie-card {
        width: 100%;
        max-width: 340px; /* ← НЕ РАСТЯГИВАЕТСЯ БОЛЬШЕ */
        margin: 0 auto;
    }

    .poster-container {
        max-width: 340px; /* ← ТОЧНО ПО КАРТОЧКЕ */
    }

    .nav-link, .filters a {
        padding: 12px 20px !important; /* ← РАВНЫЙ ПАДДИНГ */
        font-size: 0.95rem !important; /* ← ОДИНАКОВЫЙ ШРИФТ */
        height: 44px !important; /* ← ОДИНАКОВАЯ ВЫСОТА */
        min-width: 90px; /* ← МИНИМАЛЬНАЯ ШИРИНА */
    }

}

/* НОВЫЙ BREAKPOINT ДЛЯ NORD 5 */
@media (max-width: 430px) {
    .header-top {
        padding: 1rem 0.5rem !important;
        gap: 1rem;
    }
    
    .search-container {
        min-width: 100% !important;  /* ← ПОЛНАЯ ШИРИНА */
        max-width: 100% !important;
        order: 2;
    }
    
    .search-form {
        padding: 6px 10px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .search-btn {
        width: 60px;
        padding: 0 12px;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center !important;
        gap: 0.5rem !important;
        order: 3;
        flex-wrap: wrap;
    }
    
    .admin-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
    
    .nav-link {
        padding: 8px 14px !important;
        font-size: 0.85rem !important;
        min-width: 70px !important;
    }

    .hub {
    font-size: 1.9rem;  /* Такой же крупный */
    }
}

/* СВЕРХМАЛЕНЬКИЕ ЭКРАНЫ 360px */
@media (max-width: 370px) {

    .header-top {
        padding: 0.8rem 0.3rem !important;
        gap: 1rem;
    }

    body {
        padding: 0; /* ← УБИРАЕМ ПОЛНОСТЬЮ */
    }

    .container {
        padding: 1rem 0.5rem;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(290px, 310px)); /* ← 290px! */
        gap: 1rem;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .movie-card {
        max-width: 300px; /* ← СТРОГО ОГРАНИЧИВАЕМ */
        width: 100%;
        margin: 0 auto;
    }

    .poster-container {
        max-width: 300px;
        height: 400px; /* ← МЕНЬШЕ НА СВЕРХМАЛЕНЬКИХ */
    }

    .header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 1.5rem 1.5rem 1.5rem; /* ← РАВНЫЕ ОТСТУПЫ */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    }
    
    .search-container {
        min-width: 100%; /* ← ПОЛНАЯ ШИРИНА */
        margin: 0.5rem 0;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 7px 12px !important;
        flex: 1;
        min-width: 90px;
        text-align: center;
    }
}

/* ХУЛИГАНСКИЙ ЛОГОТИП "Кинಠхаб" */
/* ХУЛИГАНСКИЙ ЛОГОТИП — КРУПНЕЕ */
.logo h1 {
    font-size: 2.8rem;  /* Было 2.4rem → СТАЛО 2.8rem */
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.kino {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.eye {
    font-size: 2.6rem;  /* Пропорционально крупнее */
    line-height: 1;
    margin: 0 4px 0 8px;
    vertical-align: middle;
    animation: blink 4s infinite;
}

.hub {
    background: linear-gradient(45deg, #ff8c00, #ff6600, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    font-size: 2.8rem;  /* Такой же крупный */
    line-height: 1;
    margin-left: 2px;
    text-shadow: 0 2px 8px rgba(255, 140, 0, 0.5);
}



/* МОРГАНИЕ ГЛАЗОМ */
@keyframes blink {
    0%, 85%, 100% { transform: scaleY(1) scaleX(1); }
    90% { transform: scaleY(0.05) scaleX(1.1); }
}

/* ПАГИНАЦИЯ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.page-btn, .page-active {
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-btn {
    background: rgba(80, 80, 80, 0.7);
    color: #e0e0e0;
}

.page-btn:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
    transform: translateY(-2px);
    color: #fff;
}

.page-active {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

/* АНИМАЦИЯ ПОЯВЛЕНИЯ */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LAZY LOADING */
.poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* ФИНАЛЬНЫЙ ФИКС — статус всегда внизу */
.movie-card {
    background: rgba(30, 30, 40, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 165, 0, 0.15);
    height: 100%;  /* ← НОВОЕ: фиксированная высота */
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
}

.card-content {
    padding: 1.8rem;
    flex-grow: 1;  /* ← Растягивается */
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* ← Контент сверху, статус снизу */
}

.status {
    margin-top: auto;  /* ← ПРИЛИПАЕТ К НИЗУ */
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    min-height: 36px;  /* ← Фиксированная высота кнопки */
    display: flex;
    align-items: center;
}

.status.proposed {
    background: rgba(40, 167, 69, 0.25);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

.status.viewed {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    color: white;
    border: 1px solid rgba(255, 140, 0, 0.7);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Grid для равной высоты карточек */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    align-items: start;  /* ← Карточки выравниваются по верху */
}

/* ФИЛЬТРЫ + ПАГИНАЦИЯ В ОДНУЮ СТРОКУ */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

/* КОМПАКТНАЯ ПАГИНАЦИЯ */
.page-btn.small, .page-active.small {
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn.small:hover {
    transform: translateY(-1px) !important;
    padding: 8px 12px !important;
}

.admin-btn {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-radius: 50% !important;  /* КРУГЛАЯ */
    background: rgba(80, 80, 80, 0.8) !important;
    transition: all 0.3s ease !important;
    font-size: 1.2rem !important;
    border: 2px solid transparent !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.admin-btn:hover {
    background: rgba(255, 140, 0, 0.4) !important;
    border-color: #ff8c00 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
}

.admin-btn.active {
    background: linear-gradient(135deg, #ff8c00, #ff4500) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6) !important;
}

/* АДМИН КНОПКИ - РАЗНЫЕ ЦВЕТА */
.movie-card .card-footer,
.series-card .card-footer {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 12px !important;
}

.movie-card .status.admin-toggle,
.series-card .status.admin-toggle {
    cursor: pointer !important;
    flex: 7 !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    font-size: 0.9rem !important;
}

/* ПРЕДЛОЖЕНО - ЗЕЛЕНЫЙ */
.movie-card .status.proposed.admin-toggle,
.series-card .status.proposed.admin-toggle {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;  /* Белый текст + часы видно */
}

.movie-card .status.proposed.admin-toggle:hover,
.series-card .status.proposed.admin-toggle:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

/* ПРОСМОТРЕНО - ЖЕЛТЫЙ С ТЕМНЫМ ТЕКСТОМ */
.movie-card .status.viewed.admin-toggle,
.series-card .status.viewed.admin-toggle {
    background: linear-gradient(135deg, #ffc107, #fd7e14) !important;
    color: #2c3e50 !important;  /* Темный текст читаемый */
    font-weight: 700 !important;
}

.movie-card .status.viewed.admin-toggle:hover,
.series-card .status.viewed.admin-toggle:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5) !important;
    border-color: rgba(0,0,0,0.3) !important;
}

/* УДАЛИТЬ - без изменений */
.movie-card .delete-btn,
.series-card .delete-btn {
    flex: 2 !important;
    background: linear-gradient(135deg, #dc3545, #a71e2a) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4) !important;
    margin-left: auto !important;
}

.movie-card .delete-btn:hover,
.series-card .delete-btn:hover {
    background: linear-gradient(135deg, #c82333, #921a23) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6) !important;
}

.logo-link {
    text-decoration: none !important;
}

.filters a {
    padding: 12px 18px !important;  /* Больше места для цифр */
}

.filters a::after {
    content: '';
    margin-left: 6px;
    font-size: 0.9em;
    opacity: 0.8;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;  /* ← Больше отступ */
}

.rating-link {
    font-size: 0.95rem;      /* ← ЕЩЁ КРУПНЕЕ */
    font-weight: 600;
    color: #ffffff !important;  /* ← БЕЛЫЙ */
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.4);  /* ← ПУНКТИР */
    padding: 0.2rem 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.rating-link:hover {
    color: #ff8c00 !important;  /* ← Оранжевый при hover */
    border-bottom-color: rgba(255,140,0,0.6);
    text-shadow: 0 1px 4px rgba(255,140,0,0.3);
    transform: translateY(-1px);
}

/* Мобильная */
@media (max-width: 768px) {
    .logo-container {
        gap: 0.5rem;
    }
    
    .rating-link {
        font-size: 0.9rem;
    }
}
