/* ===== ALPHA BANNER (game.html) ===== */
.alpha-banner {
  background: linear-gradient(90deg, #7c3aed, #e63946);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 20px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  z-index: 1001;
}

.alpha-banner a {
  color: #fff;
}

/* ===== ALPHA BADGE (footer) ===== */
.alpha-badge {
  background: linear-gradient(90deg, #7c3aed, #e63946);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* ===== LOGIN ALPHA BANNER ===== */
.login-alpha-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #7c3aed, #e63946);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  z-index: 1000;
  letter-spacing: 0.3px;
}

/* ===== ALPHA PILL (login box) ===== */
.alpha-pill {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid #7c3aed;
  color: #a78bfa;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ===== LOGIN HINT & FOOTER ===== */
.login-hint {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.login-hint a {
  color: var(--accent);
  text-decoration: none;
}

.login-hint a:hover {
  text-decoration: underline;
}

.login-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px;
  font-size: 12px;
  color: var(--text-muted);
  z-index: 1;
}

.login-footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.login-footer a:hover {
  color: var(--accent);
}

/* ===== PANEL INHALTE ===== */
.panel-section {
  margin-bottom: 20px;
}

.panel-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.panel-section p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-item {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 16px 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.doc-nav-btn {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.doc-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.changelog-entry {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.changelog-version {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.changelog-entry ul {
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}