/* Allgemeine Elemente */
body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    background-color: #000;
    color: #ccc;
  }
  
  a {
    color: #00ccff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Blinken */
  .blinken {
    animation: blinken 1s steps(2, start) infinite;
    color: #ff0000;
  }
  
  /* Container-Layout */
  .container {
    display: flex;
    min-height: 100vh;
  }
  
  /* Geld (hervorgehobene Preise oder Beträge) */
  .geld {
    color: #ffd700;
    font-weight: bold;
  }
  
  /* Gelber Text */
  .gelb {
    color: #ffd700;
    font-weight: bold;
  }
  
  /* Hauptinhalt */
  .content {
    flex: 1;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
  }
  
  .content h1,
  .content h2 {
    color: #00ff99;
  }
  
  /* Letzte Aktualisierung */
  .last-update {
    font-size: 0.9em;
    color: #888;
    text-align: right;
    margin-top: -1.5em;
    margin-bottom: 2em;
  }
  
  /* Logo */
  .logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px #00ff99);
    margin-bottom: 2rem;
  }
  
  /* Schatten-Effekt */
  .schatten {
    text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
    color: #00ff99;
  }
  
  /* Seitenleiste (linkes Menü) */
  .sidebar {
    width: 15%;
    background-color: #000;
    padding: 1rem;
    box-sizing: border-box;
    border-right: 1px solid #333;
  }
  
  .sidebar h3 {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 1em;
  }
  
  .sidebar li {
    margin: 0;
    padding: 0.1em 0;
    line-height: 1.2em;
  }
  
  .sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  /* Trennlinie im Menü */
  .trennlinie {
    height: 0.8em;
    line-height: 0;
    margin: 0;
    padding: 0;
  }
  
  /* Blink-Animation */
  @keyframes blinken {
    to {
      visibility: hidden;
    }
  }

  .logo img[src*="blarks_de.png"] {
    filter: none !important;
  }

  .no-shadow {
    filter: none !important;
  }

  .glow {
    filter: drop-shadow(0 0 10px #00ff99);
  }

  #system-info {
    font-size: 0.9em;
  }


 /* Für das kreisförmige Bild */
.image-circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  width: 40vw;           /* oder jede gewünschte Größe */
  aspect-ratio: 1 / 1;
  border-radius: 50%;    /* perfekter Kreis */
  overflow: hidden;      /* alles außerhalb des Kreises abschneiden */
  background: none;      /* sicherstellen, dass kein Hintergrund gesetzt ist */
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-circle-container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.8);
}

.circular-image {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* füllt den Kreis komplett */
  object-position: center;
  display: block;
}

/* Anpassung für mobile Geräte */
@media (max-width: 768px) {
  .image-circle-container {
    /* Kleinere relative Breite auf kleinen Bildschirmen */
    width: 40vw; 
    margin: 15px auto;
  }
}