/* CHANGELOG SPEZIFISCH */
.changelog-container {
  max-width: 900px;
  margin: 0 auto;
}

.month-header {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff3b3b; /* Dein Racing-Rot */
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  border-left: 2px solid #2a2f3b; /* Dunklere Linie für den Dark Mode */
  margin-left: 15px;
  padding-left: 35px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -44px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #0f1115; /* Gleiche Farbe wie Body */
  border: 3px solid #ff3b3b;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.4); /* Leichter Glow-Effekt */
}

.timeline-content {
  background: #151922; /* Passend zu deinem Header */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2a2f3b;
  transition: transform 0.2s ease;
}

.timeline-content:hover {
  transform: translateX(5px); /* Kleiner Interaktionseffekt */
  border-color: #ff3b3b;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.date {
  font-family: 'Courier New', monospace;
  color: #888;
  font-size: 0.9rem;
}

.badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
}

.badge-new { background: #1b4332; color: #74c69d; }
.badge-fix { background: #4a1111; color: #ff8a8a; }

.timeline-content h3 {
  margin: 0 0 10px 0;
  color: #eaeaea;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
}

.timeline-content ul li {
  margin-bottom: 8px;
  color: #b0b0b0;
  position: relative;
  padding-left: 20px;
}

.timeline-content ul li::before {
  content: "•";
  color: #ff3b3b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.changelog-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.changelog-links a {
  color: #ff3b3b;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  border-bottom: 1px transparent;
}

.changelog-links a:hover {
  text-decoration: underline;
}