@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

/* ===========================
   TYPOGRAPHY OVERRIDE
   =========================== */
:root {
  --vmf-purple:   #7C3AED;
  --vmf-cyan:     #06B6D4;
  --vmf-pink:     #EC4899;
  --vmf-dark:     #0F172A;
  --vmf-gold:     #FBBF24;
  --vmf-green:    #10B981;
  --vmf-blue:     #3B82F6;
  --vmf-card-bg:  rgba(255, 255, 255, 0.04);
  --vmf-border:   rgba(255, 255, 255, 0.08);
}

body {
  font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Inter', sans-serif !important;
}

/* Numbers use monospace */
.stat-number,
.dashboard-number {
  font-family: 'JetBrains Mono', monospace !important;
}

/* ===========================
   DARK BACKGROUND OVERRIDE
   =========================== */
[data-bs-theme="dark"] body,
[data-bs-theme="dark"] .content-page,
[data-bs-theme="dark"] .wrapper {
  background-color: #0F172A !important;
}

[data-bs-theme="dark"] {
  --ct-body-bg: #0F172A !important;
}

/* ===========================
   DASHBOARD STAT BOXES
   =========================== */
.stat-box {
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: slideInUp 0.6s ease-out both;
  cursor: default;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35) !important;
}

/* Shine sweep */
.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shine 3.5s infinite;
  pointer-events: none;
}

/* Gradient variants */
.gradient-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.35), 0 0 60px rgba(124, 58, 237, 0.15);
}
.gradient-purple:hover {
  box-shadow: 0 30px 70px rgba(124, 58, 237, 0.5), 0 0 80px rgba(124, 58, 237, 0.25) !important;
}

.gradient-cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.35), 0 0 60px rgba(6, 182, 212, 0.15);
}
.gradient-cyan:hover {
  box-shadow: 0 30px 70px rgba(6, 182, 212, 0.5), 0 0 80px rgba(6, 182, 212, 0.25) !important;
}

.gradient-pink {
  background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.35), 0 0 60px rgba(236, 72, 153, 0.15);
}
.gradient-pink:hover {
  box-shadow: 0 30px 70px rgba(236, 72, 153, 0.5), 0 0 80px rgba(236, 72, 153, 0.25) !important;
}

.gradient-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.35), 0 0 60px rgba(251, 191, 36, 0.15);
}
.gradient-gold:hover {
  box-shadow: 0 30px 70px rgba(251, 191, 36, 0.5), 0 0 80px rgba(251, 191, 36, 0.25) !important;
}

.gradient-green {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.35), 0 0 60px rgba(16, 185, 129, 0.15);
}

/* Stat box inner layout */
.stat-box-icon {
  font-size: 2.4rem;
  line-height: 1;
  animation: pulse-icon 2.4s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 12px;
}

.stat-box-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.stat-box-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
  animation: countUp 1s ease-out;
}

.stat-box-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stat-badge-item {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.stat-box-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.stat-box-link:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
}

.stat-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.stat-box-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  flex: 1;
}

/* Animation stagger for multiple boxes */
.stat-box:nth-child(1) { animation-delay: 0.05s; }
.stat-box:nth-child(2) { animation-delay: 0.15s; }
.stat-box:nth-child(3) { animation-delay: 0.25s; }
.stat-box:nth-child(4) { animation-delay: 0.35s; }

/* ===========================
   ANALYTICS CARD OVERRIDE
   =========================== */
[data-bs-theme="dark"] .card {
  background-color: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

[data-bs-theme="dark"] .card-header {
  background-color: transparent !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}

/* ===========================
   SIDEBAR & TOPBAR DARK TONES
   =========================== */
[data-bs-theme="dark"][data-menu-color="dark"] .leftside-menu {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%) !important;
  border-right: 1px solid rgba(255,255,255,0.06) !important;
}

[data-bs-theme="dark"] .navbar-custom {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(12px) !important;
}

/* ===========================
   GLASSMORPHISM UTILITY
   =========================== */
.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

/* ===========================
   USERNAME / HASHTAG
   =========================== */
.username {
  font-weight: 700;
  color: var(--vmf-cyan);
}
.username:hover { text-decoration: underline; }

.hashtag {
  font-weight: 700;
  color: var(--vmf-purple) !important;
}
.hashtag:hover { text-decoration: underline; }

/* ===========================
   UTILITY SIZES
   =========================== */
.custom-width-18px  { width: 18px !important; }
.custom-height-18px { height: 18px !important; }
.w-h-30 { width: 35px; height: 35px; }
.country-code-field { width: 120px !important; text-align: center; }

/* ===========================
   USERS PAGE HEADER
   =========================== */
.users-page-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.users-page-sub {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* ===========================
   USERS TAB LINKS
   =========================== */
.users-tabs {
  gap: 6px;
}
.users-tab-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.users-tab-link:hover {
  color: #fff;
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.3);
}
.users-tab-link.active, .users-tab-link.show {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}

/* ===========================
   USERS TABLE PREMIUM
   =========================== */
.users-table {
  border-collapse: separate !important;
  border-spacing: 0 6px !important;
}

.users-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B !important;
  border: none !important;
  background: transparent !important;
  padding: 6px 14px;
}

.users-table tbody tr {
  background: rgba(124,58,237,0.05) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  animation: slideInUp 0.4s ease both;
}

.users-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(6,182,212,0.08)) !important;
  border-color: rgba(124,58,237,0.35) !important;
  box-shadow: 0 8px 30px rgba(124,58,237,0.2), 0 0 0 1px rgba(124,58,237,0.2) !important;
  transform: translateY(-2px);
}

.users-table tbody tr td {
  border: none !important;
  padding: 12px 14px !important;
  vertical-align: middle !important;
}

.users-table tbody tr td:first-child { border-radius: 14px 0 0 14px !important; }
.users-table tbody tr td:last-child  { border-radius: 0 14px 14px 0 !important; }

/* Stagger animation */
.users-table tbody tr:nth-child(1)  { animation-delay: 0.03s; }
.users-table tbody tr:nth-child(2)  { animation-delay: 0.06s; }
.users-table tbody tr:nth-child(3)  { animation-delay: 0.09s; }
.users-table tbody tr:nth-child(4)  { animation-delay: 0.12s; }
.users-table tbody tr:nth-child(5)  { animation-delay: 0.15s; }
.users-table tbody tr:nth-child(6)  { animation-delay: 0.18s; }
.users-table tbody tr:nth-child(7)  { animation-delay: 0.21s; }
.users-table tbody tr:nth-child(8)  { animation-delay: 0.24s; }
.users-table tbody tr:nth-child(9)  { animation-delay: 0.27s; }
.users-table tbody tr:nth-child(10) { animation-delay: 0.30s; }

/* ===========================
   USER DETAIL CARD (inside cell)
   =========================== */
.user-dt-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 0;
  min-width: 280px;
}

.ud-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.ud-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(124,58,237,0.5);
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}

.users-table tbody tr:hover .ud-avatar {
  border-color: rgba(6,182,212,0.7);
  transform: scale(1.06);
}

.ud-verify-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0F172A;
}

.ud-info {
  flex: 1;
  min-width: 0;
}

.ud-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ud-name:hover { color: var(--vmf-cyan) !important; }

.ud-handle {
  font-size: 0.78rem;
  color: var(--vmf-cyan);
  margin-bottom: 2px;
}

.ud-email {
  font-size: 0.72rem;
  color: #64748B;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ud-stats {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: #94A3B8;
  margin-bottom: 5px;
  font-family: 'JetBrains Mono', monospace;
}

.ud-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.ud-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid transparent;
}
.ud-badge-verify { background: rgba(16,185,129,0.15); color: #10B981; border-color: rgba(16,185,129,0.3); }
.ud-badge-mod    { background: rgba(251,191,36,0.15);  color: #FBBF24; border-color: rgba(251,191,36,0.3); }
.ud-badge-freeze { background: rgba(59,130,246,0.15);  color: #3B82F6; border-color: rgba(59,130,246,0.3); }
.ud-badge-dummy  { background: rgba(124,58,237,0.15);  color: #A78BFA; border-color: rgba(124,58,237,0.3); }
.ud-badge-real   { background: rgba(6,182,212,0.12);   color: #06B6D4; border-color: rgba(6,182,212,0.25); }

.ud-meta {
  font-size: 0.68rem;
  color: #475569;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===========================
   USER ACTION BUTTONS
   =========================== */
.ud-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
}

.btn-ud-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-ud-action:hover { transform: translateY(-3px) scale(1.08); }

.btn-ud-view   { background: linear-gradient(135deg, #7C3AED, #5B21B6); color: #fff !important; box-shadow: 0 4px 12px rgba(124,58,237,0.4); }
.btn-ud-edit   { background: linear-gradient(135deg, #06B6D4, #0891B2); color: #fff !important; box-shadow: 0 4px 12px rgba(6,182,212,0.4); }
.btn-ud-delete { background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff !important; box-shadow: 0 4px 12px rgba(239,68,68,0.4); }

.btn-ud-view:hover   { box-shadow: 0 8px 20px rgba(124,58,237,0.6); }
.btn-ud-edit:hover   { box-shadow: 0 8px 20px rgba(6,182,212,0.6); }
.btn-ud-delete:hover { box-shadow: 0 8px 20px rgba(239,68,68,0.6); }

/* ===========================
   IDENTITY BLOCK (dummy users)
   =========================== */
.ud-identity-block { line-height: 1.4; }
.ud-identity-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: #A78BFA;
}
.ud-password-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #64748B;
}

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
  0%   { left: -120%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   USERS GRID VIEW
   =================================================== */

/* ---- view toggle ---- */
.ug-view-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 4px;
}
.ug-view-btn {
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #94A3B8;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.ug-view-btn.active {
  background: #7C3AED;
  color: #fff;
}

/* ---- filters bar ---- */
.ug-filters-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.ug-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.ug-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748B;
  font-size: 1rem;
}
.ug-search-input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ug-search-input:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}
.ug-search-input::placeholder { color: #64748B; }
.ug-select {
  padding: 9px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 0.82rem;
  cursor: pointer;
}
.ug-select:focus { outline: none; border-color: #7C3AED; }

/* ---- grid ---- */
.ug-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  padding-bottom: 8px;
}

/* ---- user card ---- */
.ug-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(6,182,212,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  animation: slideInUp 0.45s ease-out both;
}
.ug-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(124,58,237,0.4);
}

/* avatar */
.ug-card-avatar-wrap {
  position: relative;
  margin-bottom: 14px;
}
.ug-card-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.ug-card:hover .ug-card-avatar { transform: scale(1.07); }
.ug-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #1e293b;
}
.ug-status-dot.active  { background: #10B981; }
.ug-status-dot.frozen  { background: #3B82F6; }

/* body text */
.ug-card-body { width: 100%; }
.ug-card-name  { font-size: 1rem; font-weight: 700; color: #F1F5F9; margin-bottom: 2px; }
.ug-card-handle{ font-size: 0.8rem; color: #94A3B8; margin-bottom: 2px; }
.ug-card-email { font-size: 0.75rem; color: #64748B; margin-bottom: 8px;
                  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.ug-country    { font-size: 0.73rem; color: #64748B; display: block; margin-top: 4px; }
.ug-card-meta  { font-size: 0.68rem; color: #475569; margin-top: 6px; }

/* badges row */
.ug-card-badges { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-bottom: 10px; }
.ug-badge {
  font-size: 0.67rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
  border: 1px solid transparent;
}
.ug-b-verify { background: rgba(16,185,129,0.15); color:#10B981; border-color: rgba(16,185,129,0.3); }
.ug-b-mod    { background: rgba(251,191,36,0.15);  color:#FBBF24; border-color: rgba(251,191,36,0.3); }
.ug-b-freeze { background: rgba(59,130,246,0.15);  color:#3B82F6; border-color: rgba(59,130,246,0.3); }
.ug-b-dummy  { background: rgba(124,58,237,0.15);  color:#A78BFA; border-color: rgba(124,58,237,0.3); }

/* stats row */
.ug-card-stats {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 4px;
  margin-bottom: 10px;
}
.ug-stat { display: flex; flex-direction: column; align-items: center; }
.ug-stat-val { font-size: 1rem; font-weight: 700; color: #06B6D4; }
.ug-stat-lbl { font-size: 0.67rem; color: #94A3B8; }

/* action buttons */
.ug-card-actions {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.btn-ud-action-msg     { background: linear-gradient(135deg, #EC4899, #BE185D); color: #fff; box-shadow: 0 4px 12px rgba(236,72,153,0.4); }
.btn-ud-action-profile { background: linear-gradient(135deg, #10B981, #059669); color: #fff; box-shadow: 0 4px 12px rgba(16,185,129,0.4); }
.btn-ud-action-msg:hover     { box-shadow: 0 8px 20px rgba(236,72,153,0.6); transform: translateY(-3px) scale(1.08); }
.btn-ud-action-profile:hover { box-shadow: 0 8px 20px rgba(16,185,129,0.6);  transform: translateY(-3px) scale(1.08); }

/* ---- loading / empty ---- */
.ug-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px;
  color: #94A3B8;
  font-size: 0.9rem;
}
.ug-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(124,58,237,0.2);
  border-top-color: #7C3AED;
  border-radius: 50%;
  animation: ugSpin 0.7s linear infinite;
}
@keyframes ugSpin { to { transform: rotate(360deg); } }
.ug-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #64748B;
  font-size: 0.9rem;
}

/* ---- pagination ---- */
.ug-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 0 4px;
}
.ug-page-btn {
  padding: 8px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.ug-page-btn:hover:not(:disabled) { background: #7C3AED; border-color: #7C3AED; }
.ug-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.ug-page-info { color: #94A3B8; font-size: 0.8rem; }

/* ---- modals ---- */
.ug-modal-content {
  background: linear-gradient(135deg, rgba(30,41,59,0.97) 0%, rgba(15,23,42,0.97) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: #E2E8F0;
}
.ug-form-ctrl {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #E2E8F0 !important;
  border-radius: 10px !important;
}
.ug-form-ctrl:focus { border-color: #7C3AED !important; box-shadow: 0 0 0 3px rgba(124,58,237,0.25) !important; }
.ug-form-ctrl::placeholder { color: #64748B !important; }

/* quick profile modal */
.ug-profile-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(124,58,237,0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.ug-profile-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.ug-profile-info { flex: 1; }
.ug-profile-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.ug-ps-box {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.ug-ps-val { font-size: 1.2rem; font-weight: 700; color: #06B6D4; }
.ug-ps-lbl { font-size: 0.7rem; color: #94A3B8; }
.ug-profile-bio  { font-size: 0.83rem; color: #94A3B8; padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px; margin-bottom: 12px; }
.ug-profile-meta { display: flex; gap: 16px; font-size: 0.78rem; color: #64748B; }

/* ---- responsive ---- */
@media (max-width: 576px) {
  .ug-grid { grid-template-columns: 1fr; }
  .ug-filters-bar { flex-direction: column; }
  .ug-search-wrap { min-width: 100%; }
  .ug-profile-head { flex-direction: column; align-items: center; text-align: center; }
  .ug-profile-meta { flex-direction: column; gap: 4px; }
}
