header {
  text-align: center;
  padding: 40px 15px 25px 15px;
}

header h1 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: var(--muted);
}

.updates-container {
  max-width: 900px;
  max-height: 500px;
  margin: 40px auto;
  padding: 25px;
  border-radius: var(--radius);
  background-color: var(--panel);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


.update-entry {
  border-left: 4px solid var(--accent);
  padding: 15px 20px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
}

.update-entry:last-child {
  margin-bottom: 0;
}

.update-entry h2 {
  color: var(--accent);
  margin-bottom: 8px;
}

.update-entry .meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.update-entry ul {
  margin-left: 20px;
  list-style: disc;
}

.update-entry li {
    margin-bottom: 5px;
}

/* Fehler melden Box */
.error-box {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  padding: 25px;
  border-radius: var(--radius);
  background-color: var(--panel);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.error-box h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

.error-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: bold;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.3s ease;
}

.error-box a:hover {
  background: var(--accent2);
}

.error-box img {
  width: 24px;
  height: 24px;
}

/* Zurück Link */
.back-link {
  text-align: center;
  margin: 40px 0 80px 0;
}

.back-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: var(--accent2);
}






