@font-face {
  font-family: 'BrandFont';
  src: url('fonts/Poppins-Regular.woff2') format('woff2'),
       url('fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BrandFont';
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0f0f12;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'BrandFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #f2f2f2;
}

.wrap {
  text-align: center;
}

.logo {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.msg {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #b8b8bd;
}
