/* Grundlegende Stile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #121212;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #1f1f1f;
    padding: 10px 20px;
    color: #e0e0e0;
    text-align: center;
}

header .logo img {
    display: block;
    max-width: 160px; /* Logo doppelt so groß */
    height: auto;
    margin: 0 auto;
}

/* Responsive Anpassung für größere Bildschirme */
@media (min-width: 768px) {
    header .logo img {
        max-width: 200px; /* Noch etwas größer auf Tablets */
    }
}

main {
    flex: 1;
    text-align: center;
    padding: 20px 20px; /* Weniger Abstand nach oben */
}

.hero p {
    font-size: 1.2em;
    margin-top: 10px; /* Abstand zum Header weiter verringert */
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    text-align: center;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0); /* Start ohne Glow */
}

/* Farbschema für Buttons */
.btn.twitch { background: #9146FF; box-shadow: 0 0 10px rgba(145, 70, 255, 0.7); }
.btn.tiktok { background: #69C9D0; box-shadow: 0 0 10px rgba(105, 201, 208, 0.7); }
.btn.kofi { background: #FF5E5B !important; box-shadow: 0 0 10px rgba(255, 94, 91, 0.7); }
.btn.instagram { background: #E1306C; box-shadow: 0 0 10px rgba(225, 48, 108, 0.7); }
.btn.whatsapp { background: #25D366; box-shadow: 0 0 10px rgba(37, 211, 102, 0.7); }

/* Hover-Effekte mit stärkerem Glow */
.btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

/* Streaming-Plan */
.schedule-section {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 80px; /* Mehr Platz nach unten, damit der Footer nichts überdeckt */
}

.schedule-section h2 {
    font-size: 1.8em;
    color: #ffffff; /* Jetzt weiß */
    margin-bottom: 15px;
}

.schedule-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Maximalgröße für den Streaming-Plan auf großen Bildschirmen */
@media (min-width: 768px) {
    .schedule-image {
        max-width: 600px; /* Begrenzung der Größe auf Tablets und größere Bildschirme */
    }
}

/* Footer */
footer {
    background: #1f1f1f;
    color: #e0e0e0;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #69C9D0;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
