@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400&family=Inter:wght@300;400&display=swap');

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

body {
  background: #0a0a0a;
  color: #f0ebe3;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  position: relative;
}

/* Subtle red circle — like a rising sun */
.sun-circle {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: min(70vw, 500px);
  height: min(70vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188,0,45,0.5) 0%, rgba(188,0,45,0.17) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(3rem, 12vw, 7rem);
  letter-spacing: 0.15em;
  color: #f0ebe3;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.romaji {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #BC002D;
  margin-bottom: 3rem;
  font-weight: 300;
}

.divider {
  width: 40px;
  height: 1px;
  background: rgba(240,235,227,0.2);
  margin: 0 auto 2.5rem;
}

.message {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: rgba(240,235,227,0.45);
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 2;
  font-weight: 300;
}

.coming {
  margin-top: 3.5rem;
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(240,235,227,0.2);
}

.flag {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  opacity: 0.25;
}
