/* Grundlegendes dunkles Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/Poppins/Poppins-Bold.ttf') format('woff');
}

body {
    font-family: Poppins-Bold;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

header {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    color: #ff5656;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
nav {
    width: 100%;
    background-color: #222;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}
nav a {
    color: #ffae42;
    text-decoration: none;
    font-size: 1.1em;
    padding: 5px 10px;
    transition: background-color 0.3s;
}
nav a:hover {
    background-color: #333;
    border-radius: 5px;
}
.content {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}
.youtube-stats {
    margin-top: 20px;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 8px;
    color: #ffae42;
}
.youtube-stats h2 {
    font-size: 1.5em;
    color: #ff5656;
}
/* Weitere CSS-Klassen für den Video-Bereich usw. */

/* Grundlegendes dunkles Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
header {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    color: #ff5656;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
nav {
    width: 100%;
    background-color: #222;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}
nav a {
    color: #ffae42;
    text-decoration: none;
    font-size: 1.1em;
    padding: 5px 10px;
    transition: background-color 0.3s;
}
nav a:hover {
    background-color: #333;
    border-radius: 5px;
}
.content {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}
/* Modal-Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.modal-content {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    text-align: left;
    color: #e0e0e0;
    position: relative;
}
.modal-content h2 {
    margin-bottom: 15px;
    color: #ff5656;
}
.modal-content p {
    margin-bottom: 10px;
    line-height: 1.5;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5656;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
}
.close-modal:hover {
    background: #ff7575;
}

.close {
    color: #ff5656;
    float: right;
    font-size: 1.5em;
    cursor: pointer;
}
.youtube-stats h2 {
    font-size: 1.5em;
    color: #ff5656;
}

.email-link {
    font-size: 0.9em;
    color: #ff5656;
    text-decoration: none;
}

    .description {
        text-align: center;
        padding: 20px;
        font-size: 1.2em;
        color: #b0b0b0;
    }

    .video-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .video-item {
        width: 300px;
        background-color: #333;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .video-item:hover {
        transform: scale(1.05);
    }

    .thumbnail {
        width: 100%;
        height: 180px;
        cursor: pointer;
    }

    .video-title {
        padding: 10px;
        font-size: 1em;
        text-align: center;
        color: #ffae42;
    }

    footer {
        background-color: #1f1f1f;
        padding: 20px;
        text-align: center;
        width: 100%;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
        margin-top: auto; /* stellt sicher, dass der Footer unten bleibt */
    }

    .footer-content h3 {
        color: #ffae42;
    }

    .footer-content ul {
        list-style: none;
        padding: 0;
    }

    .footer-content ul li {
        margin: 10px 0;
    }

    .footer-content a {
        color: #ffae42;
        text-decoration: none;
        transition: color 0.3s;

    }

    .footer-content a:hover {
        color: #ff5656; /* Ändert die Farbe beim Hover */
    }