@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --bg: #0d0f14;
  --surface: #171a22;
  --surface-2: #1f2430;
  --border: #2a3040;
  --text: #f0ede6;
  --text-muted: #9aa1b0;
  --amber: #f5a428;
  --amber-dark: #d6890f;
  --blue: #5aa9e6;
  --blue-soft: rgba(90, 169, 230, 0.14);
  --teal: #3ec9a7;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito Sans', -apple-system, 'Segoe UI', sans-serif;
}

.font-display { font-family: 'Chakra Petch', ui-monospace, monospace; }

/* Warmes Vignette-Glühen wie eine Wecker-Anzeige im Dunkeln */
.clock-glow {
  background: radial-gradient(circle, rgba(245, 164, 40, 0.16) 0%, rgba(245, 164, 40, 0) 70%);
  filter: blur(6px);
}

.device-frame {
  background: #05070a;
  border: 10px solid #05070a;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 30px 60px -20px rgba(0,0,0,0.7);
  overflow: hidden;
}
.device-frame img { display: block; width: 100%; height: auto; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.before-after-old { border-color: rgba(255,255,255,0.08); }
.before-after-new { border-color: rgba(245, 164, 40, 0.35); }

::selection { background: rgba(245, 164, 40, 0.25); color: var(--text); }
