@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/JetBrainsMono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/JetBrainsMono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg-dark: #0d0d0d;
  --bg-card: #151515;
  --text-main: #c8c8c8;
  --text-dim: #707070;
  --accent-red: #e63946;
  --accent-red-dim: #8b1e27;
  --border-color: #252525;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.7;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* subtle scanline overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

.container {
  max-width: 680px;
  width: 100%;
}

.header {
  border-left: 3px solid var(--accent-red);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}

.site-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.impressum-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 0.4rem;
}

.section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.section-label {
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.section-value {
  color: var(--text-main);
  font-size: 0.95rem;
}

.section-value.highlight {
  color: var(--accent-red);
}

.section-divider {
  color: var(--accent-red-dim);
  margin: 0 0.3rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-prefix {
  color: var(--text-dim);
  font-size: 0.8rem;
  min-width: 80px;
}

.contact-value {
  color: var(--text-main);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.disclaimer .highlight {
  color: var(--accent-red);
  font-weight: 700;
}

.footer-line {
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-version {
  font-size: 0.7rem;
  color: var(--accent-red-dim);
  font-family: monospace;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
    font-size: 13px;
  }

  .site-title {
    font-size: 2rem;
  }

  .impressum-title {
    font-size: 0.85rem;
  }

  .section {
    padding: 1.2rem;
  }

  .footer-line {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
