/* 2-Column Profile Stats Layout */
.profile-stats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

/* Left Column: Top Champions */
.top-champions-section {
    background: rgba(30, 35, 50, 0.6);
    border-radius: 12px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 var(--spacing-lg) 0;
    text-transform: lowercase;
}

.top-champions-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.champion-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: rgba(20, 25, 40, 0.6);
    border-radius: 8px;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.champion-card:hover {
    background: rgba(25, 30, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.champion-portrait {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.champion-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.champion-winrate {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.champion-games {
    font-size: 13px;
    color: var(--text-muted);
}

.champion-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

/* Right Column: Stats */
.profile-stats-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Rank Badge Card */
.rank-badge-card {
    background: rgba(30, 35, 50, 0.6);
    border-radius: 12px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.rank-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rank-mode {
    font-size: 12px;
    color: var(--text-muted);
}

.rank-tier {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.rank-lp {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.rank-recent {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.lp-change {
    color: #10b981;
    font-weight: 600;
}

/* Modern Stat Cards (Right Column) */
.stat-card-modern {
    background: rgba(30, 35, 50, 0.6);
    border-radius: 12px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.stat-label-modern {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.win-loss-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-stats-layout {
        grid-template-columns: 1fr;
    }
}