/* Top executors leaderboard */
.top-hero {
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.12), rgba(255, 140, 66, 0.06));
    border: 0.5px solid rgba(255, 179, 71, 0.25);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease;
}

.top-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 179, 71, 0.15);
    color: #ffb347;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.top-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.top-hero p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.top-podium {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 12px;
    align-items: end;
    margin-bottom: 24px;
}

.podium-item {
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.2s;
}

.podium-item.first {
    border-color: rgba(255, 179, 71, 0.4);
    background: rgba(255, 179, 71, 0.06);
    padding-bottom: 28px;
}

.podium-item.second { padding-bottom: 22px; }
.podium-item.third { padding-bottom: 18px; }

.podium-rank {
    font-size: 2rem;
    margin-bottom: 8px;
}

.podium-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4884ff, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: white;
}

.podium-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.podium-stats {
    font-size: 0.75rem;
    opacity: 0.6;
}

.top-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: 0.2s;
}

.top-row:hover {
    border-color: rgba(72, 132, 255, 0.25);
    background: rgba(72, 132, 255, 0.03);
}

.top-rank {
    width: 32px;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.5;
    text-align: center;
}

.top-row-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(72, 132, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.top-row-info {
    flex: 1;
    min-width: 0;
}

.top-row-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.top-row-meta {
    font-size: 0.72rem;
    opacity: 0.5;
    margin-top: 2px;
}

.top-row-score {
    font-weight: 700;
    color: #ffb347;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-row-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.top-empty {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.6;
}

.top-empty i { font-size: 2rem; margin-bottom: 10px; display: block; }

.top-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.top-info-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.top-info-card i {
    color: #4884ff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.top-info-card strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.top-info-card p {
    font-size: 0.78rem;
    opacity: 0.6;
    margin: 0;
    line-height: 1.45;
}

.podium-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.podium-name a {
    color: inherit;
    text-decoration: none;
}

.podium-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 768px) {
    .top-podium { grid-template-columns: 1fr; }
    .podium-item.first { order: -1; }
    .top-info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .top-hero { padding: 24px 16px; }
    .top-hero h1 { font-size: 1.35rem; }
    .top-row { padding: 12px 14px; gap: 10px; }
    .top-row-score { font-size: 0.85rem; }
}

