:root {
  --bg: #0e0b1f;
  --bg-soft: #181235;
  --card: #1f1840;
  --ink: #f6f3ff;
  --muted: #b3a9d9;
  --accent: #ff5da2;
  --accent-2: #4dd6ff;
  --accent-3: #ffd166;
  --radius: 18px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #2a1d5e 0%, transparent 60%),
              var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(14, 11, 31, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand-emoji { font-size: 1.5rem; }
.brand-text { letter-spacing: 0.3px; }
.nav { display: flex; align-items: center; gap: clamp(12px, 3vw, 28px); }
.nav a { text-decoration: none; color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--ink); }

.cart-btn {
  border: 0; cursor: pointer;
  background: var(--accent);
  color: #1b0f1f;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
}
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px;
  background: #1b0f1f; color: #fff;
  border-radius: 999px; font-size: 0.75rem; margin-left: 4px;
}

/* Hero */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 48px);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.kicker {
  text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
  color: var(--accent-2); margin: 0 0 8px;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; margin: 0 0 16px; }
.hero-sub { color: var(--muted); font-size: 1.1rem; }
.countdown {
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 12px 0 24px;
  color: var(--accent-3);
}
.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #1b0f1f; font-weight: 800; text-decoration: none;
  padding: 12px 22px; border-radius: 999px;
  border: 0; cursor: pointer;
}
.cta:hover { filter: brightness(1.05); }
.cta-full { width: 100%; padding: 14px; font-size: 1rem; }
.hero-blob {
  position: absolute; right: -40px; top: 20px;
  font-size: clamp(180px, 30vw, 340px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
  transform: rotate(12deg);
  opacity: 0.9;
  z-index: 1;
}

/* Shop */
.shop, .about { max-width: var(--maxw); margin: 0 auto; padding: 32px clamp(16px, 4vw, 48px) 64px; }
.section-title { font-size: clamp(1.4rem, 4vw, 2rem); margin: 0 0 24px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.card-art {
  font-size: 4rem; text-align: center;
  background: var(--bg-soft);
  border-radius: 14px; padding: 22px 0; margin-bottom: 14px;
}
.card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.card .tag { color: var(--muted); font-size: .85rem; margin: 0 0 12px; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-weight: 800; font-size: 1.1rem; }
.add-btn {
  border: 0; cursor: pointer; text-decoration: none;
  display: inline-block;
  background: var(--accent-2); color: #07222b;
  font-weight: 800; padding: 9px 14px; border-radius: 999px;
}
.add-btn:hover { filter: brightness(1.05); }
.add-btn:active { transform: scale(.96); }

/* Affiliate-Pflichthinweis */
.disclosure-bar {
  margin: 0; text-align: center;
  padding: 8px clamp(16px, 4vw, 48px);
  background: rgba(255, 209, 102, 0.12);
  color: var(--accent-3);
  font-size: 0.85rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.disclosure-note {
  color: var(--muted); font-size: 0.85rem; margin: 24px 0 0;
}
.ad-label {
  margin: 0 0 18px;
  font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.legal { display: flex; gap: 18px; justify-content: center; margin: 6px 0 12px; }
.legal a { color: var(--muted); }
.legal a:hover { color: var(--ink); }

.about p { color: var(--muted); max-width: 640px; font-size: 1.1rem; }
.steps { color: var(--muted); max-width: 640px; font-size: 1.05rem; line-height: 1.6; margin: 0; padding-left: 1.2em; }
.steps li { margin: 0 0 12px; }
.steps strong { color: var(--ink); }
.about details { max-width: 640px; border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px 0; }
.about summary { cursor: pointer; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.about details p { margin: 10px 0 0; font-size: 1rem; }
#mitmachen .cta { margin-top: 20px; }

/* Notiz-App (/notizen) */
.notes-app h1 { margin-bottom: 8px; }
.notes-status { color: var(--muted); font-size: .9rem; margin: 0 0 20px; }
.notes-gate { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.notes-app input, .notes-app textarea {
  width: 100%; max-width: 640px; box-sizing: border-box;
  background: rgba(255,255,255,.06); color: var(--ink);
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: 1rem;
}
.notes-gate input { max-width: 260px; }
.notes-app textarea { resize: vertical; margin-bottom: 12px; }
.notes-app button.cta { border: 0; cursor: pointer; }
.notes-list { list-style: none; padding: 0; margin: 28px 0 0; max-width: 640px; }
.notes-list li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 12px 14px; margin: 0 0 10px;
}
.note-text { color: var(--ink); white-space: pre-wrap; word-break: break-word; }
.note-meta { color: var(--muted); font-size: .78rem; margin-top: 6px; }

/* Footer */
.site-footer { text-align: center; padding: 32px; color: var(--muted); border-top: 1px solid rgba(255,255,255,.06); }

/* Rechts-Seiten (Impressum / Datenschutz) */
.legal-page { padding-top: 48px; }
.legal-page h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
.legal-page h2 { margin-top: 28px; }
.legal-page p { color: var(--muted); max-width: 680px; }
