#view-meu-prax {
  position: fixed; inset: 0; z-index: 2000;
  background: #0d0d1a; display: none;
}
#view-meu-prax.view.active { display: block; }

#view-meu-prax .meu-prax-container { display: flex; width: 100%; height: 100%; position: relative; }

#view-meu-prax .meu-prax-center {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#view-meu-prax #meu-prax-canvas-wrap { width: 100%; height: 100%; position: absolute; inset: 0; }

#view-meu-prax .meu-prax-left {
  position: relative; z-index: 1;
  width: 260px; min-width: 260px;
  background: rgba(18, 18, 31, 0.4);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 20px 16px;
  border-right: none; border-radius: 0 16px 16px 0; overflow-y: auto;
  margin: 16px 0 16px 0;
}
#view-meu-prax .meu-prax-left::-webkit-scrollbar { width: 4px; }
#view-meu-prax .meu-prax-left::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 2px; }

#view-meu-prax .left-logo { display: flex; align-items: center; justify-content: center; height: 60px; flex-shrink: 0; overflow: hidden; }

#view-meu-prax .avatar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
#view-meu-prax .avatar-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; overflow: hidden;
}
#view-meu-prax .level-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #1e1e35; border: 1px solid rgba(139,92,246,0.3);
  border-radius: 10px; padding: 6px 14px; font-size: 15px; font-weight: 600;
}
#view-meu-prax .level-badge .lv-label { color: #9ca3af; font-size: 13px; }
#view-meu-prax .level-badge .lv-num { color: #a855f7; font-weight: 700; font-size: 16px; }

#view-meu-prax .stats-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
#view-meu-prax .stat-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: rgba(139,92,246,0.06);
  border-radius: 10px; font-size: 16px;
}
#view-meu-prax .stat-row .stat-icon { width: 20px; color: #7c3aed; flex-shrink: 0; font-size: 18px; }
#view-meu-prax .stat-row .stat-label { color: #9ca3af; flex: 1; }
#view-meu-prax .stat-row .stat-value { font-weight: 600; color: #e5e5e5; font-size: 16px; }

#view-meu-prax .section-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: rgba(139,92,246,0.06);
  border-radius: 10px; margin-bottom: 10px; cursor: default;
}
#view-meu-prax .section-item .item-icon { width: 20px; color: #7c3aed; flex-shrink: 0; font-size: 18px; }
#view-meu-prax .section-item .item-label { flex: 1; font-size: 15px; color: #e5e5e5; }
#view-meu-prax .section-item .item-count { font-size: 13px; color: #9ca3af; margin-right: 4px; }
#view-meu-prax .section-item .item-chevron { width: 16px; color: #6b7280; }

#view-meu-prax .meu-prax-loading {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; background: #0d0d1a;
  z-index: 10; transition: opacity 0.4s;
}
#view-meu-prax .meu-prax-loading.hidden { opacity: 0; pointer-events: none; }
#view-meu-prax .spinner {
  width: 36px; height: 36px; border: 3px solid rgba(139,92,246,0.2);
  border-top-color: #7c3aed; border-radius: 50%;
  animation: spin 0.8s linear infinite; margin-bottom: 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fire { 0%,100% { transform: scale(1) rotate(-3deg); } 50% { transform: scale(1.15) rotate(3deg); } }
#view-meu-prax .fire-icon { display: inline-block; animation: fire 0.6s ease-in-out infinite; }

#view-meu-prax .meu-prax-right {
  position: relative; z-index: 1;
  width: 300px; min-width: 300px;
  background: rgba(18, 18, 31, 0.4);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 20px 16px;
  border-left: none; border-radius: 16px 0 0 16px; overflow-y: auto;
  margin: 16px 0 16px auto;
}
#view-meu-prax .meu-prax-right::-webkit-scrollbar { width: 4px; }
#view-meu-prax .meu-prax-right::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 2px; }

#view-meu-prax .btn-voltar {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; color: #7c3aed; font-size: 14px;
  font-weight: 600; cursor: pointer; padding: 4px 0; margin-bottom: 16px;
  align-self: flex-start;
}
#view-meu-prax .btn-voltar:hover { color: #a855f7; }

#view-meu-prax .prax-tabs { display: flex; gap: 4px; margin-bottom: 20px; }
#view-meu-prax .prax-tab {
  flex: 1; padding: 8px 4px; background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15); border-radius: 8px;
  color: #9ca3af; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; text-align: center;
}
#view-meu-prax .prax-tab.active {
  background: rgba(139,92,246,0.2); border-color: #7c3aed; color: #e5e5e5;
}
#view-meu-prax .prax-tab:hover:not(.active) { background: rgba(139,92,246,0.12); }

#view-meu-prax .prax-tab-content { display: none; }
#view-meu-prax .prax-tab-content.active { display: block; }

#view-meu-prax .current-outfit {
  background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.15);
  border-radius: 12px; padding: 16px; margin-bottom: 16px;
}
#view-meu-prax .current-outfit .outfit-title { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
#view-meu-prax .current-outfit .outfit-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.12);
  border-radius: 10px; padding: 12px;
}
#view-meu-prax .current-outfit .outfit-icon {
  width: 44px; height: 44px; background: rgba(139,92,246,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; overflow: hidden;
}
#view-meu-prax .current-outfit .outfit-name { font-size: 14px; font-weight: 600; color: #e5e5e5; }
#view-meu-prax .current-outfit .outfit-status { font-size: 11px; color: #22c55e; font-weight: 600; }

#view-meu-prax .coming-soon {
  display: flex; align-items: center; gap: 12px;
  background: rgba(139,92,246,0.04); border: 1px dashed rgba(139,92,246,0.2);
  border-radius: 12px; padding: 16px; margin-bottom: 16px;
}
#view-meu-prax .coming-soon .cs-icon { width: 40px; height: 40px; background: rgba(139,92,246,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#view-meu-prax .coming-soon .cs-text { font-size: 13px; color: #9ca3af; }

#view-meu-prax .prax-achievement-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.1); border-radius: 10px;
  margin-bottom: 8px;
}
#view-meu-prax .prax-achievement-card.earned { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); }
#view-meu-prax .prax-achievement-card .ach-icon { font-size: 20px; width: 32px; text-align: center; flex-shrink: 0; }
#view-meu-prax .prax-achievement-card .ach-info { flex: 1; min-width: 0; }
#view-meu-prax .prax-achievement-card .ach-name { font-size: 13px; font-weight: 600; color: #e5e5e5; }
#view-meu-prax .prax-achievement-card .ach-desc { font-size: 11px; color: #9ca3af; margin-top: 2px; }
#view-meu-prax .prax-achievement-card .ach-how { font-size: 10px; color: #7c3aed; margin-top: 2px; }
