html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #0A0C0F;
  min-block-size: 100vh;
}

#loading-bg {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, #0F1A14 0%, #0A0C0F 70%);
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loading-logo img {
  width: min(420px, 90vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.08));
}

@keyframes logoEntry {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
