/* Roadmap spezifische Stile */
.roadmap-content {
    padding: 20vh;
    position: relative;
    background: none;
}

.roadmap {
    width: 100%; /* Nimmt die gesamte Breite ein */
    margin: 2rem 0; /* Entfernt Zentrierung, nur vertikaler Abstand */
    overflow-x: auto; /* Ermöglicht horizontales Scrollen */
    scrollbar-width: none; /* Versteckt Scrollbar in Firefox */
    -ms-overflow-style: none; /* Versteckt Scrollbar in IE/Edge */
}

.roadmap::-webkit-scrollbar {
    display: none; /* Versteckt Scrollbar in Chrome/Safari */
    scroll-behavior: smooth; /* Sanftes Scrollen */
}

.timeline-horizontal {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    width: max-content; /* Passt sich der Breite der Inhalte an */
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff6200, #DC143C);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    width: 250px;
    margin: 0 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #ff6200;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.past::before {
    top: -30px;
    background: green;
}

.timeline-item.future::before {
    bottom: -30px;  
    background: red;
}

.timeline-date {
    font-size: 1.2rem;
    color: #ff6200;
    font-weight: bold;
    margin: 0.5rem 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #ffffff;
}
.timeline-content p {
    font-size: 1rem;
    color: #cccccc;
}

.timeline-now {
    position: relative;
    width: 150px;
    text-align: center;
    margin: 0 1rem;
    z-index: 1;
}

.timeline-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #DC143C;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-now span {
    position: relative;
    display: inline-block;
    z-index: 3;
    background: #2a2a2a;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.2rem;
    color: #ff6200;
    font-weight: bold;
}

/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
        width: 100%;
        padding: 1rem;
    }

    .timeline-horizontal::before {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 90%;
        margin: 1rem 0;
        text-align: left;
    }

    .timeline-item::before {
        top: 50%;
        left: -25px;
        transform: translateY(-50%);
    }

    .timeline-item.past::before,
    .timeline-item.future::before {
        top: 50%;
        bottom: auto;
    }

    .timeline-now {
        width: 100%;
        margin: 1rem 0;
    }

    .timeline-now::before {
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
    }

    .timeline-now span {
        margin-left: 40px;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html {
    height: 100%;
}

/* Partikelanimation */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header/Navbar */
header {
    background-color: #2a2a2a;
    padding: 1rem;
    position: sticky; /* Sticky Navbar */
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff6200;
}

h1 {
    font-size: 3rem;
    color: #ff6200;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Logo */
.logo img {
    height: 200px;
    max-height: 150px;
    width: auto;
    vertical-align: middle;
}

.navbar a i {
    font-size: 1.5em;
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar a i:hover {
    color: #086bc7;
}

/* Footer */
footer {
    background-color: #2a2a2a;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Index.html spezifische Stile */
.main-content {
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Entferne den alten Hintergrund, da wir ein Video verwenden */
.main-content::before {
    display: none; /* Entfernt das statische Bild */
}

/* Video-Hintergrund */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero {
    position: relative;
    z-index: 1;
}

.main-content p,
.hero p,
.info-item p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.download-btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #FF2400, #DC143C); /* Scarlet zu Crimson */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.1s;
    animation: pulse 2s infinite;
}

.download-btn:hover {
    background: linear-gradient(45deg, #DC143C, #FF2400);
    transform: scale(1.05);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn.secondary {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #ff6200;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn.secondary:hover {
    background-color: #444444;
}

.info-bar {
    background-color: #2a2a2a;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid #ff6200;
    border-bottom: 1px solid #ff6200;
}

.info-item {
    max-width: 300px;
}

.info-item h2 {
    font-size: 1.5rem;
    color: #ff6200;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1rem;
    color: #cccccc;
}

/* Diashow für Launcher-Previews */
.diashow {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 1rem 0;
    background: #2a2a2a;
    margin-bottom: 60px; /* Abstand zum Footer */;
}

.diashow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.diashow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Verlängert auf 1s für sanfteren Übergang */
}

.diashow-slide.active {
    opacity: 1;
}

.diashow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.diashow-prev,
.diashow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.diashow-prev:hover,
.diashow-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.diashow-prev {
    left: 10px;
}

.diashow-next {
    right: 10px;
}

/* Team.html spezifische Stile */
.tooltip {
    display: block;
    position: absolute;
    color: #b6b7b7;
    background: #18191c;
    padding: 0.4rem;
    border-radius: 3px;
    max-width: 150px;
    width: max-content;
    font-size: 0.9rem;
    transform: scale(0);
    transition: 0.055s ease-in-out transform;
    z-index: 10;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
}

.tooltip-up {
    bottom: 42px;
}

.tooltip-up::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #18191c;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #6d5cff;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
    font-size: 0.85rem;
    transition: 0.2s ease-in-out;
    margin-top: 12px;
}

.btn:hover {
    background-color: #4752c4;
}

.card-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    overflow-y: scroll;
    scrollbar-width: none; /* Unsichtbare Scrollbar */
    -ms-overflow-style: none;
    z-index: 0;
}

.card-container::-webkit-scrollbar {
    display: none; /* Unsichtbare Scrollbar in Chrome/Safari */
}

.card {
    background: #292b2f;
    width: 345px;
    max-height: 95%;
    height: max-content;
    border-radius: 9px;
    box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.2);
    scrollbar-width: none;
}

.card::-webkit-scrollbar {
    display: none;
}

.card-header .banner {
    width: 100%;
    height: 60px;
    background: #ff8527;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.card-header .banner-img {
    width: 100%;
    height: 120px;
    background-position: center !important;
    background-size: 100% auto !important;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.card-body {
    padding: 15px;
    position: relative;
}

.card-body .profile-header {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: calc(100% - 30px);
    top: -50px;
}

.card-body .profile-header .profil-logo {
    position: relative;
    border: 6px solid #292b2f;
    border-radius: 50%;
}

.card-body .profile-header .profil-logo img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.card-body .profile-header .profil-logo::before {
    content: "See Profile";
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
    color: #eeeeee;
    background: #0000007e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    transition-duration: 0.15s;
}

.card-body .profile-header .profil-logo:hover::before {
    opacity: 1;
}

.card-body .profile-header .badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 150px;
    background: #18191c;
    border-radius: 7px;
    padding: 3px;
}

.card-body .profile-header .badges-container .badge-item {
    position: relative;
    margin: 5px;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-body .profile-header .badges-container .badge-item img {
    height: 100%;
}

.card-body .profile-header .badges-container .badge-item:hover > .tooltip {
    transform: scale(1);
}

.card-body .profile-body {
    background: #18191c;
    border-radius: 7px;
    padding: 13px;
    margin-top: 40px;
}

.card-body .profile-body .username {
    color: #eeeeee;
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-body .profile-body .username span {
    color: #b9bbbe;
}

.card-body .profile-body .username .badge {
    font-size: 0.65rem;
    background-color: #5865f2;
    text-transform: uppercase;
    font-weight: 300;
    width: max-content;
    padding: 2px 5px;
    margin-left: 5px;
    border-radius: 3px;
}

.card-body .profile-body hr {
    border: none;
    border-top: 0.5px solid #33353b;
}

.card-body .profile-body .category-title {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.card-body .profile-body .basic-infos {
    margin-bottom: 14px;
    margin-top: 12px;
}

.card-body .profile-body .basic-infos p {
    color: #bdbebf;
    font-size: 0.9rem;
}

.card-body .profile-body .basic-infos p a {
    color: #02a5e6;
    text-decoration: none;
}

.card-body .profile-body .basic-infos p a:hover {
    text-decoration: underline;
}

.card-body .profile-body .basic-infos p b {
    color: #ddd;
}

.card-body .profile-body .roles {
    margin-bottom: 14px;
}

.card-body .profile-body .roles .roles-list {
    display: flex;
    flex-wrap: wrap;
}

.card-body .profile-body .roles .roles-list .role {
    background: #292b2f;
    color: #f5f5f5;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 300;
    padding: 3px 6px;
    margin-right: 4px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.card-body .profile-body .roles .roles-list .role p {
    margin: 0;
    font-size: 0.85rem;
    color: #f5f5f5;
}

.card-body .profile-body .roles .roles-list .role .role-color {
    position: relative;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-right: 5px;
}

.card-body .profile-body .roles .roles-list .role .role-color:hover::before {
    content: "✖";
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 0.65rem;
    color: #f5f5f5;
    background: #292b2f;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.card-body .profile-body .roles .roles-list .role-add {
    cursor: pointer;
}

.card-body .profile-body .note textarea {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    min-height: 30px;
    color: #e0e0e0;
    resize: none;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 5px;
    box-sizing: border-box;
    scrollbar-width: none;
}

.card-body .profile-body .note textarea::-webkit-scrollbar {
    display: none;
}

.card-body .profile-body .note textarea::placeholder {
    font-size: 0.8rem;
}

.card-body .profile-body .note textarea:focus::placeholder {
    opacity: 0;
}

.card-body .profile-body .message input {
    background: transparent;
    outline: none;
    border: 1.2px solid #4b4b4b;
    padding: 13px;
    width: 100%;
    border-radius: 4px;
    color: #eeeeee;
    margin-top: 14px;
}

.nitro-card {
    position: relative;
    background-image: linear-gradient(0, #05172e, #114aa7);
    background-blend-mode: multiply;
    background-color: #0000006c;
}

.nitro-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -5px;
    border-radius: 12px;
    background: linear-gradient(0, #05172e, #114aa7);
}

.nitro-card .card-body .profile-body {
    background: #18191c91;
}

.nitro-card .card-body .profile-header .profil-logo {
    position: relative;
    border-color: transparent;
    z-index: 0;
}

.nitro-card .card-body .profile-header .profil-logo:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -6px;
    border-radius: 50%;
    background-color: #082553;
}

.nitro-card .card-body .profile-header .badges-container {
    background: #18191c77;
}

.nitro-card .card-body .profile-body .roles .roles-list .role {
    background: #18191c4d;
    border: 1px solid #3f4149;
}

/* Trichter-Layout für team.html */
.owners {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-members {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Media Queries für Mobilfreundlichkeit */
@media screen and (max-width: 768px) {
    /* Header und Navbar */
    header {
        padding: 0.5rem;
    }

    h1 {
        font-size: 2rem; /* Kleinere Schriftgröße für "Launcher" */
        gap: 0.3rem;
    }

    .logo img {
        max-height: 100px; /* Kleineres Logo */
    }

    .navbar {
        flex-direction: column; /* Navbar-Links untereinander stapeln */
        gap: 1rem;
        align-items: center;
    }

    .navbar a {
        font-size: 1rem;
    }

    .navbar a i {
        font-size: 1.2em; /* Kleinere Icons */
    }

    /* Index.html Anpassungen */
    .main-content {
        padding: 1rem;
    }

    .main-content p,
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .buttons {
        flex-direction: column; /* Buttons untereinander stapeln */
        gap: 0.5rem;
    }

    .download-btn,
    .btn.secondary {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
        width: 100%; /* Volle Breite für bessere Bedienbarkeit */
        max-width: 300px; /* Begrenzte Breite */
    }

    /* Diashow */
    .diashow-container {
        height: 200px;
    }

    .diashow-prev,
    .diashow-next {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .info-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .info-item {
        max-width: 100%;
    }

    .info-item h2 {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    /* Team.html Anpassungen */
    .card-container {
        padding: 10px 0;
    }

    .card {
        width: 90%; /* Karten nehmen fast die volle Breite */
        max-width: 345px;
    }

    .card-header .banner {
        height: 50px;
    }

    .card-header .banner-img {
        height: 100px;
    }

    .card-body {
        padding: 10px;
    }

    .card-body .profile-header {
        width: calc(100% - 20px);
        top: -40px;
    }

    .card-body .profile-header .profil-logo {
        border-width: 4px;
    }

    .card-body .profile-header .profil-logo img {
        width: 60px;
        height: 60px;
    }

    .card-body .profile-header .profil-logo::before {
        font-size: 0.6rem;
    }

    .card-body .profile-header .badges-container {
        max-width: 120px;
    }

    .card-body .profile-header .badges-container .badge-item {
        width: 12px;
        height: 12px;
    }

    .card-body .profile-body {
        padding: 10px;
        margin-top: 30px;
    }

    .card-body .profile-body .username {
        font-size: 1.1rem;
    }

    .card-body .profile-body .username .badge {
        font-size: 0.55rem;
        padding: 1px 4px;
    }

    .card-body .profile-body .category-title {
        font-size: 0.7rem;
    }

    .card-body .profile-body .basic-infos p {
        font-size: 0.8rem;
    }

    .card-body .profile-body .roles .roles-list .role {
        font-size: 0.75rem;
        padding: 2px 5px;
    }

    .card-body .profile-body .roles .roles-list .role p {
        font-size: 0.75rem;
    }

    .card-body .profile-body .roles .roles-list .role .role-color {
        width: 9px;
        height: 9px;
    }

    .card-body .profile-body .roles .roles-list .role .role-color:hover::before {
        font-size: 0.55rem;
        width: 12px;
        height: 12px;
    }

    .card-body .profile-body .note textarea {
        font-size: 0.7rem;
    }

    .card-body .profile-body .message input {
        padding: 10px;
        font-size: 0.8rem;
    }

    /* Trichter-Layout */
    .owners {
        flex-direction: column; /* Inhaber untereinander */
        gap: 10px;
    }

    .team-members {
        gap: 10px;
    }
}

/* Media Queries für team.html (anpassen) */
@media screen and (max-width: 1470px) {
    .card-container {
        width: 100%;
    }
    .card:last-child {
        display: block; /* Karten auf Mobilgeräten anzeigen */
    }
}

@media screen and (max-width: 1150px) {
    .card-container {
        width: 100%;
    }
    .card:nth-child(3) {
        display: block;
    }
}

@media screen and (max-width: 770px) {
    .card-container {
        width: 100%;
    }
    .card:nth-child(2) {
        display: block;
    }
}

/* Demo-Elemente für team.html */
.modal-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    visibility: hidden;
}

.modal {
    position: relative;
    background: #18191c;
    border-radius: 5px;
    transform: scale(0);
    transition: 0.1s ease-in-out all;
    border: 1px solid #2d2d2d;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal .modal-header {
    color: #eee;
    padding: 15px;
    background: #1f2024;
    border-bottom: 1px solid #2d2d2d;
}

.modal .modal-header a {
    text-decoration: none;
    color: #d6d6d6;
    transition-duration: 0.2s;
    border-bottom: 1px dotted #d6d6d6;
}

.modal .modal-header a:hover {
    color: #fff;
    border-bottom: 1px solid #f87610;
}

.modal .modal-body {
    padding: 15px;
    width: 100%;
}

.modal .modal-body input {
    width: 100%;
    padding: 10px;
    border: 1px solid #2d2d2d;
    border-radius: 3px;
    background: #18191c;
    outline: none;
    color: #eee;
    transition: 0.2s all;
}

.modal .modal-body input::placeholder {
    color: #a1a1a1;
}

.modal .modal-body input:hover {
    background: #141414;
}

.modal .modal-body input:focus {
    background: #141414;
}

.modal .modal-body .feedback-state {
    display: none;
    color: #fff;
    font-size: 0.8rem;
    padding-top: 7px;
    z-index: 100;
    transition: 0.2s all;
}

.modal .modal-body .feedback-state.success {
    display: block;
    color: #50f750;
}

.modal .modal-body .feedback-state.error {
    display: block;
    color: #ee4c4c;
}

.active {
    visibility: visible;
}

.active .modal {
    transform: scale(1);
}

.help-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s all;
    background: #4a4b4d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-btn:hover {
    background: #f87610;
}

/* Media Queries für Demo-Elemente auf Mobilgeräten */
@media screen and (max-width: 768px) {
    .modal {
        width: 90%;
        margin: 0 5%;
    }

    .modal .modal-header {
        padding: 10px;
        font-size: 0.9rem;
    }

    .modal .modal-body {
        padding: 10px;
    }

    .modal .modal-body input {
        padding: 8px;
        font-size: 0.8rem;
    }

    .modal .modal-body .feedback-state {
        font-size: 0.7rem;
    }

    .help-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.disclaimer-text p {
    color: red;
}
/* Discord-Button */
.discord-btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #5865F2, #7289DA); /* Discord-Blau Farbverlauf */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, transform 0.1s;
    animation: pulse 2s infinite; /* Gleiche Puls-Animation wie beim Download-Button */
}

.discord-btn:hover {
    background: linear-gradient(45deg, #7289DA, #5865F2); /* Umgekehrter Farbverlauf beim Hover */
    transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
}

/* Responsive Anpassungen für den Discord-Button */
@media screen and (max-width: 768px) {
    .discord-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
        width: 100%; /* Volle Breite für bessere Bedienbarkeit */
        max-width: 300px; /* Begrenzte Breite */
    }
}
/* Main-Container für Privacy Policy */
main {
    position: relative;
    flex: 1 0 auto; /* Lässt den Main-Bereich wachsen, um den Platz zu füllen */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Inhalt oben ausrichten */
    padding: 0 1rem; /* Normaler Abstand rechts und links */
}

/* Footer immer am unteren Rand */
footer {
    background-color: #2a2a2a;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    flex-shrink: 0; /* Verhindert, dass der Footer schrumpft */
    position: relative; /* Stellt sicher, dass der Footer über den Partikeln liegt */
    z-index: 2; /* Footer über den Partikeln */
    width: 100%;
}

/* Partikelanimation einschränken, sodass sie den Footer nicht überlappt */
#particles-js {
    position: absolute;
    width: 100%;
    height: calc(100% - 60px); /* Höhe minus Footer-Höhe (ca. 60px) */
    top: 0;
    left: 0;
    z-index: 0; /* Hinter der Box und dem Footer */
    overflow: hidden; /* Verhindert, dass Partikel außerhalb sichtbar sind */
}

/* Privacy Policy Box (unverändert, aber zur Vollständigkeit) */
.privacy-box {
    max-width: 800px; /* Maximale Breite der Box */
    margin: 2rem auto; /* Zentriert die Box horizontal mit Abstand oben/unten */
    padding: 2rem; /* Innenabstand für den Inhalt */
    background: rgba(42, 42, 42, 0.8); /* Halbtransparenter Hintergrund (dunkelgrau) */
    backdrop-filter: blur(10px); /* Blur-Effekt für den Hintergrund */
    -webkit-backdrop-filter: blur(10px); /* Für Safari-Unterstützung */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Leichter Schatten für Tiefe */
    position: relative; /* Für z-Index */
    z-index: 1; /* Stellt sicher, dass die Box über den Partikeln liegt */
}

/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
    .privacy-box {
        max-width: 90%; /* Auf kleineren Bildschirmen schmaler */
        padding: 1.5rem;
        margin: 1rem auto;
    }

    main {
        padding: 0 0.5rem;
    }

    #particles-js {
        height: calc(100% - 50px); /* Anpassung für kleinere Footer-Höhe auf Mobilgeräten */
    }
}
.download-count {
    margin-top: 1rem;
    text-align: center;
}

.download-count p {
    font-size: 1.1rem;
    color: #cccccc;
}

.download-count span {
    color: #ff6200; /* Orange, passend zum Design */
    font-weight: bold;
}

/* Responsive Anpassungen */
@media screen and (max-width: 768px) {
    .download-count p {
        font-size: 0.9rem;
    }
}