/* ===== 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;
}

/* ===== DOC TABLE ===== */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}
.doc-table th {
  background: var(--bg-dark);
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.doc-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.doc-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 767px) {
 
  /* Panels schmaler auf Mobile */
  .panel-section h3 { font-size: 12px; }
  .panel-section p  { font-size: 12px; }
 
  /* FAQ auf Mobile */
  .faq-question { font-size: 12px; padding: 10px 12px; }
  .faq-answer   { font-size: 12px; padding: 8px 12px 10px; }
 
  /* Doc-Nav wrappen */
  .doc-nav { gap: 4px; }
  .doc-nav-btn { font-size: 11px; padding: 4px 8px; }
 
  /* Changelog */
  .changelog-entry { padding: 10px 12px; }
  .changelog-entry ul { font-size: 12px; }
 
  /* Doc-Tabelle scrollbar */
  .doc-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 12px;
  }
 
  /* Wachen-Übersicht Grid auf Mobile */
  .wachen-vehicle-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 6px;
    padding: 8px;
  }
 
  .wachen-vehicle-card { padding: 6px 8px; }
  .wachen-block-header { padding: 10px 12px; }
}