/* Maintenance page styles */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;800&family=Inter:wght@400;500&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Inter',sans-serif;
  background:#050508;
  color:#f5f5f7;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:24px;
  text-align:center;
  overflow:hidden;
}
.bg{
  position:fixed;inset:0;z-index:0;
  background:radial-gradient(ellipse 70% 50% at 50% 50%,rgba(139,0,0,0.18) 0%,transparent 70%);
}
.content{position:relative;z-index:1;max-width:360px}
.icon{font-size:4rem;margin-bottom:24px;animation:spin 8s linear infinite}
@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
h1{font-family:'Sora',sans-serif;font-size:1.6rem;font-weight:800;margin-bottom:12px}
p{font-size:0.9rem;color:#a0a0b8;line-height:1.65}
