:root {
  --orange: #FF7A00;
  --bg: #FFF9F3;
  --text: #1A1A2E;
  --muted: #64748B;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.back {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero { text-align: center; padding: 24px 0; }
.logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), #FFB84D);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}
.hero h1 { margin: 0 0 8px; font-size: 1.75rem; }
.sub { color: var(--muted); margin: 0; }
.content {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(255,122,0,0.1);
}
.content section { margin-bottom: 24px; }
.content h2 { font-size: 1.1rem; color: var(--orange); margin: 0 0 8px; }
.content ul { padding-left: 1.2rem; }
.content a { color: var(--orange); font-weight: 600; }
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 24px;
}
