#event-ticker {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Segoe UI', Arial, sans-serif;
  padding: 10px 15px;
  color: #f3f4f6; /* heller Text für guten Kontrast */
  background: rgba(74, 54, 14, 0.6); /* halbtransparentes Messing-Braun */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(199, 130, 44, 0.8); /* hellgoldener Schein */
}

#event-ticker h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
}

.event-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(199, 130, 44, 0.8); /* hellgold */
  font-style: italic;
  user-select: none;
}

.ticker-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.ticker-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  background: rgba(199, 130, 44, 0.15); /* hellgold halbtransparent */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(199, 130, 44, 0.3);
  padding: 16px 20px;
  transition: background 0.2s, box-shadow 0.2s;
}

.ticker-item a:hover {
  background: rgba(199, 130, 44, 0.3);
  box-shadow: 0 6px 20px rgba(199, 130, 44, 0.5);
}

.ticket-info h3 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(199, 130, 44, 0.9); /* hellgold */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #f3f4f6; /* heller Text */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  font-weight: bold;
  color: rgba(199, 130, 44, 0.9); /* hellgold */
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: rgba(199, 130, 44, 1);
}
