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

body {
  background: black;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, Inter, sans-serif;
}

canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* Center layout */
.center {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* PNG logo via CSS background */
.logo {
  width: 260px;
  height: 120px;

  background-image: url("/fulmarlogo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  margin-bottom: 30px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

.soon {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: white;
  opacity: 0.75;
}
