body {
    font-family: sans-serif;
}

h2 {
    color: #2bdffe;
}

#align {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.scroll-arrow {
    bottom: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    font-size: 20px;
}

.align-boxes {
    max-width: 1920px;
    margin: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#titleLine {
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#titleLine h1:nth-of-type(even) {
    color: aqua;
}

#titleLine h1 {
    font-size: 34px;
    text-align: center;
}

#titleLine p {
    margin: 5px 0;
    font-size: 12px;
}

#giveawayPrices {
    width: 100%;
}

#firstPrice {
    position: relative;
    max-width: 300px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

/* Der Funkel-Effekt direkt auf der Zahl 1 */
#firstPrice h2 {
    font-size: 5rem;
    /* Schön groß, damit man das Funkeln gut sieht */
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 900;

    /* Erstellt den Goldverlauf auf dem Text */
    background: linear-gradient(to right,
            #bf953f 0%,
            #fcf6ba 25%,
            #b38728 50%,
            #fbf5b7 75%,
            #aa771c 100%);
    background-size: 200% auto;
    /* Vergrößert den Verlauf für die Bewegung */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Startet die Funkel-Animation */
    animation: textShine 3s linear infinite;
}

/* Styling für den Namen darunter */
#firstPrice h3 {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin: 15px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#secondAndThirdPrice {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

#secondPrice {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

/* Der silberne Funkel-Effekt direkt auf der Zahl 2 */
#secondPrice h2 {
    font-size: 4.5rem;
    /* Minimal kleiner als Platz 1 (5rem), um die Hierarchie zu wahren */
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 900;

    /* Erstellt einen edlen Silber/Platin-Verlauf auf dem Text */
    background: linear-gradient(to right,
            #999999 0%,
            #e6e6e6 25%,
            #cccccc 50%,
            #ffffff 75%,
            #777777 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Startet die exakt gleiche Funkel-Animation */
    animation: textShine 3s linear infinite;
}

/* Styling für den Namen des zweiten Platzes */
#secondPrice h3 {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 15px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* (Die @keyframes textShine musst du nicht doppelt einfügen, 
   da sie vom ersten Platz oben mitbenutzt werden!) */

#thirdPrice {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

/* Der bronze/kupferne Funkel-Effekt direkt auf der Zahl 3 */
#thirdPrice h2 {
    font-size: 4rem;
    /* Kleiner als Platz 1 (5rem) und Platz 2 (4.5rem) */
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 900;

    /* Erstellt einen tiefen, glänzenden Bronze/Kupfer-Verlauf auf dem Text */
    background: linear-gradient(to right,
            #804a00 0%,
            #ca8a3e 25%,
            #a16317 50%,
            #ffd494 75%,
            #703e00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Nutzt die bereits vorhandene Funkel-Animation */
    animation: textShine 3s linear infinite;
}

/* Styling für den Namen des dritten Platzes */
#thirdPrice h3 {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin: 15px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#sponsors {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

#sponsors h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 5px;
}

.sponsor-box {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-identity {
    width: 100%;
    display: flex;
    flex-direction: row;
    /* Bringt Text UNTER das Bild */
    justify-content: center;
    /* Zentriert alles sauber */
    align-items: center;
    font-size: 24px;
    text-align: center;
}

/* Kleiner Bonus für den Abstand */
.sponsor-identity img {
    height: 100px;
    border-radius: 100px;
    margin-bottom: 10px;
    /* Gibt dem Namen etwas Luft zum Bild */
}

.sponsor-links {
    margin: 5px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sponsor-links img {
    height: 30px;
}

.sponsor-links button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    border-color: #2bdffe;
    background-color: #222222;
    color: white;
    height: 50px;
    width: 45%;
    margin: 5px;
    padding: 5px;
}

.box {
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgb(71, 71, 71);
    background-color: rgba(34, 34, 34, 0.7);
}

#countdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#countdown p:last-child {
    font-size: 12px;
    text-align: center;
}

#countdown h2 {
    font-size: 12px;
}

#time {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 23%;
}

.countdown p:first-child {
    width: 100%;
    font-size: 36px;
}

#announcement {
    margin-top: 30px;
}

#announcement h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;

}

.announcement-box {
    display: flex;
    flex-direction: column;
}

.announcement-content {
    padding: 10px;
    display: flex;
    flex-direction: row;
}

.announcement-content img {
    padding: 0 10px;
    height: 60px;
}


.announcement-content:last-child {
    margin-top: 20px;
}

#explanation {
    margin-top: 30px;
}

#explanation h2 {
    font-size: 30px;
    text-align: center;
}

.step-list {
    padding: 10px;
    font-family: sans-serif;
    color: #fff;
}

.step-item {
    display: flex;
    position: relative;
    padding-bottom: 40px;
}

.step-item:last-child {
    padding-bottom: 0;
}

/* Das ist der Strich */
.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    /* Genau die Mitte des 40px breiten Kreises */
    top: 40px;
    /* Startet unter dem Kreis */
    bottom: 0;
    /* Läuft bis zum nächsten Element */
    width: 2px;
    /* Dicke des Strichs */
    background-color: #1e293b;
    z-index: 1;
}

.step-number {
    background-color: #2bdffe;
    color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    z-index: 2;
}

.step-content h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
}

.step-content p {
    font-size: 12px;
    margin: 0;
    color: #94a3b8;
    line-height: 1.5;
}


#giveawayForm input {
    margin: 10px 0;
}

#giveawayForm h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.input-field {
    margin: 20px 0;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.input-field input {
    padding: 5px;
    border-radius: 10px;
    border-color: #2bdffe;
    background-color: rgba(34, 34, 34, 1);
    width: 80%;
}

.accept {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.accept input {
    border-color: #2bdffe;
    width: 10%;
}

.accept label {
    margin-left: 10px;
}

#giveawayForm button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    border-color: #2bdffe;
    background-color: #222222;
    color: white;
    height: 50px;
    width: 95%;
    margin: 5px;
    padding: 5px;
}

#giveawayForm p {
    margin: 20px 0;
    text-align: center;
    font-size: 12px;
}

@media screen and (min-width:765px) {
    .align-boxes {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 20px 40px;
    }

    #titleLine h1 {
        width: 100%;
        font-size: 72px;
        text-align: start;
    }

    #titleLine p {
        width: 100%;
        text-align: start;
    }

    #countdown {
        width: 45%;
    }

    #announcement {
        width: 45%;
    }

    #giveawayForm {
        margin-top: 0;
        height: 100%;
        width: 45%;
    }

    #explanation {
        width: 45%;
    }

    .sponsor-identity {
        flex-direction: column;
    }
}

@media screen and (min-width:1000px) {
    #titleLine {
        width: 50%;
    }

    #sponsors {
        justify-content: start;
        height: 100%;
        width: 40%;
    }
}

@media screen and (min-width:1250px) {
    .align-boxes {
        width: 90%;

    }

    #giveawayForm {
        padding: 50px;
    }
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.error label,
.error label a {
    color: red !important;
}