/* Sheepu site - minimal, modern */
:root {
  --bg: #0f0f0f;
  --fg: #f5f5f5;
  --muted: #888;
  --accent: #e8b4b8;
  --font: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
main {
  max-width: 42rem;
  width: 100%;
  text-align: center;
}

/* Home */
.hero-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.125rem;
  margin: 0 0 2rem;
}

.store-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: default;
}

/* Legal pages */
.legal-header {
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.legal-header .back {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-content {
  text-align: left;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Footer links (home) */
.footer-links {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--fg);
}
