:root {
  --ink: #1c2430;
  --ink-soft: #4a5568;
  --paper: #ffffff;
  --accent: #2f6f5e;
  --accent-soft: #e4f2ec;
  --line: #e6e9ee;
  --shadow: 0 20px 60px -20px rgba(28, 36, 48, 0.25);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #f4f6f5;
  position: relative;
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, #f7f4ec 0%, #eef3ee 45%, #e7f0ea 100%);
}

.glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(47, 111, 94, 0.14) 0%, rgba(47, 111, 94, 0) 65%);
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header {
  text-align: center;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.date {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

.card {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}

.pos {
  margin: 0 0 8px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.word {
  margin: 0;
  font-size: clamp(38px, 8vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.phonetic {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--accent);
  font-family: "Georgia", serif;
}

.definition {
  margin: 26px auto 0;
  max-width: 480px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}

.example {
  margin: 28px 0 0;
  padding: 18px 22px;
  background: var(--accent-soft);
  border-radius: 12px;
  text-align: left;
}

.example-text {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}

.details {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.chips {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips li {
  background: #f1f4f2;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13.5px;
  padding: 6px 12px;
  border-radius: 999px;
}

.site-footer {
  margin-top: 28px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}

@media (max-width: 480px) {
  .card {
    padding: 32px 22px 28px;
  }
}
