/* skin/css/rank.css */

.rank-tabs {
    display: flex;
    margin: 20px 0;
    border: 2px solid #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-hard);
}

.rt-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    cursor: pointer;
    background: #fff;
    font-weight: bold;
    border-right: 2px solid #000;
}
.rt-item:last-child { border-right: none; }

.rt-item.active {
    background: var(--primary-color);
    color: #fff;
}

.rank-list-container {
    background: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    padding: 0 15px;
    box-shadow: var(--shadow-hard);
}

.rank-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #f1f2f6;
}
.rank-item:last-child { border-bottom: none; }

.ri-num {
    width: 30px;
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-right: 15px;
    font-style: italic;
}
.ri-num.top-n { color: var(--primary-color); }

.ri-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    box-shadow: 2px 2px 0 #000;
}
.ri-info{flex: 1;}
.ri-info h3 { font-size: 16px; font-weight: bold; }
.ri-info p { font-size: 12px; color: #666; font-weight: 600; }

.ri-btn {
    padding: 6px 16px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 2px 2px 0 #000;
}