body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
}
header {
  background: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #444;
}
header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #e63946;
}
nav a {
  color: #f5f5f5;
  margin-left: 1.5rem;
  text-decoration: none;
}
nav a:hover {
  color: #e63946;
}
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: url('https://i.imgur.com/VtS85Zn.jpg') no-repeat center center/cover;
  color: white;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.content {
  position: relative;
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 18px;
  background:
    url('images/overlay.png') repeat,
    rgba(20,20,20,0.90); /* optional: zusätzliche Abdunkelung */
  box-shadow: 0 0 20px #000a;
  z-index: 2;
}

.content h3 {
  color: #e63946;
}
footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}

.status-panel {
    background-color: #1a1a1a;
    border: 2px solid #ff0000;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.status-header {
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

.status-icon {
    width: 16px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}
