/* Grundlegendes Design */
body {
    background-color: #121212; /* Dunkler Hintergrund */
    color: #e0e0e0; /* Heller Text */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Haupt-Container für den Inhalt */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background-color: #1e1e1e; /* Etwas helleres Grau */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 3em;
    margin: 0;
    color: #ffffff;
}

header .subtitle {
    font-size: 1.2em;
    color: #bbbbbb;
    margin-top: 5px;
}

main {
    margin-top: 40px;
}

/* --- Style für Twitch-Einbettung --- */
main iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* Sorgt für das 16:9-Format */
    border: none;
    margin-bottom: 30px; /* Etwas Abstand nach unten */
}

/* Bereich für die Links */
.links {
    margin-top: 40px;
}

.link-button {
    display: block;
    background-color: #007bff; /* Blau als Akzentfarbe */
    color: #ffffff;
    padding: 15px 20px;
    margin: 10px auto;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    max-width: 300px;
    transition: transform 0.2s ease-in-out, background-color 0.2s;
}

.link-button:hover {
    transform: scale(1.05); /* Leichter Zoom-Effekt */
    background-color: #0056b3; /* Dunkleres Blau beim Hover */
}

/* Spezifische Farben für die Buttons (optional aber schick) */
.link-button.twitch { background-color: #6441a5; }
.link-button.twitch:hover { background-color: #4a307a; }
.link-button.youtube { background-color: #ff0000; }
.link-button.youtube:hover { background-color: #cc0000; }
.link-button.twitter { background-color: #1da1f2; }
.link-button.twitter:hover { background-color: #1a91da; }
.link-button.instagram { background-color: #e4405f; }
.link-button.instagram:hover { background-color: #c13584; }
.link-button.discord { background-color: #7289da; }
.link-button.discord:hover { background-color: #5b6eae; }


/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #888888;
}