/* roznedane.pl shared styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0f0f1a;
  --bg-card: #161625;
  --bg-card-hover: #1c1c30;
  --border: #2a2a40;
  --text: #e0e0e0;
  --text-muted: #888;
  --text-dim: #555;
  --accent: #e06080;
  --accent-2: #60b0e0;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
