/* Resets & Base */
* { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-touch-callout: none;
}
img { max-width: 100%; display: block }
a { color: var(--text); text-decoration: none }
.container { max-width: 1100px; margin: 0 auto; padding: 24px }
strong { font-weight: 600; color: var(--text) }
footer { margin: 40px 0; color: var(--muted); font-size: 14px; text-align: center }
.small { font-size: 13px; color: var(--muted) }
::selection { background: transparent }

/* Harcopy / Anti-Drag (wie gehabt) */
* { -webkit-user-select: none !important; -ms-user-select: none !important; user-select: none !important }
img { -webkit-user-drag: none; pointer-events: none !important }
@media screen {
  body:before {
    content: "";
    pointer-events: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.05);
    backdrop-filter: blur(.5px);
    z-index: 999999;
  }
}
