        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: #141414;
            color: white;
            overflow: hidden;
            scroll-behavior: smooth;
            overflow: scroll;
        }

        /* Animierter Hintergrund */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            background: rgba(88, 101, 242, 0.6);
            border-radius: 50%;
            opacity: 0.7;
            animation: float 10s infinite linear;
        }

        @keyframes float {
            from {
                transform: translateY(100vh);
            }
            to {
                transform: translateY(-10vh);
            }
        }



        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/



        /* Navigation */
        .navbar {
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: space-between;
            padding: 20px 50px;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #5865F2;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: #5865F2;
        }

        /* Header */
        .header {
            text-align: center;
            padding: 150px 20px 50px;
            font-size: 50px;
            font-weight: bold;
        }



        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/
        /*-----------------------------------------------------------------*/



        /* Button */
        .cta {
            text-align: center;
            margin: 50px 0;
        }

        .cta button {
            padding: 15px 30px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
            margin: 10px;
        }

        .button1 {
            background: #5865F2;
            color: white;
            box-shadow: 0px 0px 15px rgba(88, 101, 242, 0.6);
        }

        .button1:hover {
            background: #4752C4;
        }

        .button2 {
            background: #205fe6a6;
            color: rgb(255, 255, 255);
        }

        .button2:hover {
            background: #e0e0e0;
        }



/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/



        /* Footer */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            text-align: center;
            padding: 15px;
            font-size: 14px;
        }



/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/



/* Allgemeines Layout */
.tos-container {
    max-width: 75%;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(88, 101, 242, 0.5);
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 130px;
}

/* Überschriften */
.tos-container h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
}

/* Abschnitte */
.tos-container h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #7289da;
}

/* Absatz-Styling */
.tos-container p {
    margin-bottom: 15px;
}

/* Zurück-Button */
.back-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7289da;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.back-button:hover {
    background: #5865f2;
}

/* Link-Farbe in der ToS-Seite */
.tos-container a {
    color: #2997f7;  /* Standardfarbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
    font-weight: bold;
    transition: color 0.3s;
}

.tos-container a:hover {
    color: #5865f2;  /* Farbe beim Hover */
    text-decoration: underline; /* Unterstreichung beim Hover */
}



/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*/




/* Fettdruck Farbe */
p b {
    color: #99c1e4;
  }
  