:root {
  color-scheme: light;
  --bg-1: #1f3b5b;
  --bg-2: #f2c879;
  --card: rgba(255, 250, 240, 0.92);
  --text: #1c2230;
  --muted: #5e6472;
  --line: rgba(28, 34, 48, 0.12);
  --shadow: 0 24px 80px rgba(14, 25, 40, 0.26);
  --accent: #8b5e34;
  --accent-2: #d17b27;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 220, 146, 0.34), transparent 28%),
    linear-gradient(135deg, var(--bg-1), #284c73 38%, var(--bg-2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.35;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  width: min(680px, 100%);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.potato {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4dc, #f1c66e);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  font-size: 2rem;
}

.eyebrow {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.fact {
  margin: 0;
  padding: 22px 24px;
  border-left: 5px solid var(--accent-2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, #8d5b2f, #d17b27);
  box-shadow: 0 10px 24px rgba(145, 85, 24, 0.24);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(28, 34, 48, 0.14);
}

.meta {
  margin: 18px 2px 0;
  color: var(--muted);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  font-size: 0.92rem;
}

@media (max-width: 540px) {
  .card {
    padding: 22px;
    border-radius: 22px;
  }

  .badge-row {
    gap: 12px;
  }

  .potato {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}
