* {
  -webkit-user-select: text;
  user-select: text;
  -webkit-tap-highlight-color: transparent;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: visible;
  -webkit-touch-callout: none;
}
a, img {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}
input, textarea, select, [data-selectable="true"] {
  -webkit-user-select: text !important;
  user-select: text !important;
  font-size: 16px !important;
}
#app-splash {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(148, 163, 184, 0.16), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  z-index: 9999;
  transition: opacity 220ms ease;
}
#app-splash.is-visible {
  display: flex;
}
#app-splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.app-splash__panel {
  width: min(280px, calc(100vw - 48px));
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  text-align: center;
  display: grid;
  gap: 10px;
}
.app-splash__mark {
  width: 68px;
  height: 68px;
  margin: 0 auto 6px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  color: #fff;
  font: 900 1.2rem/1 "Outfit", sans-serif;
  letter-spacing: -0.04em;
}
.app-splash__panel strong {
  font: 900 1.05rem/1.2 "Outfit", sans-serif;
  color: #0f172a;
  letter-spacing: -0.04em;
}
.app-splash__panel span {
  font: 700 0.82rem/1.5 "Outfit", sans-serif;
  color: #475569;
}
.app-splash__panel strong,
.app-splash__panel span {
  display: none;
}
.app-splash__skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}
.app-splash__skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: app-splash-shimmer 1.35s ease-in-out infinite;
}
.app-splash__skeleton-title {
  width: 132px;
  height: 16px;
  margin: 2px auto 0;
}
.app-splash__skeleton-line {
  width: 196px;
  height: 10px;
  margin: 0 auto;
}
.app-splash__skeleton-line--short {
  width: 148px;
}
@keyframes app-splash-shimmer {
  100% {
    transform: translateX(100%);
  }
}
