:root {
  color-scheme: dark;
  --bg: #0b0614;
  --bg-2: #150a24;
  --card: rgba(30, 18, 58, 0.7);
  --card-border: rgba(130, 86, 255, 0.35);
  --text: #f5f1ff;
  --muted: rgba(214, 202, 255, 0.65);
  --accent: #7a3cff;
  --accent-2: #a067ff;
  --glow: rgba(144, 88, 255, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1c0f37 0%, var(--bg) 45%),
    radial-gradient(circle at 20% 90%, #2b164f 0%, transparent 50%);
  color: var(--text);
  min-height: 100vh;
  padding: 24px 16px 110px;
  overflow-x: hidden;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(122, 60, 255, 0.6), transparent 70%);
  top: -60px;
  right: -40px;
}

.orb-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(164, 96, 255, 0.5), transparent 70%);
  bottom: 10%;
  left: -40px;
  animation-delay: 2s;
}

.orb-3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(116, 40, 220, 0.6), transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: 4s;
}

.shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: 520px;
  margin: 0 auto;
}

.page {
  display: none;
}

.page.active {
  display: grid;
  gap: 22px;
}

.page-admin {
  gap: 16px;
}

.admin-card {
  display: grid;
  gap: 12px;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-section {
  display: none;
  gap: 10px;
}

.admin-section.active {
  display: grid;
}

.admin-tabs .pill {
  font-size: 11px;
}

.admin-row {
  display: grid;
  gap: 4px;
}

.admin-row strong {
  font-size: 13px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(10, 4, 26, 0.45);
  animation: fadeUp 0.8s ease forwards;
}

.identity-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
}

.avatar-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.identity-side {
  display: grid;
  justify-items: end;
  gap: 8px;
  align-self: start;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #9c62ff, #5a2fd2);
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 0 18px rgba(122, 60, 255, 0.7);
}

.avatar.avatar-photo {
  background-size: cover;
  background-position: center;
}

.identity-info h1 {
  font-size: 22px;
  margin-bottom: 4px;
}

.handle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.role-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.role-badge {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b21ff, #a67cff);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(90, 33, 255, 0.35);
}

.role-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  mix-blend-mode: screen;
  pointer-events: none;
}

.ghost-btn {
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 7, 25, 0.55);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.report-btn {
  align-self: start;
  padding: 6px 10px;
  font-size: 11px;
}

.settings-btn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -4px;
}

.coin-wallet {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.coin-balance {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.coin-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.coin-actions {
  display: grid;
  gap: 10px;
}

.section-title {
  font-size: 15px;
  margin-bottom: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.link-btn {
  background: transparent;
  border: none;
  color: #cbb6ff;
  font-size: 12px;
  cursor: pointer;
}

.listing-tabs {
  margin-bottom: 8px;
}

.my-listings-empty {
  display: none;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.my-listings-card .listing-meta {
  margin-top: 2px;
}
.my-listings-card .listing-item {
  padding: 10px;
  border-radius: 14px;
}

.listing-actions {
  display: inline-flex;
  gap: 6px;
}

.icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(122, 60, 255, 0.35);
  background: rgba(122, 60, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.icon-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.icon-btn.glow {
  box-shadow: 0 0 12px rgba(255, 145, 0, 0.55);
  border-color: rgba(255, 145, 0, 0.6);
}

.promo-timer {
  font-size: 10px;
  color: rgba(255, 205, 120, 0.95);
  margin-left: 4px;
}

.stat-item {
  background: rgba(122, 60, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(122, 60, 255, 0.18);
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.filter-card {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.market-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.market-search-row .filter-input {
  flex: 1;
  padding: 10px 12px;
  font-size: 12px;
}

.filters-bar {
  width: 100%;
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(12, 7, 25, 0.5);
  border: 1px solid rgba(122, 60, 255, 0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.filters-bar:hover {
  border-color: rgba(122, 60, 255, 0.45);
  background: rgba(12, 7, 25, 0.6);
}

.filters-bar.highlight {
  animation: filterPulse 2s ease-out 1;
}

.filters-icon {
  font-size: 13px;
}

.filters-text {
  font-size: 11px;
  color: #e7dcff;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-label {
  font-size: 12px;
  color: var(--muted);
}

.filters-header {
  align-items: center;
}

.filter-server-grid {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.filter-server-grid .server-btn {
  min-height: 36px;
}

.filter-group + .filter-group {
  margin-top: 6px;
}

.filters-actions {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.filters-actions .filters-apply {
  margin-top: 6px;
}

@keyframes filterPulse {
  0% {
    box-shadow: 0 0 0 rgba(122, 60, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(122, 60, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 rgba(122, 60, 255, 0);
  }
}

.filter-sub {
  font-size: 11px;
  color: var(--muted);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-group.locked .pill {
  opacity: 0.6;
  cursor: not-allowed;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(122, 60, 255, 0.35);
  background: rgba(122, 60, 255, 0.12);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}


.pill.active {
  background: linear-gradient(135deg, #7a3cff, #a86bff);
  border-color: transparent;
}

.filter-input,
.filter-select,
.filter-btn,
.create-form textarea {
  width: 100%;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(12, 7, 25, 0.6);
  border: 1px solid rgba(122, 60, 255, 0.25);
  color: #fff;
  font-size: 12px;
}

.filters-apply {
  width: 100%;
}

.filter-btn {
  text-align: left;
  cursor: pointer;
}

.listings-card .listing-list {
  display: grid;
  gap: 10px;
}


.listing-item {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(122, 60, 255, 0.18);
  background: rgba(122, 60, 255, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-item.listing-top {
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.16), rgba(122, 60, 255, 0.26));
  border-color: rgba(255, 153, 51, 0.5);
  box-shadow: 0 12px 26px rgba(255, 140, 40, 0.18);
}

.listing-item.placeholder {
  opacity: 0.7;
  cursor: default;
}

.listing-main {
  display: grid;
  gap: 4px;
}

.listing-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(122, 60, 255, 0.16);
  border: 1px solid rgba(122, 60, 255, 0.35);
  flex-shrink: 0;
  overflow: visible;
}

.listing-icon svg {
  width: 24px;
  height: 24px;
}

.listing-detail {
  position: relative;
  animation: detailIn 240ms ease-out;
}

.listing-title {
  font-size: 16px;
  font-weight: 600;
}

.listing-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.status-active {
  color: #6ef5a3;
  border-color: rgba(110, 245, 163, 0.4);
}

.status-hidden {
  color: #f5d46e;
  border-color: rgba(245, 212, 110, 0.4);
}

.status-expired {
  color: #cfcfe8;
  border-color: rgba(207, 207, 232, 0.4);
}

.status-sold {
  color: #6ed5ff;
  border-color: rgba(110, 213, 255, 0.4);
}

.listing-price {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
}

.listing-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.listing-gallery {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(122, 60, 255, 0.25);
  background: rgba(12, 7, 25, 0.6);
}

.gallery-track {
  display: flex;
  transition: transform 280ms ease-in-out;
}

.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: rgba(12, 7, 25, 0.6);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.gallery-dot.active {
  background: #fff;
}

.empty-state {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

#marketMore {
  margin-top: 12px;
}

.seller-card .seller-row {
  display: grid;
  gap: 10px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(122, 60, 255, 0.28);
  background: rgba(122, 60, 255, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.seller-card .seller-row:active {
  background: rgba(122, 60, 255, 0.18);
  border-color: rgba(122, 60, 255, 0.45);
}

.seller-name {
  font-size: 14px;
  font-weight: 600;
  cursor: default;
}

.listing-header {
  margin-bottom: 10px;
}

.listing-header {
  position: relative;
  z-index: 3;
}

#listingBack {
  position: relative;
  z-index: 4;
  pointer-events: auto;
  touch-action: manipulation;
}

#sellerMessage {
  box-shadow: none;
  white-space: nowrap;
}

.seller-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.seller-card .report-btn {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.row-inline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.report-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 10px;
}

.report-reasons .pill {
  justify-content: center;
  text-align: center;
}

.report-input {
  min-height: 80px;
  resize: vertical;
}

.public-card .public-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.public-info {
  display: grid;
  gap: 6px;
}

.public-name {
  font-size: 18px;
  font-weight: 600;
}

.public-meta {
  font-size: 12px;
  color: var(--muted);
}

.create-form {
  display: grid;
  gap: 12px;
}

.photo-block {
  display: grid;
  gap: 10px;
}

.photo-add {
  border: 1px dashed rgba(122, 60, 255, 0.5);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(12, 7, 25, 0.6);
  color: #e7ddff;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}

.photo-input {
  display: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.photo-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(122, 60, 255, 0.25);
  animation: photoIn 180ms ease-out;
}

.photo-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 7, 25, 0.8);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}

.photo-thumb.removing {
  animation: photoOut 160ms ease-out forwards;
}

.photo-hint {
  font-size: 12px;
  color: var(--muted);
}

.action-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(20, 12, 40, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(122, 60, 255, 0.4);
  box-shadow: 0 20px 40px rgba(10, 4, 26, 0.6);
  z-index: 2;
}

.action-bar.has-admin {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.action-bar.has-admin .action-btn {
  font-size: 10px;
  padding: 8px 6px;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.action-bar.has-admin .action-btn[data-nav="admin"] {
  font-size: 9px;
  padding: 7px 4px;
  min-width: 54px;
}

.page-nickname .nickname-card {
  display: grid;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.fab {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #9b6bff, #6c4dff);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(89, 52, 255, 0.35);
  cursor: pointer;
  z-index: 3;
  transition: opacity 180ms ease, transform 180ms ease;
}

.fab:active {
  transform: scale(0.98);
}

.fab.is-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
}


.action-btn {
  border: none;
  border-radius: 14px;
  padding: 10px 8px;
  background: rgba(122, 60, 255, 0.14);
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn.active {
  background: linear-gradient(135deg, #7a3cff, #a86bff);
  box-shadow: 0 10px 18px rgba(90, 33, 255, 0.35);
}

.action-btn:disabled,
.action-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.action-btn.primary {
  background: linear-gradient(135deg, #7a3cff, #a86bff);
}

.action-btn.accent {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.action-btn.accent.active {
  background: linear-gradient(135deg, #7a3cff, #a86bff);
  border: none;
  box-shadow: 0 10px 18px rgba(90, 33, 255, 0.35);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 4, 12, 0.7);
  z-index: 3;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-card {
  width: min(420px, 100%);
  background: rgba(18, 8, 35, 0.95);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(122, 60, 255, 0.35);
  box-shadow: 0 20px 40px rgba(10, 4, 26, 0.6);
}

.modal-text {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 16px;
}

.modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#settingsModal .modal-actions {
  display: flex;
  justify-content: center;
}

.promo-title {
  font-size: 13px;
  color: #d8ccff;
  margin-bottom: 8px;
}

.promo-options {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.promo-option {
  border: 1px solid rgba(124, 92, 255, 0.4);
  background: rgba(124, 92, 255, 0.16);
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
}

.promo-option.active {
  background: linear-gradient(135deg, #7a3cff, #a86bff);
  border: none;
}

.promo-option.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.promo-hint {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 153, 51, 0.16);
  border: 1px solid rgba(255, 153, 51, 0.35);
  color: #ffd7a3;
  font-size: 11px;
  font-weight: 600;
}

.settings-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.settings-item {
  border: 1px solid rgba(124, 92, 255, 0.35);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(80, 52, 150, 0.22));
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.settings-item:hover {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.28), rgba(80, 52, 150, 0.3));
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(22, 10, 48, 0.35);
}

#settingsModal .modal-card {
  padding: 24px;
  border-radius: 24px;
}

#settingsModal .section-title {
  font-size: 16px;
  letter-spacing: 0.2px;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.server-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#serverModal .modal-card {
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}

#serverModal .server-grid {
  overflow-y: auto;
  padding-right: 4px;
  max-height: calc(100vh - 140px);
  -webkit-overflow-scrolling: touch;
}

.server-btn {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(122, 60, 255, 0.35);
  background: rgba(122, 60, 255, 0.12);
  color: #fff;
  font-size: 11px;
  cursor: pointer;
}

.server-btn.active {
  background: linear-gradient(135deg, #7a3cff, #a86bff);
  border-color: transparent;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes photoIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes photoOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

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


@media (max-width: 480px) {
  .identity-card {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .identity-info h1 {
    font-size: 18px;
  }

  .handle {
    font-size: 12px;
  }

  .role-badge {
    padding: 6px 10px;
    font-size: 10px;
  }

  .report-btn {
    justify-self: end;
  }

  .identity-side {
    justify-items: end;
    gap: 8px;
  }

  .coin-wallet {
    gap: 10px;
  }

  .action-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 6px;
    width: calc(100% - 24px);
  }

  .action-bar.has-admin {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .server-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
