/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #ffffff;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #2a2a4a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.logo a:hover {
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.nav-menu li a.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.2);
}

.login-btn {
    background: #1b2838;
    padding: 8px 20px;
    border-radius: 20px;
    color: #ffffff !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #2a475e;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-content p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 30px;
}

.steam-login-btn-hero {
    display: inline-block;
    background: #1b2838;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #2a475e;
}

.steam-login-btn-hero:hover {
    transform: scale(1.05);
    background: #2a475e;
    border-color: #ff6b35;
}

/* Features */
.features {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff6b35;
}

.feature-card p {
    color: #aaaaaa;
}

/* Products */
.popular-products,
.shop-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.popular-products h2,
.shop-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.product-card img {
    max-width: 80px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-card p {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-type {
    font-size: 12px;
    color: #888888;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    margin: 10px 0;
}

.buy-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.buy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* User Balance */
.user-balance {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.user-balance p {
    font-size: 18px;
}

.user-balance strong {
    color: #ff6b35;
    font-size: 22px;
}

.balance-btn {
    background: #2a475e;
    padding: 10px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.balance-btn:hover {
    background: #3a5a7e;
    transform: scale(1.05);
}

/* Login Page */
.login-container {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.login-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ff6b35;
}

.login-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.login-container p {
    color: #aaaaaa;
    margin-bottom: 20px;
}

.steam-login-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.steam-login-btn:hover {
    transform: scale(1.05);
}

.steam-login-btn img {
    width: 200px;
}

.login-info {
    margin-top: 20px;
    font-size: 14px;
    color: #888888;
}

/* Profile */
.profile-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
}

.profile-info h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.profile-info p {
    color: #aaaaaa;
    margin: 3px 0;
}

.profile-balance {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-balance h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.balance-amount {
    color: #ff6b35;
    font-size: 28px;
}

.balance-add {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.balance-add input {
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 16px;
    width: 200px;
}

.balance-add button {
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff6b35, #ff4500);
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.balance-add button:hover {
    transform: scale(1.05);
}

.hint {
    font-size: 12px;
    color: #666666;
    width: 100%;
}

/* Purchases History */
.purchases-history {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.purchases-history h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.purchases-table {
    width: 100%;
    border-collapse: collapse;
}

.purchases-table th,
.purchases-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.purchases-table th {
    color: #888888;
    font-weight: 500;
    font-size: 14px;
}

.purchases-table td {
    color: #ffffff;
}

.status-completed {
    color: #4caf50;
}

.status-pending {
    color: #ff9800;
}

.status-failed {
    color: #f44336;
}

.no-purchases {
    color: #888888;
    text-align: center;
    padding: 20px 0;
}

/* Top and Playtime */
.top-section,
.playtime-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.top-section h1,
.playtime-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.top-list,
.playtime-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.top-item,
.playtime-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.top-item:last-child,
.playtime-item:last-child {
    border-bottom: none;
}

.top-item:hover,
.playtime-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.top-position,
.playtime-position {
    font-size: 20px;
    min-width: 50px;
    text-align: center;
}

.top-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.top-info,
.playtime-info {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center;
}

.top-name,
.playtime-name {
    font-size: 16px;
}

.top-balance {
    color: #ff6b35;
    font-weight: bold;
}

.playtime-hours {
    color: #4caf50;
    font-weight: bold;
}

.top-1 .top-name,
.top-1 .playtime-name {
    color: #ffd700;
}

.top-2 .top-name,
.top-2 .playtime-name {
    color: #c0c0c0;
}

.top-3 .top-name,
.top-3 .playtime-name {
    color: #cd7f32;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

/* Footer */
footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #1a1a2e;
}

.footer-content p {
    color: #666666;
    font-size: 14px;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .balance-add {
        flex-direction: column;
        align-items: stretch;
    }
    
    .balance-add input {
        width: 100%;
    }
    
    .purchases-table {
        font-size: 14px;
    }
    
    .purchases-table th,
    .purchases-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .nav-menu li a {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .top-item,
    .playtime-item {
        padding: 10px;
    }
    
    .top-info,
    .playtime-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* Imperial improvements */
.footer-content{display:flex;flex-direction:column;gap:8px;text-align:center}.footer-links{margin-top:10px;display:flex;justify-content:center;gap:15px;flex-wrap:wrap}.footer-links a{color:#ff6b35}.login-container img{max-width:100%}


/* Аккуратные заглушки вместо большого логотипа */
.profile-avatar,
.top-avatar,
.avatar {
    object-fit: cover;
    flex-shrink: 0;
}

.avatar-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.16);
    border: 1px solid rgba(255, 107, 53, 0.45);
    color: #ff6b35;
    font-weight: 700;
    line-height: 1;
}

/* Маленький логотип в шапке */
.logo a.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
}

.site-logo-img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    flex: 0 0 32px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 0 14px rgba(255, 107, 53, 0.18);
}

.site-logo-text {
    white-space: nowrap;
}

@media (max-width: 520px) {
    .logo a.site-logo { gap: 0; }
    .site-logo-text { display: none; }
}

/* Общая навигация админки */
.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 22px;
}
.admin-nav a {
    padding: 10px 16px;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}
.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255,107,53,.2);
    color: #ff6b35;
}


.profile-admin-actions {
    margin-top: 12px;
}

.admin-panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff3d00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 53, 0.35);
}


/* Красивый футер, контакты и юридические страницы */
.site-footer {
    margin-top: 70px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.28));
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 34px 20px;
}
.site-footer .footer-content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-brand strong {
    color: #fff;
    font-size: 18px;
    letter-spacing: .5px;
}
.footer-brand span, .footer-note, .footer-copy {
    color: #9ca3af;
    font-size: 14px;
}
.footer-note { max-width: 760px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}
.footer-links a {
    color: #d7dce8;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover { color: #ff6b35; transform: translateY(-1px); }
.footer-contacts a { color: #ff8a5f; }

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid rgba(255,107,53,.35);
    border-radius: 999px;
    color: #ff8a5f;
    background: rgba(255,107,53,.08);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .3px;
}
.section-subtitle {
    text-align: center;
    color: #9ca3af;
    margin: -8px 0 24px;
}
.contact-section {
    padding: 35px 20px 10px;
}
.contact-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(255,107,53,.18), transparent 38%), rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
    text-align: center;
}
.contact-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
}
.contact-card p {
    max-width: 720px;
    margin: 0 auto;
    color: #c5cad8;
    line-height: 1.7;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.contact-actions a, .legal-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff3d00);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(255,107,53,.2);
}
.contact-actions a:nth-child(2), .legal-actions a:nth-child(2) {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
}
.legal-hero {
    max-width: 980px;
    margin: 0 auto;
    padding: 70px 20px 25px;
    text-align: center;
}
.legal-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.05;
}
.legal-hero p {
    max-width: 780px;
    margin: 0 auto;
    color: #c5cad8;
    font-size: 18px;
    line-height: 1.65;
}
.legal-meta {
    margin-top: 16px;
    color: #8b93a6;
    font-size: 14px;
}
.legal-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 20px 50px;
}
.legal-block {
    margin: 14px 0;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}
.legal-block h2 {
    margin: 0 0 10px;
    color: #ff8a5f;
    font-size: 21px;
}
.legal-block p {
    margin: 0;
    color: #d7dce8;
    line-height: 1.75;
}
.legal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 620px) {
    .contact-card, .legal-block { padding: 20px; }
    .footer-links { gap: 8px 12px; }
}


/* Фикс красивого блока связи: всегда по центру, даже если старый CSS закешировался частично */
#contacts.contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 35px auto 20px;
    padding: 0 20px;
    display: block;
}
#contacts .contact-card {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 34px 28px;
    border-radius: 24px;
    background: radial-gradient(circle at 15% 0%, rgba(255,107,53,.18), transparent 38%), rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
    text-align: center;
}
#contacts .contact-actions a {
    min-width: 150px;
}
@media (max-width: 650px) {
    #contacts .contact-card { padding: 26px 18px; }
    #contacts .contact-actions { flex-direction: column; }
    #contacts .contact-actions a { width: 100%; }
}


/* История привилегий */
.privilege-history-table th,
.privilege-history-table td {
    vertical-align: middle;
}

.privilege-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.privilege-active {
    background: rgba(76, 175, 80, .16);
    color: #69f08a;
    border-color: rgba(105, 240, 138, .35);
}

.privilege-pending,
.privilege-processing {
    background: rgba(255, 193, 7, .16);
    color: #ffd766;
    border-color: rgba(255, 215, 102, .35);
}

.privilege-expired,
.privilege-revoked,
.privilege-failed {
    background: rgba(244, 67, 54, .16);
    color: #ff8a80;
    border-color: rgba(255, 138, 128, .35);
}

.privilege-none {
    color: #aaa;
}

/* ===== Двойные рейтинги: игроки и донатеры ===== */
.rating-page {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    margin-top: 28px;
}

.rating-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.rating-card-head {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}

.rating-card-head h2 {
    margin: 0 0 4px;
    font-size: clamp(20px, 2.3vw, 27px);
}

.rating-card-head p {
    margin: 0;
    color: #9f9f9f;
    font-size: 14px;
}

.rating-icon {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(255, 107, 53, .14);
    font-size: 27px;
}

.rating-card .top-list,
.rating-card .playtime-list {
    width: 100%;
}

.rating-card .top-item,
.rating-card .playtime-item {
    width: 100%;
    box-sizing: border-box;
}

.top-list-five .top-item,
.top-list-five .playtime-item,
.rating-card .playtime-item {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .rating-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .rating-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .rating-card {
        padding: 16px;
        border-radius: 14px;
    }

    .rating-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}


/* Пустые позиции сохраняют ровно пять мест в каждом рейтинге. */
.top-item.is-empty,
.playtime-item.is-empty {
    opacity: 0.52;
    filter: saturate(0.35);
}

.top-item.is-empty .top-name,
.playtime-item.is-empty .playtime-name {
    font-style: italic;
}
