body {
    font-family: Arial, sans-serif;
    background-color: #101218;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Volle Bildschirmhöhe */
}

.container {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 620px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0px 20px 0px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.banner {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1,h2,h3,h4,h5,h6 {
  color:#152732;
  font-weight: bold;
  line-height: 1.3;
  margin:0.5rem 0;
}

h1 {font-size:1.8rem;}
h2 {font-size:1.4rem;}
h3 {font-size:1.1rem;}
h4 {font-size:0.8rem;}


p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

li {
    padding:0; 
    margin: 0; 
    list-style-position: inside;
    list-style-type: none;
    }
    
ul,ol {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    
}


.buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 18px 0;
    margin: 6px;
    width: 100%;
    max-width: 580px;
    height: 25px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 6px;
}

.btn i {
    font-size: 26px;
    margin-right: 12px;
}

/* Farben für Buttons */
.youtube { background-color: #ff0000; }
.multistream { background-color: #E2591D }
.twitch { background-color: #9146ff; }
.tiktok { background-color: #000000; }
.facebook { background-color: #1877f2; }
.telegram { background-color: #0088cc; }
.instagram { background-color: #e4405f; }
.discord { background-color: #5865f2; }
.paypal { background-color: #ffd140;  }
.shop { background-color: #ff9900; }
.whatsapp { background-color: #25D366; }
.spotify { background-color: #1ed760;  }
.more { background-color: #555555; }

.btn:hover {
    opacity: 0.8;
}

/* Impressum & Datenschutz */
.legal-links {
    margin-top: 20px;
    font-size: 14px;
}

.legal-links a {
    text-decoration: none;
    color: #666;
    font-weight: bold;
    margin: 0 10px;
}

.legal-links a:hover {
    color: #007bff;
}

.legal-links span {
    color: #999;
}

/* Verbesserte Darstellung auf Handys */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        width: 95%;
        padding
