:root {
  --gz-primary: #3b82f6; /* bright blue */
  --gz-primary-dark: #2563eb;
  --gz-bg: #090d16; /* deep space black/dark blue */
  --gz-sidebar: #0d1321;
  --gz-sidebar-2: #070a12;
  --gz-text: #f1f5f9; /* slate 100 */
  --gz-muted: #94a3b8; /* slate 400 */
  --gz-border: rgba(255, 255, 255, 0.08);
  --gz-card: #111827; /* dark card background */
  --gz-success: #10b981; /* emerald 500 */
  --gz-warning: #f59e0b; /* amber 500 */
  --gz-danger: #ef4444; /* red 500 */
  --gz-info: #06b6d4; /* cyan 500 */
  --gz-radius: 14px;
  --gz-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--gz-bg);
  color: var(--gz-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
}

a {
  color: var(--gz-primary);
  text-decoration: none;
}
a:hover {
  color: #60a5fa;
}

.admin-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1040;
  width: 280px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--gz-sidebar) 0%, var(--gz-sidebar-2) 100%);
  color: #cbd5e1;
  border-right: 1px solid var(--gz-border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 18px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(59, 130, 246, .3);
}

.brand-title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.brand-subtitle {
  color: #64748b;
  font-size: 12px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 14px;
}

.nav-section-label {
  padding: 16px 10px 8px;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin: 3px 0;
  padding: 10px 12px;
  color: #94a3b8;
  border-radius: 12px;
  font-weight: 600;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.sidebar-link i {
  width: 20px;
  color: #60a5fa;
  font-size: 17px;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(59, 130, 246, .15);
  color: #fff;
}

.sidebar-link:hover {
  transform: translateX(2px);
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--gz-border);
}

.admin-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
}

.avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-weight: 800;
}

.content-wrap {
  min-height: 100vh;
  margin-left: 280px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
  padding: 18px 30px;
  background: rgba(9, 13, 22, 0.85);
  border-bottom: 1px solid var(--gz-border);
  backdrop-filter: blur(16px);
}

.page-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.page-kicker {
  color: var(--gz-muted);
  font-size: 13px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box {
  position: relative;
  width: min(320px, 32vw);
}

.search-box i {
  position: absolute;
  left: 13px;
  top: 50%;
  color: #64748b;
  transform: translateY(-50%);
}

.search-box input {
  height: 42px;
  padding-left: 38px;
  border-radius: 999px;
  background-color: #1e293b;
  border: 1px solid var(--gz-border);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.main-content {
  padding: 26px 30px 44px;
}

.card,
.panel {
  border: 1px solid var(--gz-border);
  border-radius: var(--gz-radius);
  background: var(--gz-card);
  box-shadow: var(--gz-shadow);
}

.panel {
  margin-bottom: 22px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gz-border);
}

.panel-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.panel-subtitle {
  margin-top: 3px;
  color: var(--gz-muted);
  font-size: 13px;
}

.panel-body {
  padding: 20px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--gz-border);
  border-radius: 18px;
  background: var(--gz-card);
  box-shadow: var(--gz-shadow);
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -45px auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.metric-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--gz-primary);
  box-shadow: 0 14px 28px rgba(59, 130, 246, .2);
}

.metric-value {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 850;
  color: #fff;
}

.metric-label {
  color: var(--gz-muted);
  font-weight: 700;
}

.metric-hint {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--gz-border);
  border-radius: var(--gz-radius);
  background: var(--gz-card);
  box-shadow: var(--gz-shadow);
}

.table-responsive {
  max-height: calc(100vh - 240px);
}

.table {
  margin-bottom: 0;
  --bs-table-bg: transparent;
  --bs-table-color: #cbd5e1;
  --bs-table-hover-color: #f1f5f9;
  --bs-table-hover-bg: rgba(59, 130, 246, 0.06);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
  --bs-table-border-color: var(--gz-border);
  color: #cbd5e1;
  vertical-align: middle;
}

.table > :not(caption) > * > * {
  background-color: transparent;
  color: inherit;
  box-shadow: none;
}

.table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 14px 16px;
  background: #0f172a;
  color: #94a3b8;
  border-bottom: 1px solid var(--gz-border);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.table tbody td {
  padding: 14px 16px;
  border-color: var(--gz-border);
}

.table-hover tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.btn {
  border-radius: 10px;
  font-weight: 750;
}

.btn-primary {
  background: var(--gz-primary);
  border-color: var(--gz-primary);
  box-shadow: 0 10px 22px rgba(59, 130, 246, .18);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gz-primary-dark);
  border-color: var(--gz-primary-dark);
  color: #fff;
}

.btn-outline-primary {
  color: var(--gz-primary);
  border-color: rgba(59, 130, 246, 0.35);
}
.btn-outline-primary:hover {
  background-color: var(--gz-primary);
  color: #fff;
}

.btn-light,
.btn-view {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gz-border);
  color: #e2e8f0;
}

.btn-light:hover,
.btn-view:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #fff;
}

.form-control,
.form-select {
  min-height: 42px;
  background-color: #1e293b;
  border-color: var(--gz-border);
  color: #fff;
  border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
  background-color: #1e293b;
  color: #fff;
  border-color: rgba(59, 130, 246, .6);
  box-shadow: 0 0 0 .2rem rgba(59, 130, 246, .15);
}

.form-label {
  color: #cbd5e1;
  font-weight: 750;
}

.form-text {
  color: #64748b;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.badge-info {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
}

.badge-muted {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
}

.empty-state {
  padding: 44px 24px;
  text-align: center;
  color: #64748b;
}

.empty-state i {
  font-size: 34px;
  color: #475569;
}

.alert {
  border-radius: 12px;
  border: 1px solid var(--gz-border);
  margin-bottom: 18px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
  color: #fcd34d;
}

.broadcast-template-group + .broadcast-template-group {
  margin-top: 18px;
}

.broadcast-template-label {
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.broadcast-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.broadcast-template-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gz-border);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.55);
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.broadcast-template-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--gz-border);
}

.broadcast-template-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px 14px;
}

.broadcast-template-premium {
  display: inline-flex;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.28);
  color: #fcd34d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.broadcast-preview-card {
  border: 1px solid var(--gz-border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.55);
  max-width: 520px;
}

.broadcast-preview-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.broadcast-preview-note {
  padding: 10px 14px;
  color: #94a3b8;
  font-size: 12px;
}

.broadcast-template-card:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
}

.broadcast-template-card.active {
  border-color: rgba(250, 204, 21, 0.55);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25), 0 12px 30px rgba(0, 0, 0, 0.25);
}

.broadcast-template-icon {
  display: none;
}

.broadcast-template-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.tabs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tabs-pills a {
  padding: 9px 13px;
  border: 1px solid var(--gz-border);
  border-radius: 999px;
  background: #1e293b;
  color: #94a3b8;
  font-weight: 750;
}

.tabs-pills a.active {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, .35);
  color: #60a5fa;
}

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

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--gz-border);
  border-radius: 14px;
  background: #1e293b;
}

.danger-zone {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.03);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, .12), transparent 32%), #090d16;
}

.login-card {
  width: min(430px, calc(100vw - 30px));
  border: 1px solid var(--gz-border);
  border-radius: 22px;
  background: var(--gz-card);
  box-shadow: var(--gz-shadow);
}

.mobile-sidebar-toggle {
  display: none;
}

@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform .22s ease;
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .content-wrap {
    margin-left: 0;
  }

  .mobile-sidebar-toggle {
    display: inline-flex;
  }

  .search-box {
    display: none;
  }

  .topbar,
  .main-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .toggle-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.novproxy-section-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.novproxy-form-section {
  padding: 18px;
  border: 1px solid var(--gz-border);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.35);
}

.novproxy-code-block {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: #0f172a;
  border: 1px solid var(--gz-border);
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}

.novproxy-endpoint-list {
  display: grid;
  gap: 10px;
}

.novproxy-endpoint-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--gz-border);
  background: rgba(15, 23, 42, 0.25);
}

.novproxy-endpoint-item code {
  color: #93c5fd;
}

.proxy-line-chip {
  display: inline-block;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #dbeafe;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
}

.novproxy-code-panel .novproxy-lang-tabs,
.novproxy-code-panel .novproxy-protocol-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.novproxy-lang-tab,
.novproxy-protocol-tab {
  border: 1px solid var(--gz-border);
  background: rgba(15, 23, 42, 0.35);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.novproxy-lang-tab.active,
.novproxy-protocol-tab.active {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border-color: transparent;
  color: #fff;
}

.novproxy-code-pane {
  display: none;
}

.novproxy-code-pane.active {
  display: block;
}

.novproxy-code-sample {
  display: none;
}

.novproxy-code-sample.active {
  display: block;
}

.novproxy-code-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.novproxy-code-toolbar .btn {
  margin-left: auto;
}

.danger-zone {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(127, 29, 29, 0.12);
}

.danger-zone .panel-title {
  color: #fca5a5;
}

.users-table td {
  vertical-align: middle;
}

.users-table tbody tr {
  background: rgba(15, 23, 42, 0.42);
}

.users-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.62);
}

.users-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.08) !important;
}

.user-cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 280px;
}

.user-meta {
  display: grid;
  gap: 8px;
}

.user-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.user-name {
  font-weight: 800;
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.2;
}

.user-id-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
}

.user-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid transparent;
}

.user-chip i {
  font-size: 13px;
  flex-shrink: 0;
}

.chip-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.chip-value {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}

.chip-telegram {
  background: rgba(34, 158, 217, 0.12);
  border-color: rgba(34, 158, 217, 0.22);
  color: #7dd3fc;
}

.chip-telegram i {
  color: #38bdf8;
}

.chip-handle {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.22);
  color: #93c5fd;
  text-decoration: none;
}

.chip-handle:hover {
  background: rgba(59, 130, 246, 0.18);
  color: #dbeafe;
}

.chip-email {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.22);
  color: #d8b4fe;
}

.chip-email i {
  color: #c084fc;
}

.chip-email.chip-empty {
  background: rgba(100, 116, 139, 0.1);
  border-color: rgba(100, 116, 139, 0.18);
  color: #94a3b8;
}

.money-balance {
  font-weight: 800;
  color: #34d399;
}

.money-spent {
  font-weight: 700;
  color: #fbbf24;
}

.user-avatar.tone-0 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.user-avatar.tone-1 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.user-avatar.tone-2 {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.user-avatar.tone-3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.user-avatar.tone-4 {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

.user-avatar.tone-5 {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.users-table .cell-id {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
  font-weight: 800;
  font-size: 13px;
}

.users-table .cell-sub {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.users-table .cell-tg-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
  font-weight: 700;
  font-size: 13px;
}

.users-table .cell-tg-id i {
  color: #38bdf8;
}

.users-table .cell-tg-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #93c5fd;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.users-table .cell-tg-user:hover {
  color: #dbeafe;
}

.users-table .cell-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  color: #d8b4fe;
  font-weight: 600;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.users-table .cell-mail i {
  color: #c084fc;
  flex-shrink: 0;
}

.users-table .cell-empty {
  color: #64748b;
  font-size: 13px;
}

.users-table th:nth-child(1),
.users-table td:nth-child(1) { min-width: 90px; }

.users-table th:nth-child(2),
.users-table td:nth-child(2) { min-width: 130px; }

.users-table th:nth-child(3),
.users-table td:nth-child(3) { min-width: 150px; }

.users-table th:nth-child(4),
.users-table td:nth-child(4) { min-width: 200px; }

.users-table th:nth-child(5),
.users-table td:nth-child(5),
.users-table th:nth-child(6),
.users-table td:nth-child(6) { min-width: 90px; }

.users-table th:nth-child(7),
.users-table td:nth-child(7) { min-width: 100px; }

.user-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(16, 185, 129, 0.25));
  color: #fff;
  font-weight: 800;
}

.user-avatar-lg {
  width: 56px;
  height: 56px;
  font-size: 22px;
  border-radius: 16px;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gz-border);
}

.detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-item span {
  color: var(--gz-muted);
  font-size: 13px;
}

.detail-item strong {
  text-align: right;
  word-break: break-word;
}
