* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f9ff;
  --panel: rgba(255, 255, 255, 0.62);
  --panel-strong: rgba(255, 255, 255, 0.84);
  --line: #dbe4f2;
  --text: #142033;
  --muted: #6a7791;
  --primary: #5b8def;
  --secondary: #8b5cf6;
  --cyan: #35b6d8;
  --rose: #e76f96;
  --shadow: 0 20px 48px rgba(40, 68, 108, 0.1);
  --shadow-soft: 0 10px 28px rgba(40, 68, 108, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
  --fan-ox: 56px;
  --fan-oy: calc(100% - 56px);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "PingFang SC", "SF Pro Display", "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at 82% 8%, rgba(219, 234, 254, 0.9), transparent 32%),
    radial-gradient(circle at 10% 88%, rgba(237, 233, 254, 0.86), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8fe 100%);
  color: var(--text);
  overflow: hidden;
}

body {
  position: relative;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 10s var(--ease-apple) infinite alternate;
}

.orb-a {
  width: 340px;
  height: 340px;
  right: -80px;
  top: -100px;
  background: #dbeafe;
}

.orb-b {
  width: 290px;
  height: 290px;
  left: -70px;
  bottom: -40px;
  background: #ede9fe;
  animation-duration: 12s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 141, 239, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 141, 239, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, 18px, 0) scale(1.04);
  }
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(circle at top, #ffffff 0%, #f3f8fe 55%, #edf4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-apple), visibility 0.8s var(--ease-apple);
}

.splash.hide {
  opacity: 0;
  visibility: hidden;
}

.splash-inner {
  text-align: center;
  padding: 20px;
  animation: splashRise 1.1s var(--ease-apple);
}

.splash-line {
  width: 90px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, #b9d8ff, #ffd6c8);
}

.typing-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
  min-height: 50px;
}

.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blinkCursor 1s steps(1) infinite;
}

@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

.typing-dots {
  margin-top: 10px;
  height: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8aa3d7;
  opacity: 0.3;
  animation: dotPulse 1.2s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.splash p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.splash-subtitle {
  font-size: 13px;
  color: #6a7791;
  margin-top: 6px;
}

@keyframes splashRise {
  from {
    transform: translateY(18px) scale(0.985);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.floating-title {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  animation: floatTitle 5s var(--ease-apple) infinite alternate;
}

@keyframes floatTitle {
  from {
    transform: translateX(-50%) translateY(0);
  }

  to {
    transform: translateX(-50%) translateY(4px);
  }
}

.floating-title-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b8def, #8b5cf6);
}

.floating-title-text {
  font-size: 14px;
  font-weight: 700;
  color: #243149;
}

.island-hint {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  z-index: 1190;
  min-width: 240px;
  max-width: 70vw;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(18, 24, 36, 0.82);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-apple), transform 0.35s var(--ease-apple);
}

.island-hint.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.app-shell {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.page {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 70px 20px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: var(--fan-ox) var(--fan-oy);
}

.page.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-enter-fan {
  animation: fanEnter 0.62s var(--ease-apple) forwards;
  z-index: 20;
}

.page-exit-fan {
  animation: fanExit 0.62s var(--ease-apple) forwards;
  z-index: 10;
}

.page-enter-fan.cw,
.page-exit-fan.cw {
  --fan-rot: 18deg;
}

.page-enter-fan.ccw,
.page-exit-fan.ccw {
  --fan-rot: -18deg;
}

@keyframes fanEnter {
  0% {
    opacity: 0;
    clip-path: polygon(
      var(--fan-ox) var(--fan-oy),
      var(--fan-ox) var(--fan-oy),
      var(--fan-ox) var(--fan-oy),
      var(--fan-ox) var(--fan-oy)
    );
    transform: rotate(calc(var(--fan-rot) * -1)) scale(0.9);
    filter: blur(2px);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes fanExit {
  0% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(0deg) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    clip-path: polygon(
      var(--fan-ox) var(--fan-oy),
      var(--fan-ox) var(--fan-oy),
      var(--fan-ox) var(--fan-oy),
      var(--fan-ox) var(--fan-oy)
    );
    transform: rotate(var(--fan-rot)) scale(0.88);
    filter: blur(2px);
  }
}

.fullscreen-panel {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  border-radius: 30px;
  overflow: hidden;
  padding: 24px;
}

.no-padding {
  padding: 0;
}

.glass-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

/* Timeline */
.timeline-screen {
  display: block;
}

.timeline-canvas-wrap {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.28) 42%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.timeline-canvas-wrap.full-bleed {
  inset: 0;
}

#timelineCanvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

#timelineCanvas.dragging {
  cursor: grabbing;
}

.timeline-canvas-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 22;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #334155;
}

.timeline-scale {
  position: absolute;
  left: 128px;
  bottom: 18px;
  z-index: 22;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #506079;
}

.timeline-scale span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b8def, #8b5cf6);
}

.timeline-drawer {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 380px;
  z-index: 30;
  border-radius: 28px;
  padding: 18px;
  transform: translateX(calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s var(--ease-apple), opacity 0.32s var(--ease-apple);
}

.timeline-drawer.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #243149;
  border: 1px solid #e6edf8;
  box-shadow: none;
}

.drawer-close:hover {
  background: white;
}

.timeline-drawer-content {
  height: 100%;
  overflow-y: auto;
  padding: 8px 4px 4px 4px;
}

.timeline-drawer-content h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.timeline-drawer-content p {
  margin: 7px 0;
  line-height: 1.75;
  color: #334155;
}

.timeline-placeholder {
  color: var(--muted);
  line-height: 1.8;
  padding-top: 28px;
}

.detail-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.detail-tag {
  font-size: 12px;
  color: var(--primary);
  background: #eef4ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.timeline-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.timeline-action-btn {
  flex: 1;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 13px;
}

.timeline-action-btn.secondary {
  background: linear-gradient(135deg, #35b6d8 0%, #5b8def 100%);
}

.related-block {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e6edf8;
}

.related-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #43516a;
}

.related-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.related-chip {
  font-size: 12px;
  color: #566b92;
  background: #f3f7ff;
  border: 1px solid #dfe8fb;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: none;
}

.related-chip-btn {
  cursor: pointer;
}

/* Map */
#page-map .fullscreen-panel {
  background: transparent;
}

#map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.map-tools-floating {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 500;
  border-radius: 24px;
  padding: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

select,
input,
button {
  border: 1px solid #dce6f2;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
  transition:
    transform 0.25s var(--ease-apple),
    box-shadow 0.25s var(--ease-apple),
    background 0.25s var(--ease-apple),
    border-color 0.25s var(--ease-apple);
}

select,
input {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

select:focus,
input:focus {
  border-color: #bfd4ff;
  box-shadow: 0 0 0 4px rgba(91, 141, 239, 0.08);
}

button {
  cursor: pointer;
  border: none;
  color: white;
  background: linear-gradient(135deg, #b9d8ff 0%, #ffd6c8 100%);
  box-shadow: 0 10px 24px rgba(91, 141, 239, 0.24);
}

button:hover {
  transform: translateY(-1px) scale(1.01);
}

button:active {
  transform: translateY(0) scale(0.99);
}

.map-legend {
  position: absolute;
  left: 128px;
  bottom: 18px;
  z-index: 500;
  border-radius: 22px;
  padding: 14px 16px;
  min-width: 280px;
}

.legend-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
}

.legend-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #334155;
  font-size: 13px;
}

.legend-items span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.c1 {
  background: #5b8def;
}

.legend-dot.c2 {
  background: #35b6d8;
}

.legend-dot.c3 {
  background: #8b5cf6;
}

.legend-dot.c4 {
  background: #e76f96;
}

.map-side-overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 330px;
  z-index: 500;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.compact-top h3 {
  margin: 0;
  font-size: 16px;
}

.compact-top p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.map-side-divider {
  height: 1px;
  background: #e5edf8;
  margin: 14px 0;
}

.side-section-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-right: 2px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e8eef7;
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease-apple),
    box-shadow 0.28s var(--ease-apple),
    border-color 0.28s var(--ease-apple),
    background 0.28s var(--ease-apple);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(41, 66, 102, 0.08);
}

.card.active {
  border-color: #cddcff;
  box-shadow: 0 0 0 2px rgba(91, 141, 239, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
}

.tag-list {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 9px;
}

.tag {
  font-size: 12px;
  color: var(--primary);
  background: #eef4ff;
  padding: 4px 8px;
  border-radius: 999px;
}

/* AI */
.ai-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

.ai-left,
.ai-right {
  border-radius: 28px;
  padding: 20px;
  height: 100%;
}

.compact-ai-left {
  display: flex;
  flex-direction: column;
}

.ai-mini-head h2 {
  margin: 0;
  font-size: 28px;
}

.ai-mini-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.ai-suggestion-group {
  margin-top: 18px;
}

.suggestion-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.suggestion-btn {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid #dfe7f6;
  box-shadow: none;
  border-radius: 16px;
}

.suggestion-btn:hover {
  background: #f8fbff;
  border-color: #cddcff;
}

.ai-right {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 4px 6px 4px 4px;
  scroll-behavior: smooth;
}

.message {
  max-width: 86%;
  margin-bottom: 12px;
  animation: messageIn 0.32s var(--ease-apple);
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.message-inner {
  padding: 13px 15px;
  border-radius: 18px;
  line-height: 1.85;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.message.user {
  margin-left: auto;
}

.message.user .message-inner {
  border: 1.5px solid rgba(91, 141, 239, 0.55);
  background: #ffffff;
  color: var(--text);
}

.message.bot .message-inner {
  border: 1.5px solid rgba(139, 92, 246, 0.35);
  background: rgba(250, 252, 255, 0.98);
  color: var(--text);
}

.message.bot.streaming .message-inner::after {
  content: "▍";
  display: inline-block;
  margin-left: 2px;
  animation: blinkCursor 0.9s steps(1) infinite;
  color: #5b8def;
}

.chat-input-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.chat-input-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.96);
}

/* Markdown */
.markdown-body {
  color: var(--text);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4 {
  margin: 0.4em 0 0.5em;
  line-height: 1.35;
}

.markdown-body h1 {
  font-size: 1.35em;
}

.markdown-body h2 {
  font-size: 1.2em;
}

.markdown-body h3 {
  font-size: 1.08em;
}

.markdown-body p {
  margin: 0.45em 0;
}

.markdown-body ul,
.markdown-body ol {
  margin: 0.45em 0 0.45em 1.2em;
  padding: 0;
}

.markdown-body li {
  margin: 0.25em 0;
}

.markdown-body code {
  background: #eef3ff;
  border-radius: 8px;
  padding: 0.14em 0.38em;
  font-size: 0.92em;
}

.markdown-body pre {
  background: #f5f8ff;
  border: 1px solid #e1e8f7;
  border-radius: 14px;
  padding: 12px;
  overflow-x: auto;
  margin: 0.6em 0;
}

.markdown-body pre code {
  background: transparent;
  padding: 0;
}

.markdown-body blockquote {
  margin: 0.6em 0;
  padding: 0.5em 0.8em;
  border-left: 3px solid #bfd1ff;
  background: #f8fbff;
  color: #45536b;
  border-radius: 10px;
}

.markdown-body a {
  color: #4f7eea;
  text-decoration: none;
}

.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.6em 0;
  font-size: 0.95em;
}

.markdown-body th,
.markdown-body td {
  border: 1px solid #e3eaf8;
  padding: 8px 10px;
  text-align: left;
}

.markdown-body hr {
  border: none;
  border-top: 1px solid #e6edf8;
  margin: 12px 0;
}

.entity-link {
  display: inline-block;
  margin: 0 2px;
  padding: 0 7px;
  font-size: 0.92em;
  line-height: 1.7;
  border-radius: 999px;
  border: 1px solid #cfdcff;
  background: #eef4ff;
  color: #305db8;
  cursor: pointer;
  box-shadow: none;
  vertical-align: baseline;
}

.entity-link:hover {
  background: #e4efff;
}

/* FAB */
.fab-nav {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 2000;
}

.fab-main {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.fab-menu {
  position: absolute;
  left: 8px;
  bottom: 78px;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) rotate(-8deg);
  transform-origin: 24px calc(100% + 48px);
  transition: all 0.34s var(--ease-apple);
}

.fab-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(0deg);
}

.fab-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
}

/* Leaflet */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 10px 28px rgba(42, 66, 105, 0.1) !important;
}

.leaflet-control-zoom a {
  border: none !important;
  color: #243149 !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 16px;
}

.leaflet-popup-content {
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .ai-panel {
    grid-template-columns: 1fr;
  }

  .map-side-overlay {
    width: 300px;
  }

  .timeline-drawer {
    width: 340px;
  }
}

@media (max-width: 900px) {
  .map-side-overlay {
    display: none;
  }

  .floating-title {
    max-width: calc(100vw - 40px);
  }

  .floating-title-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .timeline-drawer {
    width: min(86vw, 340px);
  }

  .timeline-scale {
    display: none;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 70px 12px 12px;
  }

  .fullscreen-panel {
    height: calc(100vh - 82px);
    border-radius: 22px;
  }

  .typing-title {
    font-size: 26px;
    min-height: 40px;
  }

  .ai-mini-head h2 {
    font-size: 24px;
  }

  .island-hint {
    max-width: calc(100vw - 40px);
  }

  .map-tools-floating {
    right: 12px;
  }

  .map-tools-floating input {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-enter-fan,
  .page-exit-fan,
  .bg-orb,
  .floating-title,
  .message {
    animation: none !important;
    transition: none !important;
  }
}
