@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 {
    margin-top: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-3 span{
    position: relative;
    left: 0%;
    bottom: 150px;
}

.main-3 p {
    position: relative; 
    bottom: 135px;
    color: #717171;
    font-size: 20px;
    font-weight: 600;
    word-spacing: 0px;
    text-transform: uppercase;
}

.regeln-section {
    max-width: 900px;
    margin: 50px auto 100px;
    padding: 40px 30px;
    background: rgba(11, 9, 12, 0.8);
    border-radius: 16px;
    color: #e0dfe2;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(5px);
    margin-top: -85px;
}

.regeln-section .container h2 {
    color: #DE48FA;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.regeln-section .container ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 40px;
}

.regeln-section .container ul li {
    margin-bottom: 15px;
    color: #c4c0c8;
}

.regeln-section .container ul li strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .regeln-section {
        padding: 30px 20px;
        margin: 60px 15px 100px;
        font-size: 14px;
        margin-top: -50px;
    }

    .regeln-section .container h2 {
        font-size: 26px;
    }

        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;
    }

    .main-1 p {
       font-size: 16px;
    }

    html, body {
        overflow-x: hidden;
        width: 100vw;
    }

    nav .legal-links {
        display: none;
    }
}


details summary {
    font-size: 28px;
    font-weight: 700;
    color: #DE48FA;
    cursor: pointer;
    padding: 10px 0;
    user-select: none;
    list-style: none;
  }
  
  details summary::-webkit-details-marker {
    display: none;
  }

  details summary::before {
    content: "▶";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.2s ease;
    color: #DE48FA;
  }
.regeln-section > .container > details > summary {
    font-size: 24px;
    font-weight: 700;
    color: #DE48FA;
    cursor: pointer;
    margin-bottom: 20px;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-bottom: 1px solid rgba(222, 72, 250, 0.2);
  }
  
  /* Verstecke standard Pfeil */
  details summary::-webkit-details-marker {
    display: none;
  }
  
  /* Pfeil als Symbol */
  details summary::before {
    content: "▼"; /* Kleiner Pfeil nach unten */
    float: right;
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
  }
  
  /* Drehe Pfeil, wenn zugeklappt */
  details:not([open]) summary::before {
    transform: rotate(-90deg);
  }
  
  
  .regeln-section .container > details > ul > li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: color 0.2s ease;
  }

