* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100vh;
}

body {
  font-family: Georgia, serif;
  background: #16578f;
  color: #ffffff;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1040px, calc(100% - 36px));
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

.lang-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-button.is-active {
  background: rgba(255, 255, 255, 0.22);
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.mascot {
  width: min(280px, 58vw);
  max-width: 280px;
  height: auto;
  margin-bottom: 8px;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

p {
  margin-top: 14px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.04em;
}

.home-tagline {
  margin-top: 18px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-links {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

.home-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease;
}

.home-link-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.legal-page {
  background: #16578f;
  color: #ffffff;
}

.legal-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.legal-back,
.legal-page a {
  color: #d9ecff;
}

.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
}

.legal-page h1,
.legal-page h2,
.legal-page p,
.legal-page ul {
  margin: 0;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
}

.legal-date {
  margin-top: 12px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  opacity: 0.82;
}

.legal-kicker {
  margin-bottom: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  opacity: 0.72;
}

.legal-section {
  margin-top: 28px;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
}

.legal-page ul {
  padding-left: 20px;
}

@media (max-width: 560px) {
  .lang-switcher {
    gap: 6px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .home-links {
    margin-top: 26px;
  }

  .home-link-card {
    min-height: 120px;
    font-size: 1.5rem;
  }

  .mascot {
    width: min(240px, 64vw);
    max-width: 240px;
  }
}
