/* ─── Loading screen ─────────────────────────────────────────────────────── */

:root {
  --bg: #09090B;
  --glow: rgba(253, 202, 18, 0.12);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #F8F8F5;
    --glow: rgba(253, 202, 18, 0.08);
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
}

#loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  z-index: 9999;
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

/* App icon */
.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  object-fit: cover;
  animation: icon-breathe 3s ease-in-out infinite;
  animation-fill-mode: both;
  filter: drop-shadow(0 0 12px var(--glow));
}

@keyframes icon-breathe {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
