.service-bulletin {
  max-width: 600px;
  margin: 0 auto;
}

.bulletin-header {
  display: flex;
  justify-content: space-between;
  font-family: 'TX-02', monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border);
}

.bulletin-title {
  font-family: 'TX-02', monospace;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bulletin-title .section-number {
  margin-right: 0;
}

.bulletin-message {
  margin: 2rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-left: 3px solid var(--accent);
  font-style: italic;
}

@keyframes blink {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.blink {
  animation: blink 1.5s infinite;
}
