* { box-sizing: border-box; }
body {
  margin: 0;
  background: #0a0a0a;
  color: #e8e8e0;
  font-family: 'Courier New', monospace;
}
a { text-decoration: none; }
button, input, select { font-family: inherit; }
button:hover, .btn:hover { opacity: 0.88; }
input:focus, select:focus { outline: none; border-color: #ff4500; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px 80px;
}
.logo-header {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;   /* wichtig */
  align-items: center;      /* zentriert */
  padding: 24px 12px 10px;
}
.site-logo {
  max-width: 520px;
  width: 90%;
  height: auto;
  display: block;
}
.site-subtitle {
  text-align: center;
  font-weight: 900;
  letter-spacing: .25em;
  font-size: clamp(16px, 3vw, 22px);
  margin-top: 10px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255,255,255,0.25);
}
}
.logo-text {
  font-weight: 900;
  font-size: clamp(28px, 6vw, 56px);
  color: #ff4500;
  letter-spacing: .18em;
  text-align: center;
  text-shadow: 0 0 18px rgba(255,69,0,.25);
}
.logo-text span { color: #fff; }
.home-wrap {
  width: 100%;
  max-width: 700px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
}
.hero-title {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 16px 0 32px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
}
.btn-primary { background: #ff4500; color: #fff; }
.btn-ghost { background: transparent; color: #e8e8e0; border: 1px solid #444; }
.btn-back { background: #333; border: 1px solid #555; color: #e8e8e0; width: fit-content; }
.btn-small { background: #ff4500; color: #fff; padding: 10px 14px; }
.btn-danger { background: transparent; color: #ff4444; border: 1px solid #ff444455; padding: 8px 12px; }
.hint { color: #666; margin-top: 28px; letter-spacing: .15em; }
.small { font-size: 14px; }

.card-wrap { width: 100%; display: flex; justify-content: center; }
.card {
  width: 100%;
  max-width: 420px;
  background: #111;
  border: 1px solid #222;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .2em;
  margin: 0;
  color: #ff4500;
}
.stack { display: flex; flex-direction: column; gap: 14px; }
.input {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #333;
  color: #e8e8e0;
  padding: 10px 14px;
  font-size: 16px;
}
.small-input, .slot-input { max-width: 110px; }
.admin-wrap { width: 100%; max-width: 920px; }
.admin-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.admin-title {
  flex: 1;
  margin: 0;
  color: #ff4500;
  font-size: 28px;
  letter-spacing: .2em;
}
.stat-badge {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 6px 14px;
  font-size: 14px;
  letter-spacing: .1em;
  font-weight: 700;
}
.ok-badge { border-color: #00ff88; color: #00ff88; background: #10261b; }
.danger-badge { border-color: #ff4444; color: #fff; background: #541717; }
.box {
  border: 1px solid #222;
  padding: 20px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.danger-box { border-color: #ff4444; }
.danger-text { color: #ff4444; }
.section-label {
  font-size: 13px;
  letter-spacing: .2em;
  color: #666;
  margin: 0 0 14px;
}
.grid-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.inline-form { display: flex; gap: 8px; align-items: center; }
.band-list { display: flex; flex-direction: column; gap: 8px; }
.band-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 10px 12px;
  flex-wrap: wrap;
}
.band-main { flex: 1; min-width: 150px; }
.band-name { font-weight: 900; font-size: 16px; }
.band-meta, .guest-count { font-size: 14px; color: #888; }
.guest-block { border: 1px solid #1e1e1e; margin-bottom: 16px; overflow: hidden; overflow-x: auto; }
.guest-block-header {
  background: #111;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e1e1e;
  gap: 12px;
}
.guest-band-name { font-weight: 900; letter-spacing: .1em; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid #111;
  font-size: 15px;
}
.table th {
  color: #666;
  font-size: 13px;
  letter-spacing: .15em;
}
.table tr:nth-child(even) { background: #0d0d0d; }
.empty { color: #555; text-align: center; padding: 24px; }
.small-pad { padding: 14px 16px; }
.flash-wrap { width: 100%; max-width: 920px; margin-bottom: 16px; }
.flash {
  padding: 12px 14px;
  border: 1px solid #333;
  margin-bottom: 10px;
  background: #111;
}
.flash-success { border-color: #00aa66; color: #8effc8; }
.flash-error { border-color: #ff4444; color: #ff8a8a; }
.lang-toggle {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 999;
  background: #ff4500;
  color: #fff;
  padding: 7px 14px;
  font-weight: 900;
  letter-spacing: .1em;
}
.ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff4500;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
  font-size: clamp(10px, 2.5vw, 13px);
  font-weight: 700;
}
.ticker span {
  display: inline-block;
  animation: tickerScroll 20s linear infinite;
}
@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@media (max-width: 700px) {
  .grid-form { flex-direction: column; align-items: stretch; }
  .small-input, .slot-input { max-width: 100%; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
  .btn-row .btn { width: 100%; }
  .inline-form { width: 100%; }
}
