@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Pacifico&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    width: 100%;
    overflow-x: hidden;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

.container {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    scale: 1;
    z-index: -1;
    object-fit: cover
}

nav {
    position: relative;
    top: 0;
    padding: 20px 40px;
    height: 128px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

nav.sticky {
    background-color: rgba(11, 9, 12, 0.8);
}

nav h1 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 15px;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 25px;
    left: 6.5%;
}

.nav-logo {
    position: relative;
    left: 6.5%;
    top: 32px;
}

.logo img {
    height: 50px; 
}


nav h1 span {
    color: #DE48FA;
    transition: all 0.3s ease-in-out;
}

nav .nav-center {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

nav .links {
    display: flex;
    gap: 50px;
}

nav .links a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

nav .links a:hover {
    color: white;
}

nav .links a.active {
    color: #DE48FA;
}

nav .links a.active:hover {
    color: white;
}

nav .social-links {
    display: flex;
    align-items: center;
}

nav .social-links a {
    font-size: 16px;
    color: #717171;
    transition: color 0.3s ease-in-out;
}

nav .social-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-count {
    color: #7289da;
    font-weight: 700;
    font-size: 14px;
    margin-left: 4px;
    text-shadow: 0 0 5px rgba(114, 137, 218, 0.3);
    position: relative;
    top: -1px;
}

nav .legal-links {
    position: absolute;
    top: 60px;
    right: 200px;
    display: flex;
    gap: 30px;
}

nav .legal-links a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

nav .legal-links a:hover {
    color: white;
}

.slogan {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    word-spacing: 0px;
    text-transform: uppercase;
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 15px;
}

.main-3.datenschutz {
    margin-top: 150px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 20px;
    color: #fff;
    line-height: 1.7;
    display: block;
  }

  .slogan {
    display: block;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-shadow: rgba(255, 255, 255, 0.3) 0 0 15px;
    margin-bottom: -50px;
    top: -35px;
    position: relative;
  }

.datenschutz-text {
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    margin: 40px 20px;
    border-radius: 20px;
    color: white;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.datenschutz-text h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #DE48FA;
    border-bottom: 2px solid #DE48FA;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.datenschutz-text h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.datenschutz-text p {
    margin-bottom: 15px;
}

.datenschutz-text strong {
    color: #DE48FA;
}

@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
        height: auto;
    }

    .logo {
        flex-direction: row;
        top: 20px;
        left: 0;
        justify-content: center;
    }

    .nav-center {
        flex-direction: row;
        gap: 15px;
        position: static;
        margin-top: 40px;
        width: 100%;
        margin-left: 50px;
    }

    nav .links {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    nav .social-links {
        justify-content: center;
    }

    .discord-count {
        display: none;
    }

    .slogan {
        font-size: 36px;
        line-height: 1.2;

        text-align: center;         /* Optional für Mitte */
        max-width: 90vw;            /* Begrenze Breite */
        word-break: break-word;     /* Bricht zu lange Wörter */
    }

    .datenschutz-text {
        padding: 20px;
        font-size: 14px;
    }

    .datenschutz-text h2 {
        font-size: 22px;
    }

    .datenschutz-text h3 {
        font-size: 18px;
    }

    .main-3 {
        margin-top: 200px;
    }

    html, body {
        overflow-x: hidden;
        width: 100vw;
    }

    nav .legal-links {
        display: none;
    }
}

