#mobile-screen {
  display: none;
  position: fixed;
  inset: 0;
  background: #090909;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 99999;
}

#mobile-screen img {
  margin-bottom: 24px;
  animation: mobile-logo-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

#mobile-screen h2 {
  margin: 0 0 8px;
  font-size: 18px;
  opacity: 0;
  animation: mobile-fade-in 0.4s ease both 0.3s;
}

#mobile-screen p {
  margin: 0;
  color: #888;
  font-size: 15px;
  opacity: 0;
  animation: mobile-fade-in 0.4s ease both 0.5s;
}

@keyframes mobile-logo-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes mobile-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
