body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #111; /* Dunkler Hintergrund */
    color: #f0f0f0; /* Helle Textfarbe */
}

header {
    background-color: #b22222; /* Dunkleres Rot */
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header .logo img {
    max-width: 150px; /* Logo-Größe anpassen */
}

/* Allgemeine Stile für das Navigationsmenü */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #222; /* Dunkles Hintergrundmenü */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    transition: color 0.3s ease, transform 0.3s ease; /* Animation für Farbe und Größe */
    position: relative;
}

nav ul li a:hover {
    color: #ff4c4c; /* Heller Rotton beim Hover */
    transform: scale(1.1); /* Leichte Vergrößerung beim Hover */
}

/* Zusätzliche Hover-Animation (Unterstreichen von unten nach oben) */
nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff4c4c;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease; /* Animation der Unterstreichung */
}

nav ul li a:hover::before {
    width: 100%; /* Unterstreichung wird sichtbar */
}

/* Für kleinere Bildschirme (Responsive Design) */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}


main {
    max-width: 800px; /* Zentrale Ausrichtung */
    margin: 20px auto;
    padding: 20px;
    background-color: #222; /* Hintergrund für den Hauptbereich */
    border-radius: 8px; /* Ecken abrunden */
}

h2 {
    border-bottom: 2px solid #b22222; /* Unterstreichung der Überschrift */
    padding-bottom: 5px;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 20px 0;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #b22222; /* Dunkleres Rot für den Footer */
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

.discord-widget {
    display: flex;
    justify-content: center; /* Zentriert das Widget */
    margin: 20px 0; /* Abstand oben und unten */
    max-width: 100%; /* Maximale Breite 100% */
}

.discord-widget iframe {
    width: 100%; /* Vollständige Breite */
    height: 400px; /* Höhe des Widgets */
}

.discord-title {
    text-align: center; /* Textzentrierung */
    margin: 10px 0; /* Abstand oben und unten */
}

.notice {
    background-color: #331111; /* Dunkles Rot für den Hinweis */
    color: #fff; /* Weißer Text */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.volume-control {
    display: flex;
    flex-direction: column; /* Vertikale Anordnung für Titel und Bedienelemente */
    align-items: center; /* Elemente zentrieren */
    justify-content: center;
    background: rgba(0, 0, 0, 0.7); /* Schwarzer halbtransparenter Hintergrund */
    padding: 10px;
    border-radius: 10px;
    width: 200px; /* Breite für das Layout */
    position: fixed;
    bottom: 10%;
    right: 5%;
    transform: translateX(-50%);
}

.controls {
    display: flex; /* Horizontal nebeneinander anordnen */
    align-items: center; /* Vertikale Zentrierung */
}

#play-pause-icon, #volume-icon {
    font-size: 24px;
    margin-right: 10px;
    cursor: pointer;
    color: white;
}

#volume-slider {
    width: 100px;
    margin-left: 10px;
    background: rgb(220, 20, 60); /* Rote Farbe für den Slider */
    height: 5px;
    border-radius: 5px;
}

/* Zusätzliche Anpassungen für den Titel */
.volume-control h3 {
    margin: 0; /* Kein Abstand um den Titel */
    color: white; /* Weiße Schriftfarbe für den Titel */
}


#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgb(220, 20, 60); /* Rotes Thumb */
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgb(220, 20, 60); /* Rotes Thumb für Firefox */
    cursor: pointer;
}