@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@font-face {
    font-family: Dragon;
    src: url(fonts/Dragom2000-Regular.ttf);
    font-style: normal;
    font-weight: 100;
    text-decoration: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #ededed;
    background: #000;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #155c0c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
    font-family: Dragon;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #155c0c;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a {
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;

}


.navbar a:hover,
.navbar a.active {
    color: #3de63d;
}

.home {
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.08) 65%, rgba(0, 0, 0, 0) 75%),
        url(img/img_spec.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    position: relative;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}


.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #3de63d;
}

.home-content p {
    font-size: 16px;
    margin: 20px 0 40px;
}

.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #3de63d;
    border: 2px solid #3de63d;
    border-radius: 8px;
    font-size: 19px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover {
    color: #3de63d;
}

.btn-box a:nth-child(2) {
    background: transparent;
    color: #3de63d;
}

.btn-box a:nth-child(2):hover {
    color: #000;
}

.btn-box a:nth-child(2)::before {
    background: #3de63d;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before {
    width: 100%;

}

.home-sci {
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #3de63d;
    border-radius: 50%;
    font-size: 20px;
    color: #3de63d;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover {
    color: #000;
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #3de63d;
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}

/* Out Team */

.team-section {
    margin-top: 75px;
}

.team-title h1 {
    font-size: 50px;
    color: #3de63d;
    text-align: center;
    position: relative;
    margin-left: -250px;
}

.team-cards {
    width: 85%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-left: -80px;
}

.team-card:nth-last-child(2) {
    grid-column: 1;
}

.team-card:last-child {
    grid-column: 3;
}

.team-card {
    padding: 20px;
    text-align: center;
}

.team-detail p {
    color: #3de63d;
}

/* Car Stats */

p {
    font-size: 0.9em;
    max-width: 35em;
    line-height: 27px;
}

h1, h2 {
    font-weight: 300;
}

h1 {
    margin: 0.5em 0;
    font-size: 3em;
}

.specs h2, .about h2 {
    font-size: 2em;
    padding-left: 1.2em;
    border-left: 0.1em #3de63d solid;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #ededed;
}

section {
    padding: 2.5em;
}

nav, .infos, .info, .specs-header, .specs li, .stats  {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specs, .icon, .panel:first-child, .panel:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

header2 {
    height: 100vh;
    min-height: 30em;
    background: url(img/img_spec.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.heading h2 {
    margin-bottom: 1em;
}

.heading p {
    margin-left: 3em;
    display: inline-block;
}

.infos {
    gap: 2em;
}

.infos, .heading {
    padding: 5em 1em;
}

.info img {
    max-width: 6em;
    margin-right: 1em;
}

.info h3 {
    margin-bottom: 0,5em;
}

.info p {
    max-width: 15em;
}

.specs {
    background: url(img/img_1_23.JPG) no-repeat center ;
    background-size: cover;
    min-height: 40em;
    position: relative;
    padding-top: 8em;
    padding-bottom: 8em;
}

.specs-header, .specs ul {
    position: relative;
    z-index: 1;
}

.specs ul {
    width: 40em;
    margin-top: 3em;
}

.specs li {
    padding: 0.6em 0;
    border-bottom: #555 1px solid;
}

.specs li span:first-child {
    color: #888;
}

.specs::before {
    content: '';
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.car-stats {
    padding: 5em 1em;
}

.stats {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stats > div {
    margin-bottom: 1em;
    position: relative;
    min-width: 10em;
}

.stats > div h1:nth-child(2) {
    color: #282828;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-size: 2.5em;
    font-weight: 700;
}

.stats h5 {
    font-weight: 400;

    text-transform: uppercase;
    font-size: 0.7em;
}

.counter {
    margin: 0.1em 0;
}

.car {
    padding: 4em 1em 4em 1em;
    margin-top: 8em;
}

.circle {
    border: 2px #ccc solid;
    border-radius: 50%;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: #000;
    animation:
        glow 4s ease-in-out infinite;
    aspect-ratio: 3 / 1;
}

.car img {
    width: 70%;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.circle div {
    border: inherit;
    border-radius: inherit;
    background: inherit;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: inherit;
}

.circle .inner-md-circle {
    width: 75%;
    height: 75%;
    top: 10%;
    animation-delay: 3s;
}

.circle .inner-sm-circle {
    width: 50%;
    height: 50%;
    top: 20%;
    animation-delay: 6s;
}

/* WINS */

/* =========================
   DRAGON 2000
   SUCCESS PAGE
========================= */


/* =========================
   MAIN
========================= */

.success-page {
    min-height: 100vh;
    background: #050505;
    color: #ededed;

    padding-top: 140px;
    padding-bottom: 100px;
}


.success-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.success-heading {
    text-align: center;
    margin-bottom: 70px;
}


.success-heading span {
    color: #888;

    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
}


.success-heading h1 {
    font-size: 64px;

    margin: 15px 0;

    text-transform: uppercase;
    letter-spacing: 2px;
}


.success-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #999;

    line-height: 1.7;
}


/* =========================
   STATISTICS
========================= */

.success-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 90px;
}


.success-stat {
    background: #0b0b0b;

    border: 1px solid #222;

    padding: 35px 20px;

    text-align: center;

    transition: 0.3s;
}


.success-stat:hover {
    border-color: #555;

    transform: translateY(-5px);
}


.success-stat h2 {
    font-size: 48px;

    margin: 0 0 10px;
}


.success-stat span {
    color: #777;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================
   SUCCESS TIMELINE
========================= */

.success-list {
    position: relative;
}


.success-list::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;
    bottom: 0;

    width: 1px;

    background: #222;

    transform: translateX(-50%);
}


/* =========================
   SUCCESS ITEM
========================= */

.success-item {
    width: 50%;

    padding: 20px 50px;

    position: relative;
}


/* Linke Seite */

.success-item:nth-child(odd) {
    left: 0;

    text-align: right;
}


/* Rechte Seite */

.success-item:nth-child(even) {
    left: 50%;
}


/* Punkte auf der Timeline */

.success-item::after {
    content: "";

    position: absolute;

    top: 35px;

    width: 12px;
    height: 12px;

    background: #ededed;

    border-radius: 50%;
}


.success-item:nth-child(odd)::after {
    right: -6px;
}


.success-item:nth-child(even)::after {
    left: -6px;
}


/* =========================
   SUCCESS CARD
========================= */

.success-card {
    background: #0b0b0b;

    border: 1px solid #222;

    padding: 30px;

    transition: 0.3s;
}


.success-card:hover {
    border-color: #555;

    transform: translateY(-5px);
}


/* =========================
   YEAR
========================= */

.success-year {
    color: #777;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================
   TITLE
========================= */

.success-card h2 {
    font-size: 25px;

    margin: 12px 0;
}


/* =========================
   LOCATION / EVENT
========================= */

.success-place {
    font-size: 18px;

    margin-bottom: 12px;
}


/* =========================
   DESCRIPTION
========================= */

.success-card p {
    color: #888;

    line-height: 1.6;

    margin: 0;
}


/* =========================
   BADGE
========================= */

.success-badge {
    display: inline-block;

    margin-top: 20px;

    padding: 7px 14px;

    border: 1px solid #333;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .success-heading h1 {
        font-size: 42px;
    }


    .success-stats {
        grid-template-columns: repeat(2, 1fr);
    }


    .success-list::before {
        left: 10px;
    }


    .success-item,
    .success-item:nth-child(even) {

        width: 100%;

        left: 0;

        padding-left: 40px;
        padding-right: 0;

        text-align: left;
    }


    .success-item::after,
    .success-item:nth-child(odd)::after,
    .success-item:nth-child(even)::after {

        left: 4px;
        right: auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .success-stats {
        grid-template-columns: 1fr;
    }


    .success-heading h1 {
        font-size: 34px;
    }


    .success-card {
        padding: 22px;
    }

}


/* Responsive Design */

@media screen and (max-width: 900px) {

    .specs ul {
        width: 80vw;
    }

    .infos, .info, .stats {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .infos {
        gap: 3em;
    }

    .info img {
        margin: 0 0 1em 0;
    }

}

@media screen and (max-width: 600px) {
    html {
        font-size: 14px;
    }
}




/* KEYFRAMES ANIMATION */
@keyframes showRight {
    100% {
        width: 0;
    }
}

@keyframes glow {
    0% {
        box-shadow: none;
    }
    50% {
        box-shadow: 0 0 1em #3de63d;
    }
    100% {
        box-shadow: none;
    }
}


@media screen and (max-width: 900px) {

    /* HEADER */

    .header {
        padding: 18px 5%;
    }

    .logo {
        font-size: 22px;
    }

    .navbar a {
        font-size: 16px;
        margin-left: 20px;
    }


    /* HOME */

    .home {
        min-height: 100vh;
        height: auto;
        padding: 140px 7% 80px;
        background-position: center;
    }

    .home-content {
        max-width: 550px;
    }

    .home-content h1 {
        font-size: 48px;
    }

    .home-content h3 {
        font-size: 28px;
    }


    /* TEAM */

    .team-section {
        margin-top: 50px;
        padding: 50px 5%;
    }

    .team-title h1 {
        margin-left: 0;
        font-size: 42px;
    }

    .team-cards {
        width: 100%;
        margin-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-card:nth-last-child(2),
    .team-card:last-child {
        grid-column: auto;
    }


    /* CAR SPECS */

    .specs {
        padding: 6em 5%;
    }

    .specs ul {
        width: 80vw;
        max-width: 700px;
    }


    /* CAR STATS */

    .stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stats > div {
        min-width: 140px;
    }


    /* CAR */

    .car {
        margin-top: 5em;
    }

    .car img {
        width: 75%;
        top: -40%;
    }


    /* SUCCESS PAGE */

    .success-page {
        padding-top: 120px;
    }

    .success-container {
        width: 90%;
    }

    .success-heading h1 {
        font-size: 48px;
    }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 600px) {

    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }


    /* =========================
       HEADER
    ========================= */

    .header {
        position: fixed;
        padding: 15px 5%;
        min-height: 65px;
    }

    .logo {
        font-size: 20px;
    }

    .navbar {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .navbar a {
        font-size: 13px;
        margin-left: 0;
    }


    /* =========================
       HOME
    ========================= */

    .home {
        min-height: 100vh;
        height: auto;
        padding: 130px 7% 100px;

        background-image:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(0, 0, 0, 0.75) 50%,
                rgba(0, 0, 0, 1) 100%
            ),
            url("img/img_spec.jpg");

        background-position: center;
        background-size: cover;

        align-items: flex-start;
    }

    .home-content {
        width: 100%;
        max-width: 100%;
    }

    .home-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .home-content h3 {
        font-size: 23px;
        line-height: 1.3;
    }

    .home-content p {
        font-size: 14px;
        line-height: 1.7;
        margin: 15px 0 30px;
    }


    /* =========================
       BUTTONS
    ========================= */

    .home-content .btn-box {
        width: 100%;
        max-width: 345px;
        height: 48px;
        gap: 10px;
    }

    .btn-box a {
        width: 50%;
        font-size: 15px;
    }


    /* =========================
       SOCIAL MEDIA
    ========================= */

    .home-sci {
        position: relative;
        bottom: auto;
        margin-top: 50px;
        width: 160px;
    }

    .home-sci a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }


    /* =========================
       TEAM
    ========================= */

    .team-section {
        margin-top: 0;
        padding: 60px 5% 40px;
    }

    .team-title h1 {
        margin-left: 0;
        font-size: 34px;
        text-align: center;
    }

    .team-cards {
        width: 100%;
        margin-left: 0;

        display: grid;
        grid-template-columns: 2, 1fr;
        gap: 15px;
    }

    .team-card {
    width: 100%;
    padding: 10px;
}

.team-card img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 15px;
}

    .team-card,
    .team-card:nth-last-child(2),
    .team-card:last-child {
        grid-column: auto;
        padding: 15px;
    }

    .team-detail p {
        font-size: 14px;
    }


    /* =========================
       GENERAL SECTIONS
    ========================= */

    section {
        padding: 2em 5%;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =========================
       INFO SECTION
    ========================= */

    .infos {
        flex-direction: column;
        gap: 35px;
        padding: 3em 1em;
    }

    .info {
        flex-direction: column;
        text-align: center;
    }

    .info img {
        max-width: 5em;
        margin: 0 0 1em 0;
    }

    .info p {
        max-width: 100%;
    }


    /* =========================
       SPECS
    ========================= */

    .specs {
        padding: 5em 5%;
        min-height: auto;

        background-position: center;
    }

    .specs h2,
    .about h2 {
        font-size: 1.5em;
        padding-left: 0.8em;
    }

    .specs ul {
        width: 100%;
        margin-top: 2em;
    }

    .specs li {
        padding: 12px 0;
        gap: 15px;
        font-size: 13px;
    }

    .specs li span:first-child {
        flex: 1;
    }

    .specs li span:last-child {
        text-align: right;
    }


    /* =========================
       CAR STATS
    ========================= */

    .car-stats {
        padding: 4em 5%;
    }

    .stats {
        flex-direction: column;
        gap: 35px;
    }

    .stats > div {
        width: 100%;
        min-width: 0;
    }

    .stats > div h1 {
        font-size: 3em;
    }


    /* =========================
       CAR IMAGE
    ========================= */

    .car {
        padding: 3em 0;
        margin-top: 4em;
    }

    .circle {
        width: 95%;
        aspect-ratio: 2 / 1;
    }

    .car img {
        width: 85%;
        top: -30%;
    }


    /* =========================
       SUCCESS PAGE
    ========================= */

    .success-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .success-container {
        width: 92%;
    }

    .success-heading {
        margin-bottom: 45px;
    }

    .success-heading span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .success-heading h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: 1px;
    }

    .success-heading p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* =========================
       SUCCESS STATS
    ========================= */

    .success-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 60px;
    }

    .success-stat {
        padding: 25px 15px;
    }

    .success-stat h2 {
        font-size: 38px;
    }


    /* =========================
       SUCCESS TIMELINE
    ========================= */

    .success-list::before {
        left: 8px;
    }

    .success-item,
    .success-item:nth-child(even),
    .success-item:nth-child(odd) {
        width: 100%;
        left: 0;
        padding: 15px 0 15px 30px;
        text-align: left;
    }

    .success-item::after,
    .success-item:nth-child(odd)::after,
    .success-item:nth-child(even)::after {
        left: 2px;
        right: auto;
        width: 12px;
        height: 12px;
    }


    /* =========================
       SUCCESS CARDS
    ========================= */

    .success-card {
        padding: 20px;
    }

    .success-card h2 {
        font-size: 21px;
    }

    .success-place {
        font-size: 16px;
    }

    .success-card p {
        font-size: 13px;
    }

    .success-badge {
        font-size: 10px;
    }

}


/* =========================
   VERY SMALL PHONES
========================= */

@media screen and (max-width: 400px) {

    .header {
        padding: 12px 4%;
    }

    .logo {
        font-size: 18px;
    }

    .navbar {
        gap: 8px;
    }

    .navbar a {
        font-size: 11px;
    }

    .home {
        padding-left: 6%;
        padding-right: 6%;
    }

    .home-content h1 {
        font-size: 32px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .btn-box a {
        font-size: 13px;
    }

    .team-title h1 {
        font-size: 30px;
    }

}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ededed;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
}


/* =========================
   MOBILE MENU
========================= */

@media screen and (max-width: 600px) {

    .header {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        background: #155c0c;

        padding: 20px 0;

        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;

        transition: 0.3s ease;
    }

    .navbar a {
        width: 100%;
        text-align: center;

        padding: 15px 0;

        margin: 0;

        font-size: 17px;
    }

    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;
    border-top: 1px solid #222;
    padding: 50px 10% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-block;
    color: #ededed;
    font-family: Dragon;
    font-size: 30px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a,
.footer-social a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #3de63d;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-content p {
    max-width: none;
    margin: 0;
    color: #555;
    font-size: 12px;
}

.footer-sponsors {
    margin: 25px 0;
    color: #888;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-sponsors span {
    color: #3de63d;
}


/* =========================
   FOOTER MOBILE
========================= */

@media screen and (max-width: 600px) {

    .footer {
        padding: 40px 5% 25px;
    }

    .footer-logo {
        font-size: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        gap: 20px;
    }

}

.privacy-page {
    min-height: 100vh;
    background: #050505;
    padding: 150px 5% 80px;
}

.privacy-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-label {
    display: block;
    color: #3de63d;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.privacy-container > h1 {
    font-size: 55px;
    color: #ededed;
    margin-bottom: 60px;
}

.privacy-section {
    margin-bottom: 45px;
}

.privacy-section h2 {
    color: #3de63d;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 18px;
}

.privacy-section p {
    color: #aaa;
    max-width: 900px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0 20px;
    padding-left: 25px;
    list-style: disc;
}

.privacy-section li {
    color: #aaa;
    margin-bottom: 8px;
}

.privacy-section a {
    color: #3de63d;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-date {
    color: #555 !important;
    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 600px) {

    .privacy-page {
        padding: 110px 5% 60px;
    }

    .privacy-container {
        width: 100%;
    }

    .privacy-container > h1 {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 40px;
    }

    .privacy-section {
        margin-bottom: 35px;
    }

    .privacy-section h2 {
        font-size: 21px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   IMPRESSUM & DATENSCHUTZ
   RESPONSIVE DESIGN
========================================================= */

.privacy-page {
    min-height: 100vh;
    background: #050505;
    color: #ededed;
    padding: 150px 5% 80px;
}

.privacy-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-label {
    display: block;
    color: #3de63d;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.privacy-container > h1 {
    color: #ededed;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 60px;
}

.privacy-section {
    margin-bottom: 45px;
}

.privacy-section h2 {
    color: #3de63d;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 18px;
}

.privacy-section p {
    color: #aaa;
    max-width: 900px;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.privacy-section strong {
    color: #ededed;
}

.privacy-section ul {
    margin: 15px 0 20px;
    padding-left: 25px;
    list-style: disc;
}

.privacy-section li {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.privacy-section a {
    color: #3de63d;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-date {
    color: #555 !important;
    font-size: 12px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .privacy-page {
        padding: 130px 6% 70px;
    }

    .privacy-container {
        max-width: 850px;
    }

    .privacy-container > h1 {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 23px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .privacy-page {
        min-height: 100vh;
        padding: 105px 6% 50px;
    }

    .privacy-container {
        width: 100%;
    }

    .privacy-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .privacy-container > h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 40px;
    }

    .privacy-section {
        margin-bottom: 35px;
    }

    .privacy-section h2 {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .privacy-section p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .privacy-section ul {
        padding-left: 20px;
        margin: 12px 0 18px;
    }

    .privacy-section li {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 6px;
    }

    .privacy-date {
        font-size: 11px !important;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media screen and (max-width: 400px) {

    .privacy-page {
        padding: 95px 5% 45px;
    }

    .privacy-container > h1 {
        font-size: 30px;
    }

    .privacy-section h2 {
        font-size: 19px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 13px;
    }

}


/* =========================================================
   404 PAGE
========================================================= */

.error-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 140px 5% 100px;

    background:
        radial-gradient(
            circle at center,
            rgba(61, 230, 61, 0.08),
            transparent 45%
        ),
        #050505;
}

.error-content {
    width: 100%;
    max-width: 800px;
}

.error-label {
    display: block;

    color: #3de63d;

    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.error-content h1 {
    margin: 0;

    color: #3de63d;

    font-size: clamp(120px, 20vw, 260px);

    font-weight: 700;

    line-height: 0.9;

    text-shadow:
        0 0 20px rgba(61, 230, 61, 0.25),
        0 0 50px rgba(61, 230, 61, 0.1);
}

.error-content h2 {
    margin: 25px 0 15px;

    color: #ededed;

    font-size: 32px;
    font-weight: 600;
}

.error-content p {
    max-width: 550px;

    margin: 0 auto 35px;

    color: #888;

    font-size: 15px;
    line-height: 1.7;
}

.error-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;
}

.error-button {
    position: relative;

    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-width: 170px;
    height: 50px;

    padding: 0 25px;

    border: 2px solid #3de63d;
    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s;
}

.error-button.primary {
    background: #3de63d;
    color: #000;
}

.error-button.primary:hover {
    background: transparent;
    color: #3de63d;
}

.error-button.secondary {
    background: transparent;
    color: #3de63d;
}

.error-button.secondary:hover {
    background: #3de63d;
    color: #000;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .error-page {
        padding: 110px 6% 80px;
    }

    .error-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .error-content h1 {
        font-size: 140px;
    }

    .error-content h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    .error-content p {
        font-size: 14px;
    }

    .error-buttons {
        flex-direction: column;

        width: 100%;
        max-width: 280px;

        margin: 0 auto;
    }

    .error-button {
        width: 100%;
    }

}
/* =========================================================
   SPONSOREN
========================================================= */

.sponsors-section {
    background: #050505;
    padding: 90px 5%;
    border-top: 1px solid #151515;
}

.sponsors-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sponsors-label {
    display: block;
    color: #3de63d;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sponsors-container h2 {
    color: #ededed;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 15px;
}

.sponsors-container > p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


/* EINZELNER SPONSOR */

.sponsor-single {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sponsor-card {
    width: 100%;
    max-width: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    background: transparent;
    border: none;

    transition: 0.3s ease;
}

.sponsor-card:hover {
    border: none;
    transform: scale(1.03);
}

.sponsor-card img {
    display: block;
    width: auto;
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.75;

    transition: 0.3s ease;
}

.sponsor-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* SPONSOR KONTAKT */

.sponsors-contact {
    margin-top: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;
    flex-wrap: wrap;
}

.sponsors-contact span {
    color: #888;
    font-size: 14px;
}

.sponsors-contact a {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 45px;
    padding: 0 22px;

    background: #3de63d;
    border: 2px solid #3de63d;
    border-radius: 8px;

    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

.sponsors-contact a:hover {
    background: transparent;
    color: #3de63d;
}


/* MOBILE */

@media screen and (max-width: 600px) {

    .sponsors-section {
        padding: 65px 5%;
    }

    .sponsors-container h2 {
        font-size: 32px;
    }

    .sponsors-container > p {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .sponsor-card {
        max-width: 320px;
        min-height: 130px;
        padding: 20px;
    }

    .sponsor-card img {
        max-width: 90%;
        max-height: 80px;
    }

    .sponsors-contact {
        flex-direction: column;
        gap: 15px;
    }

}