.profile-container{max-width:800px;margin:0 auto}
.profile-tabs{display:flex;gap:4px;margin-bottom:20px;flex-wrap:wrap}
.profile-tab{padding:10px 20px;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-tertiary);cursor:pointer;font-size:13px;color:var(--text-secondary);transition:var(--transition);font-family:inherit}
.profile-tab:hover{background:var(--bg-hover);color:var(--text-primary)}
.profile-tab.active{background:var(--accent-gold);color:#000;border-color:var(--accent-gold)}
.profile-panel{display:none}
.profile-panel.active{display:block;animation:fadeIn 0.3s ease}
.profile-stats-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:12px;padding:12px 0}
.profile-stat-box{text-align:center;padding:14px;background:var(--bg-tertiary);border-radius:var(--radius);border:1px solid var(--border)}
.profile-stat-number{font-size:22px;font-weight:800;color:var(--accent-gold)}
.profile-stat-label{font-size:11px;color:var(--text-muted);text-transform:uppercase}