* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Изменяем цвет выделения текста по всему сайту */
::selection {
    background-color: #1e88e5;
    color: #ffffff;
}

/* Стилизация скроллбара браузера под стиль сайта */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0c0c0f;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

body {
    background-color: #0c0c0f;
    color: #ffffff;
    overflow-x: hidden;
}

.app-container.top-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- TOP NAVBAR --- */
.top-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(12, 12, 15, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left, .nav-center, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left { width: 250px; }
.nav-right { width: 250px; justify-content: flex-end; gap: 20px; }

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo { width: 48px; height: 48px; }

/* Двухстрочный блок онлайна */
.sidebar-online {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 48px; /* Выравнивание по высоте логотипа (48px) */
}
.sidebar-online-label {
    font-size: 10px;
    color: #8c8c9a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.sidebar-online-value {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    transition: color 0.3s;
}

.dot { width: 8px; height: 8px; background-color: #1e88e5; border-radius: 50%; box-shadow: 0 0 10px #1e88e5; }

/* --- MAIN MENU --- */
.main-menu { display: flex; gap: 5px; }
.menu-item {
    display: flex; align-items: center; text-decoration: none;
    color: #8c8c9a; padding: 10px 16px; border-radius: 12px;
    font-weight: 600; font-size: 14px; transition: all 0.2s ease;
}
.menu-item:hover, .menu-item.active { background-color: #121213; color: #ffffff; }
.menu-item .icon { margin-right: 10px; font-size: 16px; }
.badge { background-color: #e53935; color: white; font-size: 10px; padding: 3px 6px; border-radius: 4px; margin-left: 8px; font-weight: 800; }

/* --- SOCIALS & BUTTONS --- */
.desktop-socials { display: flex; gap: 15px; }
.mobile-social-links { display: none; }
.social-links a { color: #5b5b66; text-decoration: none; font-size: 20px; transition: color 0.2s; }
.social-links a:hover { color: #ffffff; }

.steam-login-btn {
    background-color: #3b82f6; color: white; border: none;
    padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 14px;
    display: flex; align-items: center; gap: 8px; cursor: pointer; transition: background-color 0.2s;
    text-decoration: none;
}
.steam-login-btn:hover { background-color: #2563eb; }

/* ПРОФИЛЬ ПОЛЬЗОВАТЕЛЯ В ШАПКЕ */
.user-profile-badge { 
    display: flex; align-items: center; gap: 12px; 
    background: rgba(255, 255, 255, 0.05); padding: 6px 6px 6px 12px; 
    border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.1); 
}
.user-avatar { 
    width: 28px; height: 28px; background: #3b82f6; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 12px; color: white; 
}
.user-info { display: flex; flex-direction: column; }
.user-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.user-role { font-size: 10px; font-weight: 600; color: #8c8c9a; text-transform: uppercase; }
.btn-logout { 
    background: transparent; border: none; color: #8c8c9a; width: 32px; height: 32px; 
    border-radius: 50%; cursor: pointer; transition: all 0.2s; 
    display: flex; align-items: center; justify-content: center; 
}
.btn-logout:hover { background: rgba(255, 68, 68, 0.1); color: #ff4444; }

/* Кнопка гамбургер меню скрыта на ПК */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}
.mobile-menu-btn:hover { color: #3b82f6; }

/* --- CENTERED CONTENT AREA --- */
.content-centered {
    max-width: 1400px;
    width: 100%; margin: 40px auto; padding: 0 40px;
    display: flex; flex-direction: column; gap: 40px; flex-grow: 1;
}

/* --- PREMIUM PROJECT STATS --- */
.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px; /* Добавлен отступ снизу */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 30px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.stat-item:hover::before { left: 150%; }

.stat-icon {
    font-size: 28px;
    color: #3b82f6; 
    background: rgba(59, 130, 246, 0.1); 
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.stat-text { display: flex; flex-direction: column; }
.stat-item .value { font-size: 28px; font-weight: 800; margin-bottom: 2px; color: #ffffff; }
.stat-item .label { font-size: 13px; color: #8c8c9a; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- SERVER SELECTION AREA (HERO BANNER) --- */
.server-selection-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modes-nav {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.modes-nav::-webkit-scrollbar { height: 0px; }

.mode-nav-item {
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    min-width: max-content;
}
.mode-nav-item:hover { background-color: rgba(255,255,255,0.05); }
.mode-nav-item.active { background-color: rgba(255,255,255,0.08); }

.mode-nav-item.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
.mode-nav-item.disabled:hover {
    background-color: transparent; 
}

.mode-name {
    font-size: 14px;
    color: #aeb4c5;
    margin-bottom: 4px;
    font-weight: 600;
}
.mode-nav-item.active .mode-name { color: #ffffff; }
.mode-online { font-size: 12px; color: #5b5b66; font-weight: 500; }

.mode-hero {
    height: 550px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-color: #121213;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.6);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(12,12,15,0.3) 0%, rgba(12,12,15,0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 64px;
    font-weight: 800; 
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px; 
}

.hero-sublinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px; 
    font-size: 13px;
    color: #aeb4c5;
    font-weight: 500;
}

/* Плашка пинга */
.ping-badge {
    display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; border: 1px solid rgba(255, 255, 255, 0.1);
}
.ping-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #5b5b66; transition: background-color 0.3s, box-shadow 0.3s; }
.ping-dot.green { background-color: #4caf50; box-shadow: 0 0 8px rgba(76, 175, 80, 0.6); }
.ping-dot.yellow { background-color: #ffeb3b; box-shadow: 0 0 8px rgba(255, 235, 59, 0.6); }
.ping-dot.red { background-color: #f44336; box-shadow: 0 0 8px rgba(244, 67, 54, 0.6); }

.about-mode-trigger {
    cursor: help;
    transition: color 0.2s;
    position: relative;
}
.about-mode-trigger:hover { color: #ffffff; }

/* Короткое описание режима */
.hero-short-desc {
    font-size: 15px; color: #8c8c9a; max-width: 600px; margin: 0 auto 35px auto;
    font-weight: 500; line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 15px;
    width: 100%;
}

.btn-quick-play {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
    background: transparent;
    height: 52px; 
}
.btn-quick-play:hover { transform: translateY(-3px); }

.btn-quick-play-left {
    background-color: #1e88e5; 
    padding: 0 18px;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 100%;
}
.btn-quick-play-right {
    background-color: #64b5f6; 
    padding: 0 28px;
    color: #121213; 
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px); 
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 0 24px;
    height: 52px; 
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-dark:hover { 
    background: rgba(255, 255, 255, 0.1); 
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px); 
}

.steam-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 0;
    z-index: 3;
    font-size: 12px;
    color: #5b5b66;
    font-weight: 600;
    background-color: #0c0c0f; 
    padding: 12px 24px;
    border-radius: 16px 16px 0 0; 
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- GLOBAL TOOLTIP --- */
.global-tooltip {
    position: absolute;
    z-index: 9999;
    width: 260px;
    background-color: #212533;
    color: #aeb4c5;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
    pointer-events: none;
}
.global-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent #212533 transparent;
}
.global-tooltip.visible { opacity: 1; visibility: visible; }

/* --- STAGGERED ANIMATIONS FOR HERO CONTENT --- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.fade-in-up-stagger { 
    opacity: 0; 
    animation: fadeInUp 0.5s ease-out forwards; 
}

/* === СТРАНИЦА АВТОРИЗАЦИИ / РЕГИСТРАЦИИ === */
.auth-page-wrapper {
    display: flex; justify-content: center; align-items: center; min-height: 60vh;
}
.auth-box {
    background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px;
    padding: 50px; width: 100%; max-width: 480px; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: fadeInUp 0.5s ease-out forwards;
}
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.auth-header p { font-size: 14px; color: #8c8c9a; font-weight: 500; }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 13px; font-weight: 700; color: #aeb4c5; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.input-group label i { color: #3b82f6; margin-right: 5px; }
.input-group input {
    width: 100%; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; font-size: 15px; padding: 14px 18px; border-radius: 12px; outline: none; transition: border-color 0.2s, background 0.2s;
}
.input-group input:focus { border-color: #3b82f6; background: rgba(0, 0, 0, 0.5); }
.input-group input::placeholder { color: #5b5b66; }

.auth-error { color: #ff4444; font-size: 13px; font-weight: 600; margin-bottom: 20px; text-align: center; min-height: 16px; }

.btn-auth {
    width: 100%; background: #3b82f6; color: white; border: none; padding: 16px; border-radius: 12px;
    font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.btn-auth:hover { background: #2563eb; transform: translateY(-2px); }
.btn-auth:disabled { background: #5b5b66; cursor: not-allowed; transform: none; }

.auth-footer { text-align: center; margin-top: 25px; font-size: 14px; color: #8c8c9a; font-weight: 500; }
.switch-auth-btn { background: none; border: none; color: #3b82f6; font-size: 14px; font-weight: 700; cursor: pointer; transition: color 0.2s; padding: 0; font-family: 'Montserrat', sans-serif; }
.switch-auth-btn:hover { color: #64b5f6; text-decoration: underline; }

/* === УВЕДОМЛЕНИЕ О COOKIE (СПРАВА) === */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Выровнено по правому краю */
    z-index: 9999;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 25px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-content { display: flex; gap: 15px; align-items: flex-start; }
.cookie-icon { font-size: 24px; color: #3b82f6; margin-top: 2px; }
.cookie-text h4 { font-size: 16px; color: #fff; margin-bottom: 6px; font-weight: 700; }
.cookie-text p { font-size: 12px; color: #8c8c9a; line-height: 1.5; font-weight: 500; }
.cookie-text a { color: #3b82f6; text-decoration: none; transition: color 0.2s; }
.cookie-text a:hover { color: #64b5f6; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie { flex: 1; padding: 10px 0; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: none; font-family: 'Montserrat', sans-serif; }
.btn-cookie-accept { background: #3b82f6; color: white; }
.btn-cookie-accept:hover { background: #2563eb; transform: translateY(-2px); }
.btn-cookie-decline { background: rgba(255, 255, 255, 0.05); color: #aeb4c5; border: 1px solid rgba(255, 255, 255, 0.1); }
.btn-cookie-decline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; transform: translateY(-2px); }

/* --- КАСТОМНЫЙ ВЫБОР ЯЗЫКА --- */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 110px;
}
.custom-select-trigger {
    background: transparent;
    color: #474752;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}
.custom-select-trigger:hover, .custom-select-wrapper.open .custom-select-trigger {
    background: rgba(255, 255, 255, 0.03);
    color: #8c8c9a;
}
.custom-select-trigger i {
    font-size: 10px;
    transition: transform 0.2s;
}
.custom-select-wrapper.open .custom-select-trigger i {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    display: block;
    bottom: calc(100% + 5px); /* Открывается вверх, так как в футере */
    left: 0;
    width: 100%;
    background: #121213;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 10;
    max-height: 220px; /* Ограничение высоты */
    overflow-y: auto;  /* Прокрутка для списка языков */
}
.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select-option {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #8c8c9a;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.custom-select-option:first-child { border-radius: 8px 8px 0 0; }
.custom-select-option:last-child { border-radius: 0 0 8px 8px; }
.custom-select-option:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}
.custom-select-option.selected { color: #3b82f6; }

/* --- FOOTER --- */
.footer {
    display: flex; justify-content: space-between; align-items: center;
    background-color: transparent; 
    padding: 20px 10px; 
    font-size: 12px; 
    color: #474752; 
    font-weight: 500;
    margin-top: auto; 
}
.footer p { color: #474752; }
.footer .muted { margin-top: 6px; color: #3b3b44; } 
.footer-right { display: flex; align-items: center; gap: 15px; color: #3b3b44; }
.footer-right a { color: #474752; text-decoration: none; transition: color 0.2s; }
.footer-right a:hover { color: #8c8c9a; }

/* --- SKELETON --- */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: #121213;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0) 40%);
    background-size: 400px 100%;
    background-repeat: no-repeat;
    animation: shimmer 1.5s infinite linear;
}
.skeleton-text { border-radius: 4px; }

/* =======================================================
   RESPONSIVE DESIGN (Адаптация под мобильные устройства)
   ======================================================= */

@media (max-width: 1200px) {
    .nav-left, .nav-right { width: auto; }
    .hero-title { font-size: 52px; }
}

@media (max-width: 992px) {
    /* Сетка статистики 2x2 на планшетах */
    .project-stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .top-navbar { padding: 15px 20px; }
    .content-centered { padding: 0 20px; }
    
    /* Прячем ПК соцсети, показываем кнопку мобильного меню */
    .desktop-socials { display: none; }
    .mobile-menu-btn { display: block; margin-left: 15px; }
    
    /* Переделываем меню в мобильную шторку (Off-canvas) */
    .nav-center {
        position: fixed;
        top: 79px; /* Высота навбара */
        left: -100%;
        width: 100%;
        height: calc(100vh - 79px);
        background-color: rgba(12, 12, 15, 0.98); /* Более плотный фон для меню */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }
    
    /* Класс active открывает меню */
    .nav-center.active { left: 0; }
    
    .main-menu { flex-direction: column; width: 100%; max-width: 400px; gap: 10px; }
    .menu-item { width: 100%; font-size: 18px; padding: 18px; border-radius: 14px; justify-content: flex-start; }
    .menu-item .icon { margin-right: 15px; font-size: 20px; width: 24px; text-align: center; }
    
    /* Показываем соцсети внутри мобильного меню */
    .mobile-social-links { display: flex; justify-content: center; gap: 30px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .mobile-social-links a { color: #5b5b66; font-size: 28px; transition: color 0.2s; }
    .mobile-social-links a:hover { color: #ffffff; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    
    /* Выстраиваем кнопки вертикально для удобства нажатия пальцем */
    .hero-buttons { 
        flex-direction: column; 
        align-items: stretch; 
        width: 100%; 
        max-width: 320px; 
        margin: 0 auto; 
    }
    
    .steam-wrapper { width: 100%; }
    .steam-wrapper .btn-dark { width: 100%; }
    
    /* Уменьшаем высоту баннера */
    .mode-hero { height: auto; min-height: 550px; padding: 60px 0 80px 0; }
    
    .footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-right { flex-direction: column; gap: 15px; }

    /* Отступы карточки входа на планшетах */
    .auth-box { padding: 40px 30px; }
    
    /* Адаптация cookie баннера для планшетов и мобилок */
    .cookie-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    /* Сетка статистики в 1 колонку на телефонах */
    .project-stats-grid { grid-template-columns: 1fr; }
    
    /* Прячем текст возле онлайна на телефонах, чтобы поместилась кнопка Войти */
    .sidebar-online-label { display: none; }
    .sidebar-online { height: auto; }
    .sidebar-online-value { font-size: 16px; margin-top: 2px; }
    
    .top-navbar { padding: 10px 15px; }
    .content-centered { margin: 20px auto; padding: 0 15px; }
    
    .steam-login-btn span { display: none; } /* Скрываем слово "Войти", оставляем иконку */
    .steam-login-btn { padding: 10px 14px; }
    
    .hero-title { font-size: 32px; }
    .hero-short-desc { font-size: 14px; }
    .hero-scroll-indicator { font-size: 10px; padding: 10px 16px; text-align: center; line-height: 1.4; }
    
    .stat-item { padding: 20px; }
    .stat-icon { min-width: 50px; height: 50px; font-size: 22px; }
    .stat-item .value { font-size: 22px; }

    /* Мобильная карточка авторизации */
    .auth-box { padding: 30px 20px; border-radius: 16px; }
    .auth-header h2 { font-size: 24px; }
    
    /* Скрываем имя на мобилке, оставляем только аватарку профиля */
    .user-name, .user-role { display: none; }
    
    /* Делаем кнопки в куки-баннере столбиком для удобства нажатия */
    .cookie-buttons { flex-direction: column; }
}