:root {
  --bg-start: #f6f1e7;
  --bg-end: #dfe7da;
  --panel: rgba(255, 255, 255, 0.72);
  --text: #1f2a1f;
  --shadow: rgba(31, 42, 31, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 38%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.content {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(18px, 4vw, 30px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 28px;
  box-shadow: 0 24px 60px var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-image {
  display: block;
  width: min(100%, 560px);
  max-height: 72vh;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.visitor-counter {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  line-height: 1.5;
}

#visit-count {
  font-weight: 700;
  font-size: 1.15em;
}

@media (max-width: 600px) {
  .page {
    padding: 16px;
  }

  .content {
    border-radius: 22px;
    gap: 16px;
  }

  .hero-image {
    max-height: 58vh;
  }
}
