:root {
  --background: #f6f7f2;
  --surface: #ffffff;
  --text: #18211d;
  --muted: #66716b;
  --soft: #eef2ea;
  --accent: #25785b;
  --accent-soft: #dcebe3;
  --line: #dfe5dc;
  --ball: #d9f15f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 120, 91, 0.08), transparent 32%),
    linear-gradient(180deg, #fbfcf8 0%, var(--background) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
}

.brand,
.language {
  font-size: 0.95rem;
  text-decoration: none;
}

.brand {
  color: var(--text);
  font-weight: 780;
}

.language {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

main {
  display: grid;
  align-items: center;
  padding: 42px 0 56px;
}

.coming-soon {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.content {
  max-width: 680px;
}

.status {
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.intro {
  max-width: 560px;
  margin: 26px 0 0;
  color: #3f4b45;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.details {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.details p,
.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.details strong {
  color: var(--text);
}

.court-preview {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 49.2%, rgba(255, 255, 255, 0.82) 49.2% 50.8%, transparent 50.8%),
    linear-gradient(180deg, transparent 49.2%, rgba(255, 255, 255, 0.82) 49.2% 50.8%, transparent 50.8%),
    linear-gradient(145deg, #2f8e69, #86bea0);
  box-shadow: 0 28px 80px rgba(24, 33, 29, 0.13);
}

.court-preview::before,
.court-preview::after {
  content: "";
  position: absolute;
  right: 12%;
  left: 12%;
  height: 1px;
  background: rgba(255, 255, 255, 0.76);
}

.court-preview::before {
  top: 25%;
}

.court-preview::after {
  bottom: 25%;
}

.court-line {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
}

.ball {
  position: absolute;
  top: 23%;
  right: 21%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ball);
  box-shadow: 0 14px 30px rgba(24, 33, 29, 0.22);
}

.site-footer {
  padding: 0 0 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .coming-soon {
    grid-template-columns: 1fr;
  }

  .court-preview {
    min-height: 260px;
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding: 22px 0;
  }

  main {
    padding: 26px 0 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .court-preview {
    min-height: 220px;
    border-radius: 18px;
  }
}
