/**
 * AIRo Guide / AIRo Гид — дашборд (.asc).
 * Свет лампы робота слева → холодный sci-fi справа.
 * Область ленты сообщений и фон каркаса — полностью прозрачны (космос без blur/затемнения).
 * Glass + blur только у шапки и нижней панели формы.
 */

#airo-system-chat-root.asc {
  --asc-graphite-1: #0f1724;
  --asc-graphite-2: #131d30;
  --asc-graphite-3: #182338;
  --asc-graphite-4: #1e273c;
  --asc-lamp: #ffc857;
  --asc-lamp-mid: #e7b94c;
  --asc-lamp-soft: #f4d27a;
  --asc-lamp-hi: #ffeda3;
  --asc-cyan: #78d8ff;
  --asc-cyan-mid: #4fb3ff;
  --asc-user-panel: #2a3b55;
  --asc-user-deep: #1a2433;

  --asc-line-gold: rgba(255, 200, 87, 0.22);
  --asc-line-gold-soft: rgba(255, 200, 87, 0.12);
  --asc-cyan-line: rgba(120, 216, 255, 0.22);

  position: fixed;
  inset: 0;
  z-index: 249500;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: max(8px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  outline: none;
  -webkit-tap-highlight-color: transparent;
  /* Клики вне карточки проходят к странице (шапка EN/RU, скролл фона) — сама панель .asc-panel с pointer-events: auto */
  pointer-events: none;
}

#airo-system-chat-root.asc[hidden] {
  display: none !important;
}

body.asc-active .dashboard-assistant-mascot {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Курсор / палец на карточке чата — страница под модалкой не скроллится; вне карточки скролл как обычно */
body.asc-chat-panel-hover {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.asc-dim {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  cursor: default;
}

.asc-panel-wrap {
  position: relative;
  z-index: 2;
  width: min(318px, calc(100vw - 20px));
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
}

/* Каркас: внутри полностью прозрачно (без blur и без заливки); только контур светом по краям */
.asc-panel {
  pointer-events: auto;
  width: 100%;
  height: min(400px, 56vh);
  max-height: min(430px, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px));
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  overflow: visible;
  border-radius: 0;
  color: #e8ecf5;
  border: none;
  isolation: isolate;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overscroll-behavior: contain;
  touch-action: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 180, 0.34),
    inset 0 2px 0 rgba(130, 175, 225, 0.09),
    inset 0 -1px 0 rgba(255, 195, 135, 0.26),
    inset 1px 0 0 rgba(255, 214, 150, 0.38),
    inset -1px 0 0 rgba(95, 160, 215, 0.28),
    -8px 0 28px -6px rgba(255, 200, 87, 0.09),
    8px 0 28px -6px rgba(60, 110, 165, 0.08),
    0 0 0 1px rgba(12, 18, 30, 0.32),
    0 14px 42px rgba(0, 0, 0, 0.3);
}

.asc-panel > .asc-head,
.asc-panel > .asc-log,
.asc-panel > .asc-form {
  position: relative;
  z-index: 2;
}

.asc-mascot-roof {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 5;
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  /* Нижний край маскота = верхний край панели (край шапки) */
  transform: translate(-50%, -100%);
}

.asc-mascot-roof .asc-head-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: visible;
  line-height: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.asc-mascot-roof .asc-head-avatar-v {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  background: transparent !important;
  pointer-events: none;
}

@media (max-width: 768px) {
  #airo-system-chat-root.asc {
    justify-content: center;
    align-items: flex-end;
    padding-left: max(4px, calc(env(safe-area-inset-left) + 4px));
    padding-right: max(4px, calc(env(safe-area-inset-right) + 4px));
    /* Нижний safe-area учитываем только в .asc-form — иначе двойной отступ и «прыжок» на iPhone */
    padding-bottom: 8px;
  }

  .asc-panel-wrap {
    width: 100%;
    max-width: min(318px, calc(100vw - 8px - env(safe-area-inset-left) - env(safe-area-inset-right)));
    margin-left: auto;
    margin-right: auto;
  }

  .asc-panel {
    height: min(44dvh, 340px);
    max-height: min(
      52dvh,
      calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 88px)
    );
    box-shadow:
      inset 0 1px 0 rgba(255, 226, 180, 0.32),
      inset 0 2px 0 rgba(130, 175, 225, 0.08),
      inset 0 -1px 0 rgba(255, 195, 135, 0.24),
      inset 1px 0 0 rgba(255, 214, 150, 0.34),
      inset -1px 0 0 rgba(95, 160, 215, 0.26),
      -6px 0 22px -5px rgba(255, 200, 87, 0.08),
      6px 0 22px -5px rgba(60, 110, 165, 0.07),
      0 0 0 1px rgba(12, 18, 30, 0.3),
      0 12px 36px rgba(0, 0, 0, 0.28);
  }

  .asc-form {
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
}

/* Шапка: полупрозрачное стекло + navy, не сплошная плита; лёгкий gold glow */
.asc-head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px 9px 12px;
  min-height: 40px;
  border: none;
  touch-action: none;
  background:
    radial-gradient(ellipse 72% 200% at 50% 0%, rgba(255, 218, 160, 0.14), transparent 58%),
    linear-gradient(
      90deg,
      rgba(255, 200, 87, 0.09) 0%,
      rgba(255, 225, 190, 0.05) 46%,
      rgba(42, 59, 85, 0.14) 100%
    ),
    linear-gradient(180deg, rgba(18, 20, 34, 0.62) 0%, rgba(10, 12, 24, 0.7) 100%);
  backdrop-filter: blur(14px) saturate(1.04);
  -webkit-backdrop-filter: blur(14px) saturate(1.04);
  box-shadow:
    inset 0 -1px 0 rgba(255, 200, 87, 0.2),
    inset 0 -2px 12px rgba(255, 175, 110, 0.05),
    inset 1px 0 0 rgba(255, 214, 140, 0.16),
    inset -1px 0 0 rgba(75, 130, 185, 0.14),
    inset 0 1px 0 rgba(255, 235, 200, 0.07);
  position: relative;
  z-index: 2;
}

@supports (mix-blend-mode: screen) {
  .asc-panel--apple-touch .asc-head-avatar-v {
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
  }
}

.asc-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: var(--font-headings, 'neuro', system-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #e8c878;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow:
    0 0 6px rgba(255, 200, 87, 0.28),
    0 0 14px rgba(255, 200, 87, 0.16),
    0 0 26px rgba(255, 200, 87, 0.09);
}

/* Закрытие: часть панели; слева ловит лампу, справа холод; hover — мягкое gold */
.asc-x {
  flex: 0 0 auto;
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(
      105deg,
      rgba(255, 200, 87, 0.14) 0%,
      rgba(32, 44, 64, 0.88) 38%,
      rgba(18, 28, 48, 0.94) 100%
    ),
    linear-gradient(180deg, rgba(26, 36, 52, 0.95), rgba(14, 20, 34, 0.98));
  color: rgba(175, 190, 215, 0.88);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
  box-shadow:
    inset 2px 0 8px -2px rgba(255, 210, 140, 0.2),
    inset -1px 0 0 rgba(70, 120, 175, 0.22),
    inset 0 1px 0 rgba(255, 230, 200, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42);
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.22s ease, color 0.22s ease;
}

.asc-x:hover {
  color: rgba(255, 240, 215, 0.96);
  box-shadow:
    inset 2px 0 12px -1px rgba(255, 210, 150, 0.28),
    inset -1px 0 0 rgba(85, 135, 190, 0.2),
    inset 0 1px 0 rgba(255, 235, 210, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 20px rgba(255, 200, 87, 0.14),
    0 0 32px rgba(255, 200, 87, 0.08);
}

.asc-x::before,
.asc-x::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center center;
}

.asc-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.asc-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.asc-x:hover::before,
.asc-x:hover::after {
  filter: drop-shadow(0 0 4px rgba(255, 200, 87, 0.35));
}

/* Зона сообщений — по-прежнему прозрачная к космосу */
.asc-log {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

#airo-system-chat-root.asc .asc-log::-webkit-scrollbar,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-track,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-track-piece,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-track-piece:start,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-track-piece:end,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-thumb,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-thumb:vertical,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-thumb:horizontal,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-button,
#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-corner,
#airo-system-chat-root.asc .asc-log::-webkit-resizer {
  border-radius: 0 !important;
}

#airo-system-chat-root.asc .asc-log::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-track {
  background-color: rgba(15, 23, 36, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 200, 87, 0.04);
}

#airo-system-chat-root.asc .asc-log::-webkit-scrollbar-thumb {
  background: linear-gradient(160deg, rgba(30, 39, 60, 0.65) 0%, rgba(19, 29, 48, 0.6) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 214, 120, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

@supports not selector(::-webkit-scrollbar) {
  #airo-system-chat-root.asc .asc-log {
    scrollbar-width: thin;
    scrollbar-color: rgba(46, 58, 78, 0.65) rgba(15, 23, 36, 0.35);
  }
}

.asc-msg {
  display: flex;
  width: 100%;
}

.asc-plaque {
  padding: 10px 12px;
  border-radius: 0;
  color: #f0f3f8;
  font-family: var(--font-main, 'Montserrat', system-ui, sans-serif);
  font-size: 13px;
  line-height: 1.45;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}

.asc-plaque__content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

/* Текст только справа от «головы»: одинаковый масштаб и отступ, как у иконки гида */
.asc-plaque__content .asc-plaque__ai-icon,
.asc-plaque__content .asc-plaque__user-icon {
  flex: 0 0 auto;
  position: relative;
  top: -2px;
}

.asc-plaque__ai-icon {
  width: 24px;
  height: 24px;
  margin-left: -6px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.asc-plaque__user-icon {
  width: calc(24px * 1.01);
  height: calc(24px * 1.01);
  margin-left: -6px;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.asc-plaque__body {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(232, 240, 248, 0.96);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  word-wrap: break-word;
}

/* AI: объёмная панель — лампа слева/сверху-слева, центр тёмный, справа холод; контур неравномерный */
.asc-msg--system .asc-plaque {
  max-width: 94%;
  border: none;
  background:
    radial-gradient(ellipse 92% 78% at 0% 0%, rgba(255, 210, 145, 0.24), transparent 58%),
    radial-gradient(ellipse 58% 55% at 100% 3%, rgba(90, 165, 215, 0.14), transparent 54%),
    linear-gradient(112deg, rgba(24, 28, 44, 0.97) 0%, rgba(17, 21, 36, 0.95) 42%, rgba(14, 20, 38, 0.97) 100%);
  box-shadow:
    /* левая грань — золото */
    inset 1px 0 0 rgba(255, 220, 165, 0.5),
    inset 3px 0 16px -3px rgba(255, 200, 87, 0.13),
    /* верх: gold → blue */
    inset 0 1px 0 rgba(255, 225, 180, 0.42),
    inset 0 2px 0 rgba(120, 175, 220, 0.14),
    inset 0 3px 14px -6px rgba(255, 200, 120, 0.08),
    inset 0 3px 12px -6px rgba(70, 130, 190, 0.08),
    /* правый верх — лёгкий blue highlight */
    inset -1px 1px 8px -2px rgba(120, 200, 255, 0.09),
    /* правая грань — холод */
    inset -1px 0 0 rgba(100, 170, 220, 0.34),
    inset -3px 0 14px -2px rgba(40, 90, 150, 0.12),
    /* низ — тёплое отражение */
    inset 0 -1px 0 rgba(255, 190, 130, 0.22),
    inset 0 -2px 12px -4px rgba(255, 180, 100, 0.07),
    /* объём */
    inset -2px -2px 0 rgba(0, 0, 0, 0.22),
    0 8px 28px rgba(0, 0, 0, 0.24),
    -4px 0 18px -4px rgba(255, 200, 87, 0.07),
    5px 0 20px -4px rgba(60, 120, 180, 0.08);
}

.asc-msg--user {
  justify-content: flex-end;
}

.asc-msg--user .asc-plaque__content {
  gap: calc(6px * 0.99);
}

.asc-msg--user .asc-plaque__body {
  margin-left: -1px;
}

/* User: холоднее, та же система объёма; gold только лёгкое отражение снизу */
.asc-msg--user .asc-plaque {
  max-width: 92%;
  border: none;
  color: rgba(218, 234, 252, 0.96);
  background:
    radial-gradient(ellipse 70% 58% at 100% 0%, rgba(120, 216, 255, 0.16), transparent 56%),
    radial-gradient(ellipse 42% 48% at 0% 100%, rgba(79, 179, 255, 0.07), transparent 52%),
    linear-gradient(252deg, rgba(16, 28, 48, 0.97) 0%, rgba(12, 22, 40, 0.96) 48%, rgba(14, 26, 46, 0.98) 100%);
  box-shadow:
    inset -1px 0 0 rgba(130, 210, 255, 0.38),
    inset -3px 0 16px -2px rgba(50, 120, 190, 0.12),
    inset 0 1px 0 rgba(120, 210, 255, 0.22),
    inset 0 2px 0 rgba(79, 179, 255, 0.1),
    inset 0 3px 12px -6px rgba(79, 179, 255, 0.1),
    inset 1px 0 0 rgba(100, 160, 210, 0.12),
    inset 0 -1px 0 rgba(255, 200, 87, 0.08),
    inset 0 -2px 10px -3px rgba(255, 190, 130, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 7px 26px rgba(0, 0, 0, 0.22),
    5px 0 22px -4px rgba(70, 150, 220, 0.09);
}

/* Нижняя полоса: полупрозрачный glass; нижний inset — один раз (мобилка переопределяет) */
.asc-form {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 10px;
  border: none;
  touch-action: pan-y;
  background:
    linear-gradient(
      90deg,
      rgba(255, 200, 87, 0.07) 0%,
      rgba(255, 220, 185, 0.04) 42%,
      rgba(35, 50, 72, 0.1) 100%
    ),
    linear-gradient(180deg, rgba(19, 29, 48, 0.5) 0%, rgba(15, 23, 36, 0.56) 100%);
  backdrop-filter: blur(12px) saturate(1.02);
  -webkit-backdrop-filter: blur(12px) saturate(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 214, 140, 0.12),
    inset 1px 0 0 rgba(255, 210, 150, 0.08),
    inset -1px 0 0 rgba(80, 130, 185, 0.12),
    0 -10px 28px rgba(0, 0, 0, 0.18);
}

/* Поле ввода: лево золото, право blue, центр graphite; без плоского border */
.asc-ta {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  max-height: 72px;
  resize: none;
  overflow-y: auto;
  padding: 9px 11px;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(100deg, rgba(255, 200, 87, 0.05) 0%, transparent 28%),
    linear-gradient(280deg, rgba(79, 179, 255, 0.06) 0%, transparent 32%),
    linear-gradient(180deg, rgba(22, 32, 48, 0.98) 0%, rgba(17, 26, 42, 0.99) 100%);
  color: #e8ecf5;
  font-family: var(--font-main, 'Montserrat', system-ui, sans-serif);
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  box-shadow:
    inset 1px 0 0 rgba(255, 215, 160, 0.35),
    inset 2px 0 12px -4px rgba(255, 200, 87, 0.08),
    inset -1px 0 0 rgba(100, 175, 220, 0.3),
    inset -2px 0 10px -3px rgba(60, 120, 180, 0.08),
    inset 0 1px 0 rgba(255, 220, 175, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    inset 0 -2px 10px rgba(255, 185, 120, 0.04),
    0 0 0 1px rgba(12, 20, 34, 0.45);
  transition: box-shadow 0.22s ease;
}

.asc-ta::placeholder {
  color: rgba(160, 182, 210, 0.78);
}

.asc-ta:focus,
.asc-ta:focus-visible {
  box-shadow:
    inset 1px 0 0 rgba(255, 220, 175, 0.45),
    inset 3px 0 16px -3px rgba(255, 200, 87, 0.11),
    inset -1px 0 0 rgba(120, 195, 245, 0.36),
    inset -2px 0 14px -3px rgba(79, 179, 255, 0.1),
    inset 0 1px 0 rgba(255, 230, 200, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(79, 179, 255, 0.22),
    0 0 18px rgba(255, 200, 87, 0.1),
    0 0 24px rgba(79, 179, 255, 0.06);
}

#airo-system-chat-root.asc .asc-ta::-webkit-scrollbar {
  width: 6px;
}

#airo-system-chat-root.asc .asc-ta::-webkit-scrollbar-track {
  background: rgba(15, 23, 36, 0.9);
}

#airo-system-chat-root.asc .asc-ta::-webkit-scrollbar-thumb {
  background: rgba(46, 64, 88, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 200, 87, 0.06);
}

@supports not selector(::-webkit-scrollbar) {
  #airo-system-chat-root.asc .asc-ta {
    scrollbar-width: thin;
    scrollbar-color: rgba(46, 64, 88, 0.75) rgba(19, 29, 48, 0.9);
  }
}

/* Отправить: лампа слева, справа тёмный blue-graphite, центр мягкий свет; подпись тёплое золото */
.asc-send {
  flex: 0 0 auto;
  min-width: 84px;
  height: 40px;
  padding: 0 12px;
  margin: 0;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(
      115deg,
      rgba(255, 200, 87, 0.12) 0%,
      rgba(255, 220, 175, 0.05) 28%,
      rgba(28, 38, 58, 0.95) 55%,
      rgba(16, 26, 48, 0.98) 100%
    ),
    linear-gradient(180deg, rgba(32, 42, 62, 0.98), rgba(18, 28, 46, 0.99));
  color: #e8c878;
  font-family: var(--font-main, 'Montserrat', system-ui, sans-serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow:
    0 0 10px rgba(255, 200, 87, 0.35),
    0 0 20px rgba(255, 200, 87, 0.12);
  box-shadow:
    inset 1px 0 0 rgba(255, 215, 160, 0.38),
    inset 2px 0 14px -3px rgba(255, 200, 87, 0.12),
    inset -1px 0 0 rgba(65, 110, 165, 0.28),
    inset -2px 0 12px -2px rgba(30, 70, 120, 0.12),
    inset 0 1px 0 rgba(255, 230, 200, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(18, 26, 42, 0.5),
    0 0 18px rgba(255, 200, 87, 0.08);
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.22s ease, color 0.22s ease;
}

.asc-send:hover {
  color: #f5e6c4;
  box-shadow:
    inset 1px 0 0 rgba(255, 225, 185, 0.48),
    inset 2px 0 18px -2px rgba(255, 200, 87, 0.16),
    inset -1px 0 0 rgba(75, 125, 180, 0.24),
    inset 0 1px 0 rgba(255, 235, 210, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 200, 87, 0.2),
    0 0 26px rgba(255, 200, 87, 0.18),
    0 0 36px rgba(255, 200, 87, 0.06);
}

.asc-send:active {
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.38),
    inset 1px 0 0 rgba(255, 210, 160, 0.3),
    0 0 14px rgba(255, 200, 87, 0.12);
}
