/* ================= CHAT SUPPORT ================= */

html, body {
  height: 100%;
  overflow: hidden;
}
.app { height: 100vh; overflow: hidden; }
.main { height: 100vh; overflow: hidden; display: flex; flex-direction: column; }

.content {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--bg);
}

/* Общий контейнер для окна */
.sp-view {
  width: 100%;
  max-width: 520px;
  height: calc(100vh - 110px);
  max-height: 780px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  animation: spSlide 0.3s ease;
}

@keyframes spSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- HEADER ---------- */
.sp-header {
  background: linear-gradient(135deg, #ff8a2b 0%, #ff3d8a 35%, #a44bff 65%, #2ea8ff 100%);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Лёгкое свечение под шапкой */
.sp-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}

.sp-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.sp-agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sp-agent-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}
.sp-agent-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
}
.sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.9);
  animation: spPulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes spPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.sp-close {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: 0.15s;
  flex-shrink: 0;
}
.sp-close:hover {
  background: rgba(255,255,255,0.25);
}

/* ---------- BODY (MENU VIEW) ---------- */
.sp-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f5f7fb;
  scrollbar-width: thin;
}
.sp-body::-webkit-scrollbar { width: 6px; }
.sp-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

/* Hint */
.sp-hint {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
}

.sp-hint-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sp-hint-box {
  width: 42px;
  height: 42px;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
}

.sp-hint-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* Presets */
.sp-presets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-preset {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}

.sp-preset:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59,130,246,0.15);
}

.sp-preset:active {
  transform: translateY(0);
}
.sp-preset-icon {
  font-size: 15px;
}

/* ---------- CHAT VIEW ---------- */
.sp-view-chat {
  max-width: 520px;
}

.sp-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 16px;
  background: #f5f7fb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.sp-messages::-webkit-scrollbar { width: 6px; }
.sp-messages::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

/* Системное сообщение (joined chat) */
.sp-system {
  text-align: center;
  font-size: 11.5px;
  color: #6b7280;
  background: #e5e9f0;
  padding: 8px 14px;
  border-radius: 8px;
  align-self: center;
  max-width: 90%;
  line-height: 1.4;
}

/* Сообщение */
.sp-msg {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  word-wrap: break-word;
  animation: msgAppear 0.25s ease;
}

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Сообщение от агента (слева) */
.sp-msg.agent {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1a1a1a;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Сообщение от пользователя (справа) */
.sp-msg.user {
  background: linear-gradient(135deg, rgba(164,75,255,0.12), rgba(46,168,255,0.12));
  color: #1a1a1a;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(164,75,255,0.2);
}

.sp-msg.user .sp-msg-meta {
  color: #7c5cff;
  opacity: 0.85;
}

/* Имя агента */
.sp-msg-meta {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.sp-msg.agent .sp-msg-meta { color: #94a3b8; }
.sp-msg.user .sp-msg-meta { color: #1e40af; opacity: 0.7; }

/* Кнопка "typing..." */
.sp-typing {
  align-self: flex-start;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.sp-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: typing 1.2s infinite;
}
.sp-typing span:nth-child(2) { animation-delay: 0.15s; }
.sp-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* ---------- INPUT ---------- */
.sp-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.sp-input-wrap input {
  flex: 1;
  background: #f5f7fb;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: #1a1a1a;
  outline: none;
  font-family: inherit;
  transition: 0.15s;
}
.sp-input-wrap input:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.sp-input-wrap input::placeholder {
  color: #94a3b8;
}

.sp-send {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff8a2b, #ff3d8a 35%, #a44bff 65%, #2ea8ff);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.15s;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(164, 75, 255, 0.3);
}
.sp-send:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(164, 75, 255, 0.45);
}

.sp-send:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}
.sp-send:active {
  transform: scale(0.97);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
  .content { padding: 12px; }
  .sp-view {
    max-width: 100%;
    height: calc(100vh - 90px);
  }
}

/* ================= ADMIN PANEL ================= */
.admin-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 90;
}
.admin-overlay.show { opacity: 1; pointer-events: auto; }

.admin-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 380px;
  max-width: 92vw;
  background: #f5f5f5;
  color: #1a1a1a;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  font-family: 'Inter', sans-serif;
}
.admin-panel.show { transform: translateX(0); }

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.admin-head h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 2px;
}
.admin-sub { font-size: 12px; color: #888; }
.admin-head .icon-btn {
  border-color: #ddd;
  color: #888;
  background: #fafafa;
}
.admin-head .icon-btn:hover { color: #333; border-color: #bbb; }

.admin-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-block {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px;
}

.admin-label { font-size: 12px; color: #888; margin-bottom: 6px; }

.admin-crypto {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 9px;
  padding: 10px 12px;
}
.crypto-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #627eea;
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.admin-crypto select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13.5px;
  color: #222;
  font-family: inherit;
  cursor: pointer;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.admin-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.admin-more { color: #999; font-size: 14px; cursor: pointer; }

.admin-field { display: block; margin-bottom: 12px; }
.admin-field > span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}
.admin-field input,
.admin-field textarea {
  width: 100%;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: #222;
  outline: none;
  font-family: inherit;
  resize: vertical;
  transition: 0.15s;
}
.admin-field input:focus,
.admin-field textarea:focus {
  border-color: #3b82f6;
  background: #fff;
}
.admin-field textarea::placeholder { color: #aaa; font-style: italic; }
.admin-field .hint {
  display: block;
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 5px;
  line-height: 1.4;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
}
.admin-check input {
  width: 16px; height: 16px;
  accent-color: #3b82f6;
  cursor: pointer;
}

.admin-select {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 10px;
}
.admin-select select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13.5px;
  color: #222;
  font-family: inherit;
  cursor: pointer;
}
.bank-mini {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: #e63946;
  color: #fff;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.tariff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.tariff {
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1.5px dashed;
  background: #fff;
}
.tariff:hover { filter: brightness(0.97); }
.tariff-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.tariff-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #333;
}
.tariff-1 { border-color: #10b981; background: #ecfdf5; }
.tariff-1 .tariff-num { background: #10b981; }
.tariff-2 { border-color: #f97316; background: #fff7ed; }
.tariff-2 .tariff-num { background: #f97316; }
.tariff-3 { border-color: #3b82f6; background: #eff6ff; }
.tariff-3 .tariff-num { background: #3b82f6; }
.tariff-4 { border-color: #a855f7; background: #faf5ff; }
.tariff-4 .tariff-num { background: #a855f7; }

.tariff.active {
  border-style: solid;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}

.admin-footer {
  padding: 14px 16px;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}
.btn-apply {
  width: 100%;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  border: none;
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: 0.15s;
}
.btn-apply:hover { filter: brightness(1.1); }

/* Чекбоксы админки */
.admin-check-success,
.admin-check-convert,
.admin-check-verify,
.admin-check-limit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 4px;
  margin-bottom: 0;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.admin-check-success:hover { background: #f0f4ff; border-color: #3b82f6; }
.admin-check-convert:hover { background: #f5f3ff; border-color: #a44bff; }
.admin-check-verify:hover  { background: #eff6ff; border-color: #3b82f6; }
.admin-check-limit:hover   { background: #fffbeb; border-color: #f59e0b; }

.admin-check-success input,
.admin-check-convert input,
.admin-check-verify input,
.admin-check-limit input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-check-box,
.admin-check-box-convert,
.admin-check-box-verify,
.admin-check-box-limit {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}

.admin-check-box::after {
  content: '';
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
  margin-top: -2px;
}
.admin-check-success input:checked ~ .admin-check-box {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
.admin-check-success input:checked ~ .admin-check-box::after {
  transform: rotate(45deg) scale(1);
}

.admin-check-box-convert::before {
  content: '↑↓';
  font-weight: 700;
  font-size: 12px;
  transform: scale(0.9);
  transition: 0.2s;
  color: #64748b;
}
.admin-check-convert input:checked ~ .admin-check-box-convert {
  background: linear-gradient(135deg, #a44bff, #7c5cff);
  border-color: #a44bff;
  box-shadow: 0 0 0 4px rgba(164, 75, 255, 0.15);
}
.admin-check-convert input:checked ~ .admin-check-box-convert::before { color: #fff; }

.admin-check-box-verify::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2 L20 5 L20 12 C20 17 16 20 12 22 C8 20 4 17 4 12 L4 5 Z'/><path d='M9 12 L11.2 14.2 L15 10.2'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s;
}
.admin-check-verify input:checked ~ .admin-check-box-verify {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}
.admin-check-verify input:checked ~ .admin-check-box-verify::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2 L20 5 L20 12 C20 17 16 20 12 22 C8 20 4 17 4 12 L4 5 Z'/><path d='M9 12 L11.2 14.2 L15 10.2'/></svg>");
  background-size: 14px 14px;
}

.admin-check-box-limit::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'><path d='M13 2 L4.5 13 H11 L10 22 L19.5 11 H12 Z'/></svg>");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s;
}
.admin-check-limit input:checked ~ .admin-check-box-limit {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}
.admin-check-limit input:checked ~ .admin-check-box-limit::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M13 2 L4.5 13 H11 L10 22 L19.5 11 H12 Z'/></svg>");
}

.admin-check-label,
.admin-check-label-convert,
.admin-check-label-verify,
.admin-check-label-limit {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s;
}
.admin-check-success input:checked ~ .admin-check-label { color: #059669; }
.admin-check-convert input:checked ~ .admin-check-label-convert { color: #7c5cff; }
.admin-check-verify  input:checked ~ .admin-check-label-verify  { color: #2563eb; }
.admin-check-limit   input:checked ~ .admin-check-label-limit   { color: #d97706; }

/* User menu в топбаре — кликабельное */
.user-menu {
  cursor: pointer;
  transition: 0.15s;
}
.user-menu:hover {
  background: rgba(124, 92, 255, 0.08);
}
/* ============================================================
   AXIS SUPPORT — STYLISH PAGE TITLE
   Градиентный заголовок + красивая лицензия
   ============================================================ */

/* ---------- Заголовок "Chat Support" ---------- */
.topbar-title h1 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.15;
  background: linear-gradient(135deg,
    #ffffff 0%,
    #e8ddff 40%,
    #b9a8ff 75%,
    #7c9bff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  position: relative;
  display: inline-block;
  padding-right: 2px;
  filter: drop-shadow(0 0 18px rgba(164, 75, 255, 0.35))
          drop-shadow(0 0 6px rgba(46, 168, 255, 0.2));
}

/* Тонкая градиентная полоска под заголовком */
.topbar-title h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    #ff8a2b 0%,
    #ff3d8a 35%,
    #a44bff 65%,
    #2ea8ff 100%);
  box-shadow: 0 0 12px rgba(164, 75, 255, 0.6);
  opacity: 0.85;
}

/* Вертикальная градиентная полоска слева */
.topbar-title {
  position: relative;
  padding-left: 14px;
}
.topbar-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg,
    #ff8a2b 0%,
    #ff3d8a 35%,
    #a44bff 65%,
    #2ea8ff 100%);
  box-shadow: 0 0 12px rgba(164, 75, 255, 0.6);
}

/* ---------- Лицензия под заголовком ---------- */
.breadcrumb {
  font-size: 11.5px;
  color: #8b93a7;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb::before {
  content: '🔒';
  font-size: 10px;
  opacity: 0.5;
  margin-right: -2px;
}
.breadcrumb b {
  font-family: 'SF Mono', 'Consolas', monospace !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #c8b5ff !important;
  padding: 2px 8px;
  background: rgba(164, 75, 255, 0.1);
  border: 1px solid rgba(164, 75, 255, 0.25);
  border-radius: 5px;
  text-shadow: 0 0 8px rgba(164, 75, 255, 0.4);
}
.breadcrumb span {
  color: #a48cff !important;
  font-weight: 800;
}