.aura-panel,
.aura-panel * {
  box-sizing: border-box;
}

.aura-panel {
  --auri-signal: #e5142a;
  --auri-signal-bright: #ff2e5f;
  --auri-signal-soft: #ff8ba3;
  right: 18px;
  width: min(370px, calc(100vw - 24px));
  height: min(70dvh, 580px);
  max-height: calc(100dvh - 112px - env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(12, 10, 12, 0.82);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 26px 70px rgba(5, 2, 4, 0.48);
}

.aura-panel.aura-show {
  animation: auriPanelMaterialize 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.aura-panel .aura-head {
  min-width: 0;
  flex: 0 0 auto;
  padding: 12px;
  overflow: hidden;
  background: rgba(12, 10, 12, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  animation: none;
}

.aura-panel .aura-head::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateX(-130%);
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.13) 50%, transparent 66%);
}

.aura-panel.aura-show .aura-head::after {
  animation: auriHeaderSheen 780ms 120ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.aura-panel .aura-av {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 126, 151, 0.24);
  box-shadow: 0 0 18px rgba(229, 20, 42, 0.2);
}

.aura-panel .aura-hi {
  overflow: hidden;
}

.aura-panel .aura-hi b,
.aura-panel .aura-hi span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aura-panel .aura-hi b {
  color: #fff;
}

.aura-panel .aura-hi span {
  color: rgba(255, 238, 242, 0.72);
}

.aura-panel .aura-hi span::before {
  flex: 0 0 7px;
  background: var(--auri-signal-bright);
  box-shadow: 0 0 8px rgba(255, 46, 95, 0.8);
}

.aura-panel .aura-hbtn {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease;
}

.aura-panel .aura-hbtn:hover {
  background: rgba(255, 255, 255, 0.17);
}

.aura-panel .aura-hbtn:active {
  transform: scale(0.94);
}

.aura-panel .aura-modes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  flex: 0 0 auto;
  gap: 6px;
  padding: 8px;
  overflow: hidden;
  background: rgba(10, 5, 8, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aura-panel .aura-mode {
  width: auto;
  min-width: 0;
  height: 42px;
  margin: 0;
  padding: 0 12px;
  gap: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255, 232, 238, 0.66);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
}

.aura-panel .aura-mode svg {
  display: block;
  flex: 0 0 17px;
  width: 17px !important;
  height: 17px !important;
  min-width: 17px;
  overflow: visible;
}

.aura-panel .aura-mode.aura-active {
  color: #fff;
  border-color: rgba(255, 126, 151, 0.34);
  background: rgba(229, 20, 42, 0.88);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 8px 20px rgba(229, 20, 42, 0.24);
}

.aura-panel .aura-mode.aura-active svg {
  animation: auriModePop 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.aura-panel .aura-body {
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 126, 151, 0.34) transparent;
}

.aura-panel .aura-msg,
.aura-panel .aura-typing {
  max-width: min(88%, 292px);
}

.aura-panel .aura-bot,
.aura-panel .aura-typing {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 8px 20px rgba(4, 2, 3, 0.18);
}

.aura-panel .aura-user {
  background: #e5142a;
}

.aura-panel .aura-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 auto;
  max-height: none;
  overflow: visible;
}

.aura-panel .aura-chip {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  white-space: normal;
  line-height: 1.3;
  color: #ffdce4;
  border-color: rgba(255, 75, 126, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.aura-panel .aura-chip:nth-child(2) {
  animation-delay: 40ms;
}

.aura-panel .aura-chip:nth-child(3) {
  animation-delay: 80ms;
}

.aura-panel .aura-chip:nth-child(4) {
  animation-delay: 120ms;
}

.aura-panel.aura-show .aura-chip {
  animation: auriChipIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.aura-panel .aura-in {
  flex: 0 0 auto;
  min-width: 0;
  background: rgba(10, 5, 8, 0.48);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.aura-panel .aura-in input {
  width: 100%;
  min-width: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.aura-panel .aura-in input::placeholder {
  color: rgba(255, 232, 238, 0.48);
}

.aura-panel .aura-btn {
  min-width: 42px;
  padding: 0;
}

.aura-panel .aura-send {
  background: #e5142a;
}

.aura-panel .aura-foot {
  display: none !important;
}

/* AgentDock-Aufbau: kompakte Statuszeile, darunter nur die beiden klaren Modi. */
.aura-panel .auri-access-badge {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 92px;
  margin-left: auto;
  padding: 5px 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 238, 242, 0.72);
  background: rgba(255, 255, 255, 0.07);
  font: 700 9px/1.1 Archivo, system-ui, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aura-panel .auri-access-badge.is-full {
  color: #fff;
  border-color: rgba(255, 84, 115, 0.48);
  background: rgba(229, 20, 42, 0.2);
}

.aura-panel .aura-modes {
  padding: 7px;
  border-bottom: 0;
}

.aura-panel .aura-mode {
  height: 38px;
  border-radius: 9px;
}

.aura-panel .aura-mode.aura-active {
  background: rgba(229, 20, 42, 0.92);
}

/* Vollzugriffs-Lage */
.auri-access-gate {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 6, 8, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  animation: auriGateIn 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.auri-access-card {
  position: relative;
  width: 100%;
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  background: rgba(22, 13, 17, 0.9);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.auri-gate-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.auri-lock {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 99, 129, 0.38);
  border-radius: 50%;
  background: rgba(229, 20, 42, 0.13);
  box-shadow: 0 0 24px rgba(229, 20, 42, 0.2);
}

.auri-lock::before {
  content: "";
  display: block;
  width: 10px;
  height: 9px;
  margin: 15px auto 0;
  border: 2px solid #ff718e;
  border-radius: 2px;
}

.auri-lock::after {
  content: "";
  display: block;
  width: 7px;
  height: 6px;
  margin: -15px auto 0;
  border: 2px solid #ff718e;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.auri-gate-kicker {
  display: block;
  margin-bottom: 7px;
  color: #ff718e;
  font: 800 9px/1 Archivo, system-ui, sans-serif;
}

.auri-access-card strong {
  display: block;
  font: 800 17px/1.2 Archivo, system-ui, sans-serif;
}

.auri-access-card p {
  margin: 8px auto 14px;
  color: rgba(255, 238, 242, 0.68);
  font: 500 12px/1.5 Archivo, system-ui, sans-serif;
}

.auri-access-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.auri-code {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: 700 13px/1 Archivo, system-ui, sans-serif;
  text-align: center;
}

.auri-code:focus {
  border-color: #ff718e;
  box-shadow: 0 0 0 3px rgba(255, 113, 142, 0.13);
}

.auri-activate,
.auri-login {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #e5142a;
  font: 800 12px/1 Archivo, system-ui, sans-serif;
  cursor: pointer;
}

.auri-activate:disabled { opacity: 0.55; }

.auri-contract-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 238, 242, 0.62);
  font: 600 10px/1.3 Archivo, system-ui, sans-serif;
}

.auri-gate-status {
  display: block;
  min-height: 16px;
  margin-top: 8px;
  color: #ff9aae;
  font: 700 10px/1.4 Archivo, system-ui, sans-serif;
}

/* Auri denkt: die gelieferte Loader-Idee als kleine rote Sci-Fi-Anzeige. */
.aura-panel .aura-typing[data-auri-loader] {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
}

.auri-loader-ring {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  box-shadow: 0 4px 9px #fff inset, 0 9px 12px #ff526f inset, 0 19px 20px #7a071d inset;
  animation: auriLoaderRotate 1.15s linear infinite;
}

.auri-loader-word { display: inline-flex; }
.auri-loader-word i {
  font-style: normal;
  opacity: 0.45;
  animation: auriLoaderLetter 1.25s ease-in-out infinite;
}
.auri-loader-word i:nth-child(2) { animation-delay: 50ms; }
.auri-loader-word i:nth-child(3) { animation-delay: 100ms; }
.auri-loader-word i:nth-child(4) { animation-delay: 150ms; }
.auri-loader-word i:nth-child(5) { animation-delay: 200ms; }
.auri-loader-word i:nth-child(6) { animation-delay: 250ms; }
.auri-loader-word i:nth-child(7) { animation-delay: 300ms; }
.auri-loader-word i:nth-child(8) { animation-delay: 350ms; }
.auri-loader-word i:nth-child(9) { animation-delay: 400ms; }
.auri-loader-word i:nth-child(10) { animation-delay: 450ms; }

/* Mini-Aktionen fuer Skripte, ausschliesslich auf der Guideline. */
.auri-script-tools {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 9px;
}

.auri-script-tools button {
  min-height: 26px !important;
  padding: 0 8px;
  border: 1px solid rgba(229, 20, 42, 0.22);
  border-radius: 6px;
  color: #b00d20;
  background: rgba(229, 20, 42, 0.06);
  font: 750 9px/1 Archivo, system-ui, sans-serif;
  cursor: pointer;
}

.aura-panel .auri-script-tools button {
  color: #ffdbe2;
  border-color: rgba(255, 113, 142, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.auri-script-tools button.is-done { color: #fff; background: #e5142a; }

@keyframes auriGateIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes auriLoaderRotate {
  from { transform: rotate(90deg); }
  to { transform: rotate(450deg); }
}

@keyframes auriLoaderLetter {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  22% { opacity: 1; transform: translateY(-2px); }
  44% { opacity: 0.7; transform: translateY(0); }
}

.aura-panel .aura-mode:focus-visible,
.aura-panel .aura-hbtn:focus-visible,
.aura-panel .aura-chip:focus-visible,
.aura-panel .aura-btn:focus-visible {
  outline: 2px solid var(--auri-signal-soft);
  outline-offset: 2px;
}

.aura-orb:focus-visible,
.aura-recall:focus-visible {
  outline: 2px solid #ff8ba3;
  outline-offset: 3px;
}

html.au-flug-vorbei .aura-orb .aura-tip {
  visibility: hidden;
  opacity: 0 !important;
}

@keyframes auriPanelMaterialize {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes auriHeaderSheen {
  to {
    transform: translateX(130%);
  }
}

@keyframes auriModePop {
  from {
    opacity: 0.4;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes auriChipIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.aura-panel.aura-vmode {
  --auri-signal: #e5142a;
  --auri-signal-bright: #ff2e5f;
  --auri-signal-soft: #ff7e97;
  background: rgba(13, 6, 9, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 58px rgba(8, 2, 5, 0.56), 0 0 0 1px rgba(229, 20, 42, 0.08);
}

.aura-panel.aura-vmode .aura-head {
  background: rgba(24, 7, 13, 0.94);
  border-bottom: 1px solid rgba(255, 75, 126, 0.16);
  animation: none;
}

.aura-panel.aura-vmode .aura-modes {
  background: rgba(16, 8, 11, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.aura-panel.aura-vmode .aura-mode {
  color: rgba(255, 232, 238, 0.64);
  border-radius: 8px;
  transition: color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.aura-panel.aura-vmode .aura-mode.aura-active {
  color: #fff;
  background: var(--auri-signal);
  box-shadow: 0 6px 20px rgba(229, 20, 42, 0.32), inset 0 1px rgba(255, 255, 255, 0.22);
}

.aura-panel.aura-vmode .aura-mode:focus-visible,
.aura-panel.aura-vmode .aura-hbtn:focus-visible,
.aura-panel.aura-vmode .aura-bigwrap:focus-visible {
  outline: 2px solid var(--auri-signal-soft);
  outline-offset: 2px;
}

.aura-panel.aura-vmode .aura-hi span::before {
  background: var(--auri-signal-bright);
  box-shadow: 0 0 8px rgba(255, 46, 95, 0.8);
}

.aura-panel.aura-vmode .aura-voice {
  isolation: isolate;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 42%, rgba(229, 20, 42, 0.2), rgba(229, 20, 42, 0.04) 42%, transparent 64%),
    linear-gradient(180deg, #17090e 0%, #0d0709 100%);
}

.aura-panel.aura-vmode .aura-voice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 126, 151, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 126, 151, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(circle at 50% 43%, #000, transparent 73%);
  mask-image: radial-gradient(circle at 50% 43%, #000, transparent 73%);
}

.aura-panel.aura-vmode .aura-amb {
  display: none;
}

.aura-panel.aura-vmode .aura-bigwrap {
  width: 190px;
  height: 190px;
  isolation: isolate;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.aura-panel.aura-vmode .aura-bigorb-cv {
  width: 184px !important;
  height: 184px !important;
  filter: drop-shadow(0 0 18px rgba(229, 20, 42, 0.3));
}

.aura-panel.aura-vmode .aura-bigwrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  border-radius: 50%;
  opacity: max(0.62, var(--aura-energy, 0));
  background: conic-gradient(
    from 0deg,
    transparent 0 10%,
    rgba(255, 46, 95, 0.92) 18%,
    transparent 27% 52%,
    rgba(255, 226, 233, 0.58) 60%,
    transparent 70%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  animation: auriVoiceOrbit 7s linear infinite;
  pointer-events: none;
}

.aura-panel.aura-vmode .aura-bigwrap::after {
  content: "";
  position: absolute;
  inset: 24px 3px;
  z-index: -1;
  border: 1px solid rgba(255, 126, 151, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(229, 20, 42, 0.18);
  transform: rotate(58deg);
  animation: auriVoiceScan 3.2s cubic-bezier(0.77, 0, 0.18, 1) infinite;
  pointer-events: none;
}

.aura-panel.aura-vmode.aura-spk .aura-bigorb-cv {
  filter: drop-shadow(0 0 24px rgba(255, 46, 95, 0.56));
}

.aura-panel.aura-vmode.aura-spk .aura-bigwrap::before {
  animation-duration: 2.6s;
}

.aura-panel.aura-vmode .aura-vstatus {
  font-family: var(--body, "Manrope", sans-serif);
  font-size: 17px;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 46, 95, 0.32);
}

.aura-panel.aura-vmode .aura-vsub {
  color: rgba(255, 232, 238, 0.68);
}

.aura-panel.aura-vmode .aura-foot {
  color: rgba(255, 232, 238, 0.5);
  background: rgba(13, 6, 9, 0.94);
}

@keyframes auriVoiceOrbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes auriVoiceScan {
  0%,
  100% {
    opacity: 0.28;
    transform: rotate(58deg) scale(0.94);
  }
  50% {
    opacity: 0.76;
    transform: rotate(58deg) scale(1.05);
  }
}

@media (hover: hover) and (pointer: fine) {
  .aura-panel.aura-vmode .aura-bigwrap:hover {
    transform: scale(1.035);
  }
}

@media (max-width: 480px) {
  .aura-panel {
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: calc(100vw - 20px);
    height: min(68dvh, 530px);
    max-height: calc(100dvh - 96px - env(safe-area-inset-bottom, 0px));
    border-radius: 16px;
  }

  .aura-panel .aura-head {
    gap: 8px;
    padding: 10px;
  }

  .aura-panel .aura-av {
    width: 36px;
    height: 36px;
  }

  .aura-panel .aura-av canvas {
    width: 36px !important;
    height: 36px !important;
  }

  .aura-panel .aura-hi b {
    font-size: 15px;
  }

  .aura-panel .aura-hi span {
    font-size: 10.5px;
  }

  .aura-panel .aura-hbtn {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .aura-panel .aura-modes {
    gap: 5px;
    padding: 7px;
  }

  .aura-panel .aura-mode {
    height: 39px;
    padding-inline: 9px;
    font-size: 12.5px;
  }

  .aura-panel .aura-chips {
    padding-inline: 10px;
  }

  .aura-panel .aura-msg {
    font-size: 13px;
  }

  .aura-panel.aura-vmode {
    right: 10px;
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: calc(100vw - 20px);
    height: min(72dvh, 560px);
  }

  .aura-panel.aura-vmode .aura-voice {
    padding: 16px 16px 22px;
  }

  .aura-panel.aura-vmode .aura-bigwrap {
    width: 168px;
    height: 168px;
  }

  .aura-panel.aura-vmode .aura-bigorb-cv {
    width: 164px !important;
    height: 164px !important;
  }
}

@media (max-width: 780px) {
  .aura-panel {
    right: 10px !important;
    left: auto !important;
    width: calc(100vw - 20px) !important;
  }

  .aura-orb {
    top: auto !important;
    right: 14px !important;
    bottom: calc(102px + env(safe-area-inset-bottom, 0px)) !important;
    left: auto !important;
    width: 48px;
    height: 48px;
    transition: bottom 220ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms ease, opacity 180ms ease;
  }

  body:has(.aura-panel.aura-show) .aura-orb {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.82);
  }

  .aura-orb .aura-tip {
    display: none;
  }
}

@media (max-height: 620px) {
  .aura-panel .aura-chips {
    max-height: 92px;
    overflow: auto;
  }
}

@media (max-height: 650px) {
  .aura-panel.aura-vmode .aura-voice {
    gap: 8px;
    padding-block: 10px 16px;
  }

  .aura-panel.aura-vmode .aura-bigwrap {
    width: 146px;
    height: 146px;
  }

  .aura-panel.aura-vmode .aura-bigorb-cv {
    width: 142px !important;
    height: 142px !important;
  }

  .aura-panel.aura-vmode .aura-vsub {
    min-height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aura-panel.aura-show,
  .aura-panel.aura-show .aura-head::after,
  .aura-panel .aura-mode.aura-active svg,
  .aura-panel.aura-show .aura-chip {
    animation: none !important;
  }

  .aura-panel.aura-vmode .aura-bigwrap,
  .aura-panel.aura-vmode .aura-bigwrap::before,
  .aura-panel.aura-vmode .aura-bigwrap::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .aura-panel,
  .aura-panel.aura-vmode {
    background: #170d11;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
