/* Pure Chaos Radio - Main Styles */
/* Colors: bg #0a0a0f, card #12121a, accent #cc0000, text #e0e0e0 */

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

:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --bg3: #1a1a24;
  --accent: #cc0000;
  --accent2: #ff2222;
  --text: #e0e0e0;
  --text-dim: #888;
  --text-muted: #555;
  --border: #222230;
  --radius: 8px;
  --font: 'Barlow', Arial, sans-serif;
}

html { font-size: 14px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* -- Navigation -- */
.topnav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  height: 56px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; min-width: 160px; padding-right: 16px; }
.logo-svg { height: 36px; width: auto; }
.nav-links { display: flex; gap: 0; margin-left: auto; }
.nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 18px 20px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent2);
  border-bottom-color: var(--accent);
  text-decoration: none;
}
.nav-admin { color: var(--text-muted); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* -- Layout -- */
.main-content {
  flex: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 24px;
  width: 100%;
}
.layout-3col {
  display: grid;
  grid-template-columns: 380px 1fr 320px;
  gap: 24px;
  align-items: start;
}

/* -- Cards -- */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

/* -- Player -- */
.player-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.live-badge {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.player-nowplaying {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}
.np-art {
  width: 56px; height: 56px;
  background: var(--bg3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  border: 2px solid var(--border);
  animation: spin 8s linear infinite;
  animation-play-state: paused;
}
.np-art.playing { animation-play-state: running; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.np-info { display: flex; flex-direction: column; }
.np-title { font-weight: 700; font-size: 1rem; }
.np-artist { font-size: 0.85rem; color: var(--text-dim); }
.np-sep { color: var(--text-dim); }
.np-loading { color: var(--text-dim); opacity: 0.7; }
.np-info.has-np .np-title { color: var(--accent2); }

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-play {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform .15s;
}
.btn-play:hover { transform: scale(1.08); }
.player-volume {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vol-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  outline: none;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}
.player-links {
  margin-top: 12px;
  display: flex;
  gap: 16px;
}
.player-link {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.player-link:hover { color: var(--accent2); }

/* -- Stream Info -- */
.info-row {
  display: flex;
  justify-content: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-label { color: var(--text-dim); }
.status-online { color: #4caf50; }
.status-offline { color: var(--accent); }

/* -- Wunschbox -- */
.form-row { margin-bottom: 10px; }
.form-input, .form-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; }

.btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-block { width: 100%; }
.btn-sm { padding: 4px 12px; font-size: 0.75rem; }
.btn-icon {
  background: none; border: none; color: var(--text-muted);
  font-size: 1rem; cursor: pointer; padding: 2px 8px;
}
.btn-icon:hover { color: var(--accent); }
.btn-link {
  color: var(--accent2);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 8px;
}
.btn-link:hover { color: var(--accent); }
.btn-remove { color: var(--text-muted); font-size: 0.9rem; }
.btn-remove:hover { color: #ff4444; }
.form-msg { margin-top: 8px; font-size: 0.85rem; }
.form-msg.success { color: #4caf50; }
.form-msg.error { color: var(--accent); }

.wunschbox-off {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
}
.wunschbox-off p { margin-top: 8px; }

/* -- Socials -- */
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.9rem;
  padding: 6px 0;
}
.social-link:hover { color: var(--accent2); text-decoration: none; }

/* -- Schedule -- */
.schedule-today { display: flex; flex-direction: column; gap: 4px; }
.sched-entry {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 0.9rem;
}
.sched-time { color: var(--accent); font-weight: 700; min-width: 110px; }
.sched-title { font-weight: 600; }
.sched-dj { color: var(--text-dim); font-size: 0.85rem; }
.sched-repeat { color: var(--text-muted); font-size: 0.8rem; font-style: italic; }
.sched-repeat-badge {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-left: 4px;
}

.schedule-full { display: flex; flex-direction: column; gap: 16px; }
.schedule-day { border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.schedule-day:last-child { border-bottom: none; }
.day-title { color: var(--accent); font-size: 1rem; margin-bottom: 8px; }
.day-entries { display: flex; flex-direction: column; gap: 4px; }
.sched-entry-full {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 6px 8px;
  background: var(--bg3);
  border-radius: 4px;
  font-size: 0.9rem;
}

/* -- DJ List Mini -- */
.dj-list-mini { display: flex; flex-direction: column; gap: 6px; }
.dj-mini { display: flex; align-items: center; gap: 10px; }
.dj-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

/* -- Team -- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--accent);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder-logo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.avatar-placeholder-logo svg { width: 60%; height: 60%; }
.team-name { font-size: 1.1rem; font-weight: 700; }
.team-bio { color: var(--text-dim); font-size: 0.9rem; margin-top: 6px; }
.team-roles { display: flex; gap: 6px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }

/* -- Avatar Logo Fallback -- */
.dj-avatar-fallback { background: var(--bg3); display: flex; align-items: center; justify-content: center; }
.dj-avatar-fallback svg { width: 60%; height: 60%; }
.dj-admin-avatar-fallback { background: var(--bg3); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.dj-admin-avatar-fallback svg { width: 60%; height: 60%; }

/* -- Admin -- */
.admin-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
.page-header { margin-bottom: 24px; }
.page-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.btn-logout {
  background: var(--bg3);
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
}
.btn-logout:hover { border-color: var(--accent); color: var(--accent); }

.admin-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.tab {
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.schedule-day-edit {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.day-entries-edit { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.entry-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.form-time { width: 100px; flex-shrink: 0; }
.form-dj-select { width: 140px; flex-shrink: 0; }
.form-repeat { width: 120px; flex-shrink: 0; }
.admin-actions { margin-top: 16px; }

.form-inline { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.form-inline .form-input { flex: 1; min-width: 140px; }

.dj-admin-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg3);
  border-radius: 4px;
  margin-bottom: 4px;
}

.settings-group { display: flex; flex-direction: column; gap: 16px; }
.settings-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
}
.settings-toggle { accent-color: var(--accent); width: 20px; height: 20px; }

.bewerbung-card {
  background: var(--bg3);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 8px;
}
.bewerbung-card strong { display: block; margin-bottom: 4px; }

/* -- Login -- */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}
.card-login { width: 360px; max-width: 90vw; }
.login-logo { text-align: center; margin-bottom: 16px; }
.center { text-align: center; }
.form-input-pin { text-align: center; font-size: 1.4rem; letter-spacing: 0.3em; }
.alert {
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.alert-error { background: rgba(204,0,0,.15); color: var(--accent2); border: 1px solid rgba(204,0,0,.3); }

/* -- Footer -- */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* -- Page specific -- */
.muted { color: var(--text-muted); font-size: 0.9rem; }
.sr-only { position: absolute; left: -9999px; }

/* -- ON AIR block -- */
.card-onair { border-left: 3px solid var(--accent); }
.onair-block { display: flex; flex-direction: column; gap: 10px; }
.onair-live { display: flex; align-items: center; gap: 8px; }
.onair-live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s infinite; }
.onair-live-text { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); }
.onair-show { display: flex; flex-direction: column; gap: 4px; }
.onair-title { font-size: 1.3rem; font-weight: 900; color: var(--text); }
.onair-dj { font-size: 1rem; font-weight: 700; color: var(--accent2); }
.onair-time { font-size: 0.85rem; color: var(--text-dim); }
.onair-repeat-badge { display: inline-block; background: var(--bg3); border: 1px solid var(--border); border-radius: 3px; padding: 2px 8px; font-size: 0.75rem; color: var(--text-muted); font-style: italic; align-self: flex-start; }
.onair-none { text-align: center; padding: 20px; color: var(--text-muted); }
.onair-none p { margin-top: 8px; }

/* -- Upcoming list -- */
.upcoming-list { display: flex; flex-direction: column; gap: 6px; }
.upcoming-entry { display: flex; gap: 8px; align-items: baseline; padding: 6px 8px; background: var(--bg3); border-radius: 4px; font-size: 0.9rem; flex-wrap: wrap; }

/* -- Activity Board -- */
.activity-list { display: flex; flex-direction: column; gap: 10px; }
.activity-dj { display: flex; gap: 12px; align-items: flex-start; }
.activity-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg3); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
.activity-info { display: flex; flex-direction: column; gap: 2px; }
.activity-name { font-weight: 700; font-size: 1rem; }
.activity-bio { font-size: 0.85rem; color: var(--text-dim); }
.activity-roles { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.role-badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.role-admin { background: rgba(204,0,0,.2); color: var(--accent2); border: 1px solid rgba(204,0,0,.3); }
.role-sendeplan { background: rgba(0,100,200,.15); color: #5599ff; border: 1px solid rgba(0,100,200,.25); }

/* -- Admin: DJ roles checkboxes -- */
.chk-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-dim); cursor: pointer; margin-right: 14px; }
.chk-label input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; margin: 0; }
.dj-admin-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dj-admin-name { font-weight: 700; font-size: 1rem; }
.dj-admin-bio { font-size: 0.8rem; color: var(--text-muted); }
.dj-admin-roles { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }

/* -- DJ Avatar images -- */
.dj-avatar-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); flex-shrink: 0; }
.dj-mini-info { display: flex; flex-direction: column; }
.dj-roles-inline { display: flex; gap: 4px; flex-wrap: wrap; }
.activity-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
.onair-dj-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 6px; border: 1px solid var(--accent); }
.dj-admin-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.dj-admin-avatar-placeholder { background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); font-size: 1rem; }
.dj-admin-left { display: flex; gap: 12px; align-items: flex-start; flex: 1; }
.dj-avatar-upload { display: flex; align-items: center; gap: 8px; margin-top: 4px; }

/* -- Ticker / Laufband in NAV -- */
.nav-ticker { flex: 1; overflow: hidden; height: 56px; display: flex; align-items: center; margin: 0 20px; min-width: 0; }
.nav-ticker-track { overflow: hidden; width: 100%; }
.nav-ticker-content { display: inline-flex; white-space: nowrap; align-items: center; animation: nav-ticker-scroll 25s linear infinite; width: max-content; }
.nav-ticker-content:hover { animation-play-state: paused; }
@keyframes nav-ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-now { color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.ticker-item-text { color: var(--text-dim); font-size: 0.85rem; }
.ticker-sep { color: var(--accent); opacity: 0.4; font-size: 0.7rem; margin: 0 8px; }

/* -- Schedule -- */
.ticker-admin-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; background: var(--bg3); border-radius: 4px; margin-bottom: 4px; }
.ticker-edit-input { flex: 1; }

/* -- News -- */
.news-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.news-item:last-child { border-bottom: none; }
.news-date { font-size: 0.75rem; color: var(--text-muted); }
.news-title { font-size: 1rem; font-weight: 700; margin: 2px 0; }
.news-body { font-size: 0.9rem; color: var(--text-dim); }
.news-admin-item { padding: 8px 10px; background: var(--bg3); border-radius: 4px; margin-bottom: 6px; }
.news-admin-header { display: flex; align-items: center; gap: 8px; }
.news-admin-header strong { flex: 1; }
.news-admin-body { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

/* -- Admin: Wunschbox -- */
.wunsch-admin-item { padding: 8px 10px; background: var(--bg3); border-radius: 4px; margin-bottom: 6px; display: flex; flex-direction: column; gap: 2px; }
.wunsch-time { font-size: 0.7rem; color: var(--text-muted); }

/* -- Admin: Projekt Download -- */
.admin-header-right { display: flex; align-items: center; gap: 8px; }
.admin-header-left { display: flex; align-items: center; gap: 12px; }
.admin-user-badge { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-dim); background: var(--bg3); padding: 4px 10px; border-radius: 4px; }
.admin-user-avatar { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }

/* -- Admin: DJ username/PIN -- */
.dj-admin-username { font-size: 0.8rem; color: var(--accent2); font-weight: 600; }
.dj-pin-change { display: flex; align-items: center; gap: 6px; }

/* -- Login -- */
.form-label { display: block; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 4px; font-weight: 600; }
.login-hint { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

/* -- Upload dir ensure */ 
/* (no css needed) */

/* -- Captcha -- */
.captcha-row { background: var(--bg3); border-radius: 4px; padding: 10px 12px; }
.captcha-box { display: flex; align-items: center; gap: 8px; }
.captcha-question { font-weight: 700; font-size: 1rem; color: var(--accent); background: var(--border); padding: 6px 14px; border-radius: 4px; white-space: nowrap; font-family: 'Courier New', monospace; letter-spacing: 2px; }
.captcha-input { width: 80px !important; text-align: center; font-weight: 700; font-size: 1.1rem; }

/* -- Responsive -- */

/* ========== FOOTER LAYOUT ========== */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-right {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.footer-copy {
  color: var(--text-dim, #666);
  font-size: 0.8rem;
}
.footer-link {
  color: var(--text-dim, #666);
  font-size: 0.8rem;
}
.footer-link:hover {
  color: #fff;
  text-decoration: none;
}


/* ========== WUNSCHBOX ENTRIES ========== */
.wunschbox-entries { max-height: 260px; overflow-y: auto; margin-top: 12px; }
.wunsch-entry { padding: 8px 0; border-bottom: 1px solid var(--border); }
.wunsch-entry:last-child { border-bottom: none; }
.wunsch-name { font-weight: 700; color: #ff8800; font-size: 0.85rem; }
.wunsch-song { display: block; font-weight: 600; color: var(--accent2); font-size: 0.85rem; margin-top: 2px; }
.wunsch-msg { margin: 4px 0 0; font-size: 0.85rem; color: var(--text-dim); word-wrap: break-word; }
.wunsch-time { font-size: 0.7rem; color: var(--text-muted); }
.wunschbox-empty { color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 16px 0; }
.form-row-inline { display: flex; gap: 8px; }
.form-row-inline .form-input { flex: 1; }

/* ========== SHOUTBOX ========== */
.card-shoutbox { }
.shoutbox-entries { max-height: 300px; overflow-y: auto; margin-top: 12px; }
.shout-entry { padding: 8px 0; border-bottom: 1px solid var(--border); }
.shout-entry:last-child { border-bottom: none; }
.shout-name { font-weight: 700; color: var(--accent2); font-size: 0.85rem; }
.shout-time { color: var(--text-muted); font-size: 0.75rem; margin-left: 8px; }
.shout-msg { margin: 4px 0 0; font-size: 0.85rem; color: var(--text); word-wrap: break-word; }
.shoutbox-empty { color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 20px 0; }


/* ========== IMPRESSUM ========== */
.impressum { line-height: 1.7; }
.impressum h3 { font-size: 0.95rem; font-weight: 700; color: var(--accent); margin: 18px 0 6px; letter-spacing: 0.04em; }
.impressum p { font-size: 0.9rem; color: var(--text); margin-bottom: 8px; }
.impressum strong { color: var(--text); }
.impressum a { color: var(--accent2); }
.impressum a:hover { text-decoration: underline; }

/* ========== FOOTER LINKS ========== */
.footer-link { color: var(--text-dim); font-size: 0.8rem; margin-right: 12px; }
.footer-link:hover { color: var(--accent2); text-decoration: none; }

/* ========== COOKIE CONSENT - DSGVO ========== */
/* removed per user request */


/* ========== MENU NAV ROW (below main nav) ========== */
nav.topnav-menu {
  position: static !important;
  top: auto !important;
  z-index: 99;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
}
nav.topnav-menu .nav-inner {
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 36px;
  justify-content: flex-start;
}
nav.topnav-menu .nav-links {
  display: flex !important;
  gap: 28px;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  flex-direction: row !important;
  background: transparent !important;
  border: none !important;
  min-width: auto !important;
}
nav.topnav-menu .nav-link {
  font-size: 0.82em;
  padding: 6px 0;
  letter-spacing: 0.5px;
}
nav.topnav-menu .nav-toggle {
  display: none !important;
}
@media (max-width: 700px) {
  .cookie-banner-inner { padding: 16px; }
  .cookie-banner-btns { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
  .cookie-option-desc { margin-left: 0; }
}
