/* ═══════════════════════════════════════════
   ZONA GEMELOS 🎭 — Profile
   ═══════════════════════════════════════════ */
#profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 16px;
  padding: 32px 24px;
  gap: 18px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.04);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.2),
    inset 0 0 0 0.5px rgba(255,255,255,0.02);
}
#profile-content h2 {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 60%, rgba(180,130,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#profile-content p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.6;
}
#profile-nick {
  color: var(--accent-light);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
#profile-avatar-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(138,94,255,0.2);
  box-shadow: 0 4px 20px rgba(138,94,255,0.1);
}
#profile-avatar {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(138,94,255,0.2), rgba(107,63,204,0.1));
}
#profile-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
#logout-btn {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.06);
  color: var(--text2);
  padding: 10px 28px;
  border-radius: 14px;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
#logout-btn:hover { border-color: rgba(255,255,255,0.15); color: #fff; }
#logout-btn:active { transform: scale(0.96); }
