:root {
  --bg: #0b0d10;
  --bg-card: #15181c;
  --text: #f4f4f4;
  --text-muted: #9aa0a6;
  --accent: #F8F32B;
  --instagram: #E1306C;
  --tiktok: #00f2ea;
  --youtube: #FF0000;
  --facebook: #1877F2;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "DejaVu Sans", Verdana, Geneva, sans-serif;
  font-weight: bold;
}
body {
  display: flex;
  justify-content: center;
  padding: 24px;
}
body.home {
  align-items: center;
  min-height: 100vh;
}

.card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}
body.impressum .card {
  max-width: 480px;
  text-align: left;
}

.logo {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
body.impressum .logo {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.logo span { color: var(--accent); }

.logo-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 24px;
}

.tagline {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
}
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }
.instagram .icon { color: var(--instagram); }
.tiktok .icon { color: var(--tiktok); }
.youtube .icon { color: var(--youtube); }
.facebook .icon { color: var(--facebook); }

footer {
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 13px;
}
footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 8px;
}
footer a:hover { color: var(--text); }

h1 {
  font-size: 22px;
  margin-bottom: 20px;
}
.box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
  font-weight: normal;
}
.box h2 {
  font-size: 15px;
  margin: 0 0 10px;
  color: var(--text-muted);
  font-weight: bold;
}
.box p {
  margin: 0 0 4px;
  line-height: 1.5;
}
.box a {
  color: var(--text);
}
.back {
  display: inline-block;
  margin-top: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}
.back:hover { color: var(--text); }
