/* NAV STATUS & AVATAR */
.nav-status-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-avatar-mini {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b35bff, #7b2cff);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 0 12px rgba(179, 91, 255, 0.3);
}

.nav-status-admin { color: #b35bff; font-size: 12px; font-weight: 800; letter-spacing: 0.02em; }
.nav-status-active { color: #2ee56b; font-size: 12px; font-weight: 700; }
.nav-status-trial  { color: #f7c948; font-size: 12px; font-weight: 700; }
.nav-status-expired { color: #ff6b6b; font-size: 12px; font-weight: 700; }

/* USER MENU WRAPPER */
.user-menu-wrapper {
  position: relative;
}

.user-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #b35bff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(179, 91, 255, 0.2);
}

/* DROPDOWN PREMIUM */
.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: rgba(10, 8, 22, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 8px;
  z-index: 10000;
  transform-origin: top right;
  will-change: transform, opacity;
  animation: menuAppear 0.18s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes menuAppear {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hidden { display: none !important; }

/* USER INFO SECTION */
.user-menu-info {
  padding: 14px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.user-name {
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.user-email {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  word-break: break-all;
}

/* MENU LINKS */
.user-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.15s ease;
}

.menu-item i {
  width: 16px;
  font-size: 14px;
  text-align: center;
  opacity: 0.8;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.menu-item:hover i {
  color: #b35bff;
  opacity: 1;
}

.menu-item.logout {
  color: #ff6b6b;
}

.menu-item.logout:hover {
  background: rgba(255, 107, 107, 0.08);
  color: #ff8e8e;
}

.menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 8px;
}