@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #5BB8D0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-family: 'Press Start 2P', monospace;
}

canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

.center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  padding: 2rem 1.5rem;
  pointer-events: none;
}

.studio-name {
  font-size: clamp(16px, 5vw, 36px);
  color: #3a2a1e;
  line-height: 1.6;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0px #F4A7B9;
}

.coming-soon {
  font-size: clamp(6px, 1.8vw, 10px);
  color: #ffffff;
  background: #5BAF82;
  padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 20px);
  letter-spacing: 1px;
  line-height: 2;
  border: 3px solid #3a7a55;
  box-shadow: 4px 4px 0px #3a7a55;
  text-align: center;
  pointer-events: auto;
}

.byvi {
  font-size: clamp(6px, 1.5vw, 8px);
  color: #3a2a1e;
  opacity: 0.5;
  letter-spacing: 1px;
  line-height: 2;
}

@media (max-width: 480px) {
  .center { gap: 1.2rem; padding: 1.5rem 1rem; }
  .coming-soon { border-width: 2px; box-shadow: 3px 3px 0px #3a7a55; }
}