/* 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;
  }
}
/* Galerie: immer 4 nebeneinander */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
h1 { text-align: center; margin: 20px 0; }

/* Container für das Video und den Rahmen */
.circular-frame {
    /* Größe des Kreises definieren */
    width: 300px; 
    height: 300px;
    /* Zentrieren */
    margin: 50px auto 20px auto; 
    /* Für den Kreisschnitt */
    border-radius: 50%; 
    overflow: hidden; 
    position: relative; /* Wichtig für positionierte Overlays */
    
    /* Der feurige, blitzartige Rahmen */
    border: 5px solid #ff4500; /* Orange-Rot */
    box-shadow: 
        0 0 20px 8px rgba(255, 69, 0, 0.7), /* Außen-Glühen */
        inset 0 0 10px 3px rgba(255, 165, 0, 0.5); /* Innen-Glühen */
    
    /* Optional: Hintergrund, der die Blitze andeutet, falls das Video selbst keinen Hintergrund hat */
    background: url('pic/lava-bg.jpg') center/cover;
}

/* Video-Element im Container */
.circular-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Video den Kreis füllt */
    display: block;
}

/* Optional: Website-Name als Overlay (wie im Bild) */
.overlay-text {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #38b438; /* Grüner Neon-Effekt */
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 0 0 5px #38b438, 0 0 10px #38b438;
}

