:root {
  color-scheme: dark;
  --note-bg: #141116;
  --note-surface: #1d1820;
  --note-text: #f5f1f2;
  --note-muted: #d3c7cb;
  --note-line: #4a3f46;
  --note-accent: #e3c7c0;
  --note-accent-hover: #f2ddd7;
  --note-gold: #ead9ae;
  --landing-glow: #3a2c33;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Yu Gothic UI", "Hiragino Sans", "Meiryo", sans-serif;
  background: radial-gradient(circle at 12% 0, var(--landing-glow) 0%, var(--note-bg) 48%);
  color: var(--note-text);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(820px, 100%);
  background: linear-gradient(180deg, rgba(255, 240, 242, 0.04) 0%, rgba(255, 235, 238, 0.015) 100%), var(--note-surface);
  border: 1px solid var(--note-line);
  border-radius: 20px;
  overflow: hidden;
}

.hero {
  aspect-ratio: 16/9;
  background: #130f14;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  padding: 28px;
}

h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.3;
}

p {
  margin: 14px 0 0;
  color: var(--note-muted);
  line-height: 1.8;
}

strong {
  color: var(--note-gold);
}

.links {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.links a {
  display: block;
  text-decoration: none;
  color: var(--note-text);
  border: 1px solid var(--note-line);
  background: rgba(242, 221, 215, 0.02);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.links a:hover {
  border-color: var(--note-accent);
  color: var(--note-accent-hover);
  background: rgba(242, 221, 215, 0.06);
  transform: translateY(-1px);
}

footer {
  margin-top: 18px;
  color: var(--note-muted);
  font-size: 0.85rem;
}/*# sourceMappingURL=style.css.map */