﻿/* RANKING MODULE STYLES - YENİLƏNMİŞ */
.rank-layer { 
    /* Arxa plana şəkil əlavə edilir və 80% qara gradient ilə tündləşdirilir */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('/images/download/bg_download_header.jpg') no-repeat center center; 
    background-size: cover;
    border: 1px solid #1a1a1a; 
    margin-top: 10px; 
    position: relative;
}

.rank-header-tabs { 
    display: flex; 
    background: rgba(5, 5, 5, 0.9); /* Tablar bir az şəffaf qara */
}

.tab-item { 
    flex: 1; 
    padding: 12px; 
    text-align: center; 
    font-size: 11px; 
    font-weight: 800; 
    cursor: pointer; 
    color: #666; 
    border-bottom: 2px solid #111; 
    transition: 0.3s;
    text-transform: uppercase;
}

.tab-item.active { 
    color: #f6b60c; 
    border-bottom: 2px solid #f6b60c; 
    background: rgba(10, 10, 10, 0.5); 
}

.rank-list { 
    display: none; 
    padding: 5px; 
}

.rank-list.active { 
    display: block; 
}

/* Birinci yer (Lider) bloku */
.leader-block { 
    text-align: center; 
    padding: 20px 15px; 
    /* Lider hissəsinə xüsusi qızılı parıltı effekti */
    background: linear-gradient(180deg, rgba(246, 182, 12, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.leader-rank-img { 
    width: 38px; 
    margin-bottom: 8px; 
    filter: drop-shadow(0 0 5px rgba(246, 182, 12, 0.5));
}

.leader-name { 
    color: #fff; 
    font-weight: 800; 
    font-size: 15px; 
    text-shadow: 1px 1px 3px #000;
}

.leader-xp { 
    color: #f6b60c; 
    font-size: 11px; 
    margin-top: 2px; 
    font-weight: bold;
}

/* Siyahı sətirləri */
.rank-row { 
    display: flex; 
    align-items: center; 
    padding: 10px 12px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.03); 
    font-size: 12px; 
    background: rgba(0, 0, 0, 0.2); /* Sətirləri bir az tündləşdiririk */
    transition: background 0.2s;
}

.rank-row:hover {
    background: rgba(246, 182, 12, 0.05);
}

.rank-number { 
    width: 20px; 
    color: #777; 
    font-weight: bold; 
}

.rank-img { 
    width: 20px; 
    margin: 0 10px; 
}

.rank-name-text { 
    flex: 1; 
    color: #eee; /* Yazı rəngini bir az açdıq ki, tünd fonda görünsün */
    font-weight: 500;
    text-shadow: 1px 1px 2px #000;
}

.rank-xp-text { 
    color: #f6b60c; 
    font-weight: bold; 
}

/* Alt hissə (Hamısına bax) */
.rank-footer { 
    padding: 12px; 
    text-align: center; 
    background: rgba(5, 5, 5, 0.9); 
}

.rank-footer a { 
    color: #888; 
    text-decoration: none; 
    font-size: 10px; 
    font-weight: bold; 
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rank-footer a:hover { 
    color: #f6b60c; 
}