body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #292929;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Hauptinhalt nimmt restlichen Platz ein */
main {
    flex: 1; /* Füllt den verfügbaren Platz zwischen Header und Footer */
}

.logo a {
    text-decoration: none;
    color: inherit; /* Übernimmt die Standardfarbe des Headers */
}

.logo a:hover {
    color: #e67e22; /* Ändert die Farbe beim Hover */
}

.background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild über den ganzen Bildschirm strecken */
    filter: blur(8px); /* Unschärfe anwenden */
    transform: scale(1.1); /* Das Bild leicht vergrößern, damit es über den Rand hinausgeht */
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Hintergrund bleibt hinter dem Inhalt */
    overflow: hidden;
}

a:link {
    text-decoration: none;
    color: #f39c12;
}

.header {
    background-color: #1f1f1f;
    color: #f39c12;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.header .logo h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #f39c12;
    font-size: 24px;
    transition: color 0.3s;
    text-shadow:
    0 0 10px,
    0 0 20px,
    0 0 40px,
    0 0 80px,
    0 0 120px,
    0 0 160px;
    border-radius: 5px;
}

.nav ul li a:hover {
    color: #ffffff;
}

.hero {
    
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f39c12;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    text-align: center;
    text-shadow:
    0 0 10px,
    0 0 20px,
    0 0 40px;
    border-radius: 5px;
}

.hero h2 {
    font-size: 48px;
    margin: 0;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

.connect-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 20px 30px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    transition: background-color 0.3s, transform 0.3s;
    animation: pulse 2s infinite;
}

.connect-btn:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}



.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #1f1f1f;
    border-top: 4px solid #f39c12;
}

.feature {
    text-align: center;
    width: 250px;
    background-color: #292929;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.feature img {
    max-width: 80px;
    margin-bottom: 15px;
    filter: brightness(0.8);
}

.feature h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #f39c12;
    font-weight: bold;
}

.feature p {
    font-size: 16px;
    color: #bdc3c7;
}

.feature-2 {
    text-align: center;
    width: 500px;
    background-color: #292929;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.feature-2 img {
    max-width: 80px;
    margin-bottom: 15px;
    filter: brightness(0.8);
}

.feature-2 h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #f39c12;
    font-weight: bold;
}

.feature-2 p {
    font-size: 16px;
    color: #bdc3c7;
}

.gallery-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #1f1f1f;
    color: #f39c12;
    border-top: 4px solid #f39c12;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}

.contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #1f1f1f;
    color: #f39c12;
    border-top: 4px solid #f39c12;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 16px;
    color: #bdc3c7;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    background-color: #292929;
    color: #ffffff;
    font-size: 14px;
}

.contact-form button {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}




/* Box für Werbung mit Rahmen */
.wb-container {
    background-color: #1f1f1f; /* Hintergrundfarbe */
    color: #f39c12;
    padding: 20px;
    border: 2px solid #f39c12; /* Rahmen */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    width: 100%;


}

/* Titel der Werbung */
#wb-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Beschreibung der Werbung */
#wb-description {
    font-size: 16px;
    color: #bdc3c7;
    margin-bottom: 20px;
}

/* Link-Button in der Werbung */
#wb-link {
    display: inline-block;
    font-size: 16px;
    color: #f39c12;
    text-decoration: none;
    background-color: #292929;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#wb-link:hover {
    background-color: #444;
    color: #fff;
}

/* Button für nächste Werbung */
.next-wb-btn {
    padding: 10px 20px;
    background-color: #292929;
    color: #f39c12;
    border: 2px solid #f39c12; /* Rahmen */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 10px;
}

.next-wb-btn:hover {
    background-color: #f39c12;
    color: #292929;
}



.server-status-section {
    margin: 50px auto;
    padding: 20px;
    max-width: 600px;
    background-color: #292929;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#server-status p {
    font-size: 18px;
    margin: 10px 0;
}

/* Footer immer am unteren Rand */
.footer {
    background-color: #1f1f1f;
    color: #bdc3c7;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #f39c12;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

.discord-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #5865F2; /* Discord-Blau */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.discord-link:hover {
    background-color: #4752C4; /* Dunklerer Hover-Effekt */
}
