:root {
    --color-bluecool: #000000;
    --color-greensky: #52ae32;
    --color-yellowstorm: #fbba00;
    --color-redwave: #00366c;
    --color-gray: #c0c0c0;
    --color-lightgray: #f0f0f0;
    --color-black: #ffffff;
    --color-white: #ffffff;
    --color-hs-blue: #51ade5;
    --color-hs-pink: #ec008c;
}

/* -------------------------------------------------------------------------------------------------- */
/* Fonts */
@font-face {
    font-family: "Myriad-Pro";
    font-weight: normal;
    src: url(fonts/MyriadPro-Regular.otf) format("truetype");
}
@font-face {
    font-family: "Myriad-Pro";
    font-weight: 300;
    src: url(fonts/MyriadPro-Light.otf) format("truetype");
}
@font-face {
    font-family: "EthnocentricRg-Regular";
    src: url(fonts/ethnocentric-rg.otf) format("truetype");
}

/* -------------------------------------------------------------------------------------------------- */
/* Global Resets */
* {
    font-size: 17px;
    color: var(--color-black);
    font-family: Myriad-Pro, serif;
    font-weight: 300;
}
html, body {
    background-color: black;
    padding: 0;
    margin: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    overflow-x: hidden;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100dvh;
}

/* -------------------------------------------------------------------------------------------------- */
/* Responsive Utility */
.dev-small { display: none; }
.dev-large { display: none; }
@media (max-width: 899px) {
    .dev-small { display: block; }
    .dev-large { display: none !important; }
}
@media (min-width: 900px) {
    .dev-small { display: none !important; }
    .dev-large { display: block; }
}

/* -------------------------------------------------------------------------------------------------- */
/* Headings */
.ueberschrift-1 {
    font-size: 48px;
    margin-top: 50px;
    font-weight: bold;
    margin-bottom: 50px;
}
.ueberschrift-2 {
    font-family: Myriad-Pro, serif;
    font-weight: normal;
}
h1, h2, h3 {
    font-size: 20px;
    font-family: Verdana;
}
@media (max-width: 899px) {
    .ueberschrift-1 {
        font-size: 26px;
        margin-top: 40px;
        font-weight: bold;
    }
    .u
}

/* -------------------------------------------------------------------------------------------------- */
/* Forms */
label { display: block; font-weight: normal; }
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    opacity: 0.5;
    background-color: var(--color-gray);
    color: var(--color-black);
}
input[type="text"]:focus {
    outline: none;
    opacity: 0.8;
}
input[type="text"]:disabled { cursor: not-allowed; }
input[type="button"] {
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    background-color: var(--color-black);
    color: var(--color-white);
    font-weight: normal;
}
input[type="button"]:hover { background-color: var(--color-bluecool); }
input[type="button"]:disabled {
    background-color: var(--color-gray);
    cursor: not-allowed;
}

/* -------------------------------------------------------------------------------------------------- */
/* Header / Menu */
#menu {
    position: relative;
    height: calc(120px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    box-sizing: border-box;
    background-color: var(--color-bluecool);
    color: var(--color-white);
}
#menu-left {
    display: inline-block;
    position: relative;
    top: 10px;
    height: 90%;
    z-index: 200;
    transition: top 0.3s ease-out, transform 0.3s ease-out;
}
#menu-left img {
    height: 100%;
    transform-origin: top left;

    transition: transform 0.3s ease-out;
}

#menu-left a {
    display: inline-block;
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 10px;
    font-weight: bold;
}

#fullscreen-toggle {
    display: none;
    position: absolute;
    top: calc(20px + env(safe-area-inset-top, 0px));
    right: max(20px, env(safe-area-inset-right, 0px));
    z-index: 250;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid var(--color-hs-blue);
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: var(--color-white);
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

#fullscreen-toggle[aria-pressed="true"] {
    border-color: var(--color-hs-pink);
}

#menu-center {
    display: flex;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 150;
}

#menu-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    height: 80px;
    z-index: 200;
}
#menu-right a {
    display: inline-block;
    background-color: deepskyblue;
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-left: 10px;
    font-weight: bold;
    padding: 8px 20px 5px 20px;
    min-width: 90px;
    border-radius: 20px;
    text-align: center;
}
#menu a:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

#burger {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 300;
}
#burger span {
    display: block;
    height: 3px;
    background: #00bfff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.2s ease;
    transform-origin: center;
}
/* Icon -> X */
#burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
#burger.active span:nth-child(2) {
    opacity: 0;
}
#burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


/* -------------------------------------------------------------------------------------------------- */
/* Mobile Menu & Animations */
@media (max-width: 899px) {
    /* Show burger, hide desktop nav */
    #burger {
        display: flex;
        position: absolute;
        top: 18px;
        right: 20px;
    }
    #menu-right {
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        background: #000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition:
                transform 0.4s cubic-bezier(.4,0,.2,1),
                opacity   0.3s ease,
                visibility 0s linear 0.4s;     /* hide after animation */
        z-index: 1150;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 191, 255, 0.5);
        border-radius: 0 0 8px 8px ;
    }
    /* open state */
    #menu-right.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;           /* cancel delay so it appears immediately */
        height: auto;
    }
    /* link animation: slide in sequentially */
    #menu-right a {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s;
        margin: 12px 0;
        width: 80%;
        text-align: center;
        background: deepskyblue;
        border-radius: 10px;
        padding: 12px 0;
    }
    /* when menu open, stagger in */
    #menu-right.open a:nth-child(1) { transition-delay: 0.25s; }
    #menu-right.open a:nth-child(2) { transition-delay: 0.35s; }
    #menu-right.open a:nth-child(3) { transition-delay: 0.45s; }
    #menu-right.open a:nth-child(4) { transition-delay: 0.55s; }
    #menu-right.open a {
        opacity: 1;
        transform: translateY(0);
    }

    #menu-left.open{
        display: none;
    }

}

/* -------------------------------------------------------------------------------------------------- */
#footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
}

/* Gemeinsame Footer-Spalten */
.footer-section {
    flex: 1 1 220px;
    text-align: center;
    margin-bottom: 20px;
}
.footer-section h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: bold;
}
.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-social a:hover {
    transform: scale(1.1);
}
.footer-social img {
    width: 24px;
    height: 24px;
}

/* Mobile: Spalten untereinander */
@media (max-width: 600px) {
    #footer {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px;
    }
    .footer-section {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}

/* -------------------------------------------------------------------------------------------------- */
/* Content Area */
#content {
    background: black;
    color: white !important;
    max-width: 70%;
    margin: 0 auto;
    display: block;
    justify-content: center;
}
#content h1 {
    text-align: center;
}

/* Image Wrapper */
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 40px;
    flex-direction: row;
}
.image-wrapper .image-item {
    flex: 0 1 calc((80% - 40px) / 3);
    text-align: center;
}
.image-wrapper .image-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.image-wrapper .image-item figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: var(--color-white);
}

#description{
    text-align: center;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#description span{
   margin: 20px 5px 20px 5px;
}



@media (max-width: 900px) {
    .image-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
        flex-direction: row;
    }
    .image-wrapper .image-item {
        flex: none !important;
        text-align: center;
    }
}
/* ----------------------------------------------Check List---------------------------------------------------- */
.checklist-section {
    margin-bottom: 40px;
    text-align: center;
    justify-items: center;

}
.checklist-title {
    color: white;
    font-size: 17px;
    margin-bottom: 12px;
}

.checklist-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;            /* Abstand zwischen Liste und Bild */
    margin-bottom: 40px;  /* optionaler Abstand nach unten */
}
/* Bild in rechter Spalte */
.checklist-image img {
    max-width: 300px;     /* oder 100% für Flex-Shrink */
    max-height: 300px;
    height: auto;
    border-radius: 10px;  /* optional */
    object-fit: cover;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 17px;
    color: white; /* oder eine andere Farbe */

}

.circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background-color: deepskyblue; /* dein Blau */
    color: white;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}
@media (max-width: 899px) {
    .checklist-wrapper {
        flex-direction: column;
    }
    .checklist-image {
        margin-top: 20px;    /* Abstand unter Liste */
    }
}

/* -------------------------------------------------------------------------------------------------- */
/* Two-Column Form */
#form {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.form-zweispaltig-rechts,
.form-zweispaltig-links {
    width: 100%;
}
@media (min-width: 900px) {
    .form-zweispaltig-rechts {
        float: right;
        width: calc(50% - 20px);
    }
    .form-zweispaltig-links {
        margin-right: 50%;
        width: initial;
    }
}

/* -------------------------------------------------------------------------------------------------- */
/* Video Button */
#video-button {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* ----------------------------------------------FORM---------------------------------------------------- */
form{
    width: 60%;
}

#form {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    font-family: Myriad-Pro, sans-serif;
    justify-items: center;
}

/* Basis Grid */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 16px;
    align-items: center;
}

.geburtsdatum-row {
    display: flex;
    gap: 10px;
}

/* Stelle sicher, dass .third schon definiert ist als 1/3 Breite */
.third {
    flex: 1 1 calc((100% - 20px) / 3);
}
.form-row label {
    margin-bottom: 4px;
    font-weight: bold;
}
.full  { flex: 1 1 100%; }
.half  { flex: 1 1 calc(50% - 10px); }
.third { flex: 1 1 calc((100% - 20px) / 3); }

/* Inputs & Selects */
#input[type="text"]{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    color: black;
    box-sizing: border-box;
}
#form input[type="text"] {
    background-color: white !important;
    color: black !important;
    opacity: 1 !important;
    border-radius: 6px;
}
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    color: black;
    box-sizing: border-box;
}

/* File-Upload Custom */
.file-upload {
    position: relative;
    width: 100%;
    height: 46px;
    background-color: white;
    border-radius: 6px;
}
.file-upload input[type="file"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
}
.file-label {
    position: absolute;
    top: 0; left: 0;
    padding: 12px;
    line-height: 22px;
    color: #ffffff;
    pointer-events: none;
}
.file-btn {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    padding: 0 16px;
    background: var(--color-hs-blue);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;

}

/* Custom Select */
.select-wrapper {
    position: relative;
    width: 100%;
}
.select-wrapper.half {
    position: relative;     /* für das absolute Pfeil-Icon */
    max-width: 48%;             /* oder max-width:50% */
}
.select-wrapper.half select {
    width: 100%;
    padding-right: 2.5rem;  /* Platz schaffen für den Pfeil */
}

.select-wrapper.half .arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-hs-blue);
    font-size: 18px;
}

.select-wrapper select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    color: black;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.select-wrapper .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-hs-blue);
    font-size: 18px;
}

/* Checkbox Gruppe */
.checkbox-group {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.checkbox-group label {
    font-weight: normal;
    margin-bottom: 8px;
    display: flex;

}
.checkbox-group input {
    margin-right: 8px;
    transform: scale(1.4);
}

/* Submit Button */
.submit-btn {
    flex: 1 1 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--color-hs-blue), var(--color-hs-pink));
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.submit-btn:hover {
    background: linear-gradient(90deg, var(--color-hs-pink), var(--color-hs-blue));
}

.submit-btn-export {
    flex: 1 1 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--color-hs-blue), var(--color-hs-pink));
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}
.submit-btn-export:hover {
    background: linear-gradient(90deg, var(--color-hs-pink), var(--color-hs-blue));
}

#anrede{
    color: black;
}
option{
    color: black;
}
/* Responsive */
@media (max-width: 800px) {
    .half, .third {
        flex: 1 1 100%;
    }
    .geburtsdatum-row {
        flex-direction: row;
    }

    /* optional: bei sehr schmalen Displays kannst du die Breite der einzelnen Felder anpassen */
    .geburtsdatum-row .third {
        flex: 1 1 calc((100% - 20px) / 3);
        min-width: 0; /* verhindert Überlauf */
    }
    .third {
        flex: 1 1 100%;
    }
    form{
        width: 95%;
    }
    .select-wrapper.half {
        position: relative;
        max-width: 100%;
    }
    .checkbox-group{
        width: 100%;
    }


}
#geburtsdatum{
    color: black;
    height: 48px;
    min-height: 48px;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin: 0;
    font-family: Myriad-Pro, sans-serif;
    font-size: 16px;
    line-height: 22px;
    box-sizing: border-box;
    border: none;
}

/* Safari rendert Datumsfelder standardmäßig anders als Textfelder. */
#form input[type="text"],
#form input[type="email"],
#form input[type="date"] {
    height: 48px;
    min-height: 48px;
    margin: 0;
    padding: 12px;
    font-family: Myriad-Pro, sans-serif;
    font-size: 16px;
    line-height: 22px;
    box-sizing: border-box;
}

#form input[type="date"]::-webkit-date-and-time-value {
    min-height: 22px;
    text-align: left;
}

/* -------------------------------------------------------------------------------------------------- */
/* Gewinnspiel-Startseite */
.gewinnspiel-page {
    background-color: #000;
    text-align: center;
}

.gewinnspiel-main {
    width: min(100% - 40px, 900px);
    margin: 0 auto;
}

.gewinnspiel-hero {
    padding: 44px 20px 22px;
}

.gewinnspiel-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-family: "EthnocentricRg-Regular", Verdana, sans-serif;
    font-size: clamp(27px, 4.5vw, 48px);
    font-weight: bold;
    line-height: 1.25;
}

.gewinnspiel-hero p {
    margin: 16px 0 0;
    color: var(--color-hs-pink);
    background: linear-gradient(90deg, var(--color-hs-blue), var(--color-hs-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(21px, 3vw, 30px);
    font-weight: bold;
}

/* Produktinszenierung: die Blitze bleiben reine Dekoration, die Flaschen tragen die Information. */
.produkt-showcase {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: end center;
    min-height: clamp(275px, 32vw, 390px);
    margin: -4px auto 30px;
    overflow: hidden;
}

.showcase-glow {
    position: absolute;
    z-index: -2;
    bottom: 5%;
    left: 50%;
    width: min(68%, 500px);
    aspect-ratio: 1.8;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(81, 173, 229, .42) 0%, rgba(236, 0, 140, .16) 43%, transparent 70%);
    filter: blur(14px);
}

.showcase-blitz {
    position: absolute;
    z-index: -1;
    top: 50%;
    width: min(44vw, 360px);
    max-width: none;
    opacity: .78;
    pointer-events: none;
    user-select: none;
}

.showcase-blitz-links {
    left: -7%;
    transform: translateY(-49%) rotate(-12deg);
}

.showcase-blitz-rechts {
    right: -7%;
    transform: translateY(-49%) rotate(12deg) scaleX(-1);
}

.showcase-flaschen {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    width: min(58%, 360px);
    height: clamp(265px, 31vw, 380px);
    filter: drop-shadow(0 15px 18px rgba(0, 0, 0, .58));
}

.showcase-flasche {
    display: block;
    width: auto;
    height: 100%;
    max-width: 54%;
    object-fit: contain;
}

.showcase-flasche-blau {
    margin-right: -13%;
    transform: rotate(-5deg) translateY(6px);
}

.showcase-flasche-pink {
    margin-left: -13%;
    transform: rotate(5deg) translateY(6px);
}

.teilnahme-ablauf {
    position: relative;
    isolation: isolate;
    width: min(100%, 760px);
    box-sizing: border-box;
    margin: 0 auto 36px;
    padding: 28px 32px;
    border: 1px solid rgba(81, 173, 229, .72);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(81, 173, 229, .22), rgba(236, 0, 140, .22));
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.teilnahme-ablauf > :not(.teilnahme-blitz) {
    position: relative;
    z-index: 1;
}

.teilnahme-blitz {
    position: absolute;
    z-index: 0;
    top: 50%;
    width: min(38vw, 300px);
    max-width: none;
    opacity: .32;
    pointer-events: none;
    user-select: none;
}

.teilnahme-blitz-links {
    left: -8%;
    transform: translateY(-50%) rotate(-12deg);
}

.teilnahme-blitz-rechts {
    right: -26%;
    transform: translateY(-50%) rotate(12deg) scaleX(-1);
}

.teilnahme-ablauf h2 {
    margin: 0 0 24px;
    color: var(--color-white);
    font-family: "EthnocentricRg-Regular", Verdana, sans-serif;
    font-size: clamp(21px, 3vw, 28px);
    font-weight: bold;
}

.teilnahme-ablauf ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.teilnahme-ablauf li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 122px;
    padding: 18px 14px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .45);
}

.ablauf-nummer {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--color-hs-pink);
    color: var(--color-white);
    font-size: 19px;
    font-weight: bold;
}

.teilnahme-ablauf p,
.teilnahme-ablauf strong {
    margin: 0;
    color: var(--color-white);
    font-size: 18px;
    font-weight: normal;
    line-height: 1.35;
}

.teilnahme-ablauf strong {
    color: var(--color-hs-blue);
    font-weight: bold;
}

.registrierung-hinweis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: -12px 0 16px;
    padding: 12px 22px;
    border: 1px solid var(--color-hs-blue);
    border-radius: 999px;
    background: rgba(81, 173, 229, .12);
    color: var(--color-white);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.registrierung-hinweis:hover,
.registrierung-hinweis:focus-visible {
    background: rgba(236, 0, 140, .22);
    transform: translateY(-2px);
}

.registrierung-pfeil {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-right: 3px solid var(--color-hs-pink);
    border-bottom: 3px solid var(--color-hs-pink);
    transform: rotate(45deg);
    transition: border-color .2s ease, transform .2s ease;
}

.registrierung-hinweis:hover .registrierung-pfeil,
.registrierung-hinweis:focus-visible .registrierung-pfeil {
    border-color: var(--color-hs-blue);
    transform: translateY(3px) rotate(45deg);
}

/* Bestätigungsseite im Gewinnspiel-Look */
.confirm-main {
    padding-bottom: 42px;
}

.confirm-hero {
    padding-bottom: 28px;
}

.confirm-hero h1 {
    font-size: clamp(23px, 3.6vw, 38px);
}

.confirm-page .confirm-card {
    width: 100%;
    max-width: 680px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 38px 32px;
    border: 1px solid rgba(81, 173, 229, .72);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(81, 173, 229, .22), rgba(236, 0, 140, .22));
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.confirm-page .confirm-label {
    margin: 0 0 12px;
    color: var(--color-white);
    font-family: "EthnocentricRg-Regular", Verdana, sans-serif;
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: normal;
}

.confirm-page .confirm-id {
    margin: 0 auto 28px;
    padding: 12px 22px;
    border: 1px solid var(--color-hs-pink);
    border-radius: 10px;
    background: rgba(0, 0, 0, .68);
    color: var(--color-white);
    font-size: clamp(38px, 8vw, 58px);
    font-weight: bold;
    line-height: 1;
    box-shadow: 0 0 18px rgba(236, 0, 140, .2);
}

.confirm-page .confirm-instruction,
.confirm-page .confirm-social,
.confirm-page .confirm-mail,
.confirm-page .confirm-error {
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 19px;
    font-weight: normal;
    line-height: 1.45;
}

.confirm-page .confirm-instruction {
    max-width: 560px;
    font-weight: bold;
}

.confirm-page .confirm-social a {
    color: var(--color-hs-blue);
    font-size: inherit;
    font-weight: bold;
}

.confirm-page .confirm-social a:hover,
.confirm-page .confirm-social a:focus-visible {
    color: var(--color-hs-pink);
}

.confirm-page .confirm-mail {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .28);
    font-size: 17px;
}

.confirm-page .confirm-mail strong {
    color: var(--color-hs-blue);
    font-weight: bold;
    overflow-wrap: anywhere;
}

.confirm-page .confirm-error {
    color: var(--color-hs-pink);
    font-weight: bold;
}

.confirm-page .confirm-actions {
    margin-top: 26px;
}

.confirm-page .confirm-actions .submit-btn {
    width: min(100%, 320px);
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .gewinnspiel-main {
        width: min(100% - 28px, 900px);
    }

    .gewinnspiel-hero {
        padding: 34px 6px 20px;
    }

    .produkt-showcase {
        min-height: clamp(240px, 72vw, 340px);
        margin: -6px -14px 26px;
    }

    .showcase-flaschen {
        width: min(68%, 300px);
        height: clamp(235px, 70vw, 335px);
    }

    .showcase-blitz {
        top: 47%;
        width: 70vw;
        opacity: .6;
    }

    .showcase-blitz-links {
        left: -30%;
    }

    .showcase-blitz-rechts {
        right: -30%;
    }

    .teilnahme-ablauf {
        width: 100%;
        margin-bottom: 24px;
        padding: 24px 16px;
    }

    .teilnahme-blitz {
        width: min(68vw, 250px);
        opacity: .24;
    }

    .teilnahme-blitz-links {
        left: -20%;
    }

    .teilnahme-blitz-rechts {
        right: -38%;
    }

    .teilnahme-ablauf ol {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .teilnahme-ablauf li {
        flex-direction: row;
        min-height: 0;
        padding: 14px;
        text-align: left;
    }

    .ablauf-nummer {
        flex: 0 0 34px;
    }

    .registrierung-hinweis {
        width: 100%;
        box-sizing: border-box;
        margin: -8px 0 14px;
    }

    .confirm-page .confirm-card {
        padding: 30px 20px;
    }

    .confirm-page .confirm-instruction,
    .confirm-page .confirm-social {
        font-size: 17px;
    }
}

/* Tablets erhalten ein eigenes Layout, statt zwischen Mobil- und Desktop-Regeln zu wechseln. */
@media (min-width: 701px) and (max-width: 1199px) {
    #fullscreen-toggle:not([hidden]) {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .gewinnspiel-main {
        width: min(100% - 64px, 940px);
    }

    .gewinnspiel-hero {
        display: grid;
        justify-items: center;
        padding: 46px 24px 26px;
        text-align: center;
    }

    .gewinnspiel-hero h1,
    .gewinnspiel-hero p,
    .teilnahme-ablauf,
    .teilnahme-ablauf h2,
    .teilnahme-ablauf li,
    .teilnahme-ablauf p {
        inline-size: 100%;
        text-align: center;
    }

    .gewinnspiel-hero h1 {
        font-size: clamp(32px, 4.7vw, 48px);
    }

    .gewinnspiel-hero p {
        font-size: clamp(23px, 3.2vw, 30px);
    }

    .produkt-showcase {
        min-height: clamp(300px, 40vw, 390px);
    }

    .showcase-flaschen {
        width: min(62%, 380px);
        height: clamp(290px, 38vw, 380px);
    }

    .teilnahme-ablauf {
        width: min(100%, 840px);
        padding: 30px 28px;
    }

    .teilnahme-ablauf ol {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(12px, 2.2vw, 20px);
    }

    .teilnahme-blitz-rechts {
        right: -14%;
    }

    .teilnahme-ablauf li {
        box-sizing: border-box;
        padding: 18px 12px;
    }

    #form,
    #form form {
        width: 100%;
        box-sizing: border-box;
    }

    #form {
        padding-right: 0;
        padding-left: 0;
    }

    .checkbox-group {
        width: min(100%, 680px);
    }

    #footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    }
}

@media (display-mode: standalone), (display-mode: fullscreen) {
    html,
    body,
    .gewinnspiel-page {
        min-height: 100%;
        background-color: #000;
    }

    #footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    }
}

/* ---------- Confirm Page ---------- */
.confirm-wrapper {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

.confirm-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 50px 40px 50px 40px;
    max-width: 560px;
    width: 70%;

    margin: 0 auto 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.confirm-card p {
    margin: 0 0 10px;
}

.confirm-id {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #1b1b1b;
    border: 1px solid #2a2a2a;
    color: var(--color-white);
    font-size: 40px;
}

.confirm-actions {
    margin-top: 18px;
}

/* submit-btn existiert schon – hier nur optional zentrieren auf kleinen Screens */
.confirm-actions .submit-btn {
    max-width: 260px;
    width: 100%;
}

.confirm-wrapper{
    padding: 40px 0;              /* wie Form-Bereich */
    display:flex; flex-direction:column; align-items:center; text-align:center;
}
.confirm-card{
    background:#111; border:1px solid #222; border-radius:12px;
    padding: 50px 40px 50px 40px;
    max-width: 560px;
    width: 70%;
    margin: 0 auto 40px;
    box-shadow:0 8px 24px rgba(0,0,0,.35);
}
@media (max-width:800px){
    .confirm-card{  padding: 50px 40px 50px 40px;
        max-width: 560px;
        width: 70%; }
}
.confirm-card p{ margin:0 0 10px; }
.confirm-id{
    display:inline-block; margin-top:10px; font-weight:700; letter-spacing:.3px;
    padding:8px 12px; border-radius:8px; background:#1b1b1b; border:1px solid #2a2a2a;
    color: var(--color-white);
}
.confirm-actions{ margin-top:18px; }
.confirm-actions .submit-btn{
    max-width: 260px; width:100%;
}

.input-pw{width:100%;max-width:360px;padding:12px;border:none;border-radius:6px;font-size:16px;background:#fff;color:#000;box-sizing:border-box;margin:10px auto}
.meta{opacity:.85;margin-top:10px}
.actions{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.submit-btn{display:inline-block;text-decoration:none;text-align:center}

/* -------------------------------------------------------------------------------------------------- */
/* Experimentelle Startseite: test-index.php */
.test-page {
    background: #030305;
}

.test-main {
    overflow: hidden;
}

.test-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
    align-items: center;
    min-height: min(760px, calc(100svh - 120px));
    padding: 42px max(5vw, 32px) 74px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 53%, rgba(236, 0, 140, .26), transparent 23%),
        radial-gradient(circle at 61% 48%, rgba(81, 173, 229, .26), transparent 31%),
        #030305;
}

.test-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .4;
    background-image: linear-gradient(rgba(81, 173, 229, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(81, 173, 229, .18) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent, #000 30%, #000 80%, transparent);
    animation: test-grid-drift 13s linear infinite;
}

.test-flash {
    position: absolute;
    z-index: -2;
    width: 48vw;
    height: 48vw;
    border-radius: 50%;
    filter: blur(55px);
    opacity: .58;
    pointer-events: none;
}

.test-flash-eins {
    top: -22vw;
    right: -6vw;
    background: var(--color-hs-pink);
    animation: test-flash-pulse 2.8s ease-in-out infinite;
}

.test-flash-zwei {
    bottom: -24vw;
    left: 29%;
    background: var(--color-hs-blue);
    animation: test-flash-pulse 2.8s ease-in-out -1.4s infinite;
}

.test-energie-linien {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.test-energie-linien span {
    position: absolute;
    display: block;
    width: 48%;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, var(--color-hs-blue), transparent);
    box-shadow: 0 0 12px var(--color-hs-blue);
    opacity: 0;
    animation: test-energy-streak 2.1s ease-out infinite;
}

.test-energie-linien span:nth-child(1) { top: 24%; left: -40%; }
.test-energie-linien span:nth-child(2) { top: 55%; right: -40%; background: linear-gradient(90deg, transparent, var(--color-hs-pink), transparent); box-shadow: 0 0 12px var(--color-hs-pink); animation-delay: -.7s; }
.test-energie-linien span:nth-child(3) { top: 78%; left: -40%; animation-delay: -1.35s; }

.test-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.test-eyebrow,
.test-section-label {
    margin: 0 0 18px;
    color: var(--color-hs-blue);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .18em;
}

.test-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-family: "EthnocentricRg-Regular", Verdana, sans-serif;
    font-size: clamp(42px, 6.6vw, 92px);
    font-weight: normal;
    line-height: 1.04;
    letter-spacing: -.04em;
    text-shadow: 0 0 28px rgba(81, 173, 229, .18);
}

.test-hero h1 span {
    background: linear-gradient(110deg, var(--color-hs-blue), #bcecff 40%, var(--color-hs-pink) 72%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: test-text-shine 4s linear infinite;
}

.test-gewinn {
    margin: 24px 0 28px;
    color: var(--color-white);
    font-size: clamp(19px, 2.4vw, 27px);
    font-weight: normal;
}

.test-cta {
    display: inline-flex;
    align-items: center;
    gap: 17px;
    padding: 7px 8px 7px 24px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    color: var(--color-white);
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: test-cta-glow 2.4s ease-in-out infinite;
}

.test-cta:hover,
.test-cta:focus-visible {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 25px rgba(236, 0, 140, .65);
}

.test-cta-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-hs-blue), var(--color-hs-pink));
    font-size: 24px;
    line-height: 1;
}

.test-flaschen {
    position: relative;
    z-index: 2;
    justify-self: center;
    width: min(38vw, 510px);
    height: min(61vw, 650px);
    min-height: 420px;
}

.test-flasche {
    position: absolute;
    bottom: 0;
    height: 94%;
    width: auto;
    max-width: 60%;
    filter: drop-shadow(0 25px 18px rgba(0, 0, 0, .7));
}

.test-flasche-blau {
    left: 10%;
    z-index: 1;
    transform-origin: bottom center;
    animation: test-bottle-blue 3s ease-in-out infinite;
}

.test-flasche-pink {
    right: 8%;
    z-index: 2;
    transform-origin: bottom center;
    animation: test-bottle-pink 3s ease-in-out -.45s infinite;
}

.test-orbit {
    position: absolute;
    left: 50%;
    top: 51%;
    width: 96%;
    aspect-ratio: 1;
    border: 1px solid rgba(81, 173, 229, .42);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(67deg) rotateZ(15deg);
    pointer-events: none;
}

.test-orbit::after {
    position: absolute;
    top: -4px;
    left: 14%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-hs-pink);
    box-shadow: 0 0 12px 4px var(--color-hs-pink);
    content: "";
}

.test-orbit-a { animation: test-orbit-spin 7s linear infinite; }
.test-orbit-b {
    width: 73%;
    border-color: rgba(236, 0, 140, .44);
    animation: test-orbit-spin 3.7s linear reverse infinite;
}

.test-blitz {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: min(31vw, 400px);
    opacity: .93;
    pointer-events: none;
    animation: test-lightning 1.75s ease-in-out infinite;
}

.test-blitz-links {
    left: -9%;
    transform: translateY(-50%) rotate(-18deg);
}

.test-blitz-rechts {
    right: -9%;
    transform: translateY(-50%) scaleX(-1) rotate(-18deg);
    animation-delay: -2.1s;
}

.test-scroll {
    position: absolute;
    z-index: 2;
    right: max(5vw, 32px);
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
}

.test-scroll span {
    width: 1px;
    height: 36px;
    background: linear-gradient(var(--color-hs-blue), transparent);
    animation: test-scroll-line 1.7s ease-in-out infinite;
}

.test-ablauf {
    width: min(100% - 40px, 1050px);
    margin: 0 auto;
    padding: 78px 0 54px;
    text-align: center;
}

.test-ablauf h2 {
    margin: 0;
    color: var(--color-white);
    font-family: "EthnocentricRg-Regular", Verdana, sans-serif;
    font-size: clamp(22px, 3vw, 35px);
    font-weight: normal;
    line-height: 1.3;
}

.test-ablauf ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.test-ablauf li {
    min-height: 150px;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 13px;
    background: linear-gradient(140deg, rgba(81, 173, 229, .16), rgba(236, 0, 140, .1));
    transition: transform .25s ease, border-color .25s ease;
}

.test-ablauf li:hover {
    transform: translateY(-7px);
    border-color: var(--color-hs-pink);
}

.test-ablauf li span {
    color: var(--color-hs-pink);
    font-family: "EthnocentricRg-Regular", Verdana, sans-serif;
    font-size: 25px;
}

.test-ablauf li p {
    margin: 16px 0 0;
    color: var(--color-white);
    font-size: 18px;
    line-height: 1.35;
}

@keyframes test-grid-drift { to { background-position: 48px 48px; } }
@keyframes test-flash-pulse { 50% { transform: scale(1.28); opacity: .85; } }
@keyframes test-text-shine { to { background-position: 200% center; } }
@keyframes test-cta-glow { 50% { box-shadow: 0 0 22px rgba(81, 173, 229, .48); } }
@keyframes test-bottle-blue { 50% { transform: translate(-12px, -21px) rotate(-7deg); } }
@keyframes test-bottle-pink { 50% { transform: translate(13px, -25px) rotate(7deg); } }
@keyframes test-orbit-spin { to { transform: translate(-50%, -50%) rotateX(67deg) rotateZ(375deg); } }
@keyframes test-lightning { 50% { opacity: .28; filter: brightness(2.2); } }
@keyframes test-scroll-line { 50% { transform: scaleY(.35); transform-origin: top; opacity: .35; } }
@keyframes test-energy-streak { 0% { transform: translateX(0) skewX(-24deg); opacity: 0; } 18% { opacity: .95; } 100% { transform: translateX(300%) skewX(-24deg); opacity: 0; } }

@media (max-width: 760px) {
    .test-hero {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 570px;
        padding: 28px 22px 34px;
        text-align: center;
    }

    .test-hero-inhalt {
        display: contents;
    }

    .test-eyebrow { order: 0; margin-bottom: 12px; font-size: 11px; }
    .test-hero h1 { order: 1; font-size: clamp(32px, 9.5vw, 48px); }
    .test-gewinn { order: 2; margin: 12px 0 12px; font-size: 18px; }
    .test-cta { order: 4; margin-top: 4px; font-size: 16px; }

    .test-flaschen {
        order: 3;
        width: min(64vw, 270px);
        height: 255px;
        min-height: 0;
        margin: -6px 0 0;
    }

    .test-flasche { height: 92%; }
    .test-blitz { top: 48%; width: 60vw; opacity: .82; }
    .test-blitz-links { left: -31%; }
    .test-blitz-rechts { right: -31%; }
    .test-energie-linien span { width: 65%; }
    .test-scroll { display: none; }

    .test-ablauf {
        width: min(100% - 28px, 1050px);
        padding: 56px 0 36px;
    }

    .test-ablauf ol {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .test-ablauf li {
        display: flex;
        align-items: center;
        min-height: 0;
        padding: 18px;
        text-align: left;
    }

    .test-ablauf li span { flex: 0 0 58px; }
    .test-ablauf li p { margin: 0; font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
    .test-page *, .test-page *::before, .test-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Ruhige Animationsvariante der normalen Gewinnspiel-Startseite (test-index.php) */
.test-produkt-showcase {
    isolation: isolate;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    overflow: visible;
}

.gewinnspiel-main.test-main {
    overflow: visible;
}

.test-produkt-showcase .showcase-glow {
    z-index: -1;
    width: min(76%, 530px);
    opacity: .72;
    animation: test-ruhiger-glow 3.6s ease-in-out infinite;
}

.test-produkt-showcase .showcase-blitz {
    z-index: 0;
    animation: test-ruhiger-blitz-links 6s ease-in-out infinite;
}

.test-produkt-showcase .showcase-blitz-rechts {
    animation-name: test-ruhiger-blitz-rechts;
    animation-delay: -1.9s;
}

.test-produkt-showcase .showcase-blitz-links {
    left: -2%;
}

.test-produkt-showcase .showcase-flaschen {
    z-index: 1;
}

.test-produkt-showcase .showcase-flasche-blau {
    animation: test-blaues-rimlight 6s ease-in-out infinite;
}

.test-produkt-showcase .showcase-flasche-pink {
    animation: test-pinkes-rimlight 6s ease-in-out -1.9s infinite;
}

.test-licht {
    position: absolute;
    z-index: -1;
    width: min(46%, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(38px);
    opacity: .24;
    pointer-events: none;
    animation: test-ruhiges-licht 4.6s ease-in-out infinite;
}

.test-licht-blau {
    top: 17%;
    left: 18%;
    background: var(--color-hs-blue);
}

.test-licht-pink {
    right: 16%;
    bottom: 10%;
    background: var(--color-hs-pink);
    animation-delay: -2.3s;
}

.test-energie-spur {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: visible;
    pointer-events: none;
}

.test-energie-spur span {
    position: absolute;
    left: -28%;
    width: 34%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-hs-blue), transparent);
    box-shadow: 0 0 9px var(--color-hs-blue);
    opacity: 0;
    animation: test-ruhige-spur 4.2s ease-in-out infinite;
}

.test-energie-spur span:first-child { top: 32%; }
.test-energie-spur span:last-child {
    top: 69%;
    background: linear-gradient(90deg, transparent, var(--color-hs-pink), transparent);
    box-shadow: 0 0 9px var(--color-hs-pink);
    animation-delay: -2.1s;
}

@keyframes test-ruhiger-glow { 50% { transform: translateX(-50%) scale(1.1); opacity: 1; } }
@keyframes test-ruhiger-blitz-links {
    0%, 100% { transform: translateY(-49%) rotate(-12deg); opacity: .72; filter: brightness(1); }
    28%, 72% { opacity: .74; filter: brightness(1.01); }
    42%, 58% { transform: translate(2px, -49%) rotate(-11.5deg); opacity: .8; filter: brightness(1.06); }
    50% { transform: translate(4px, -49%) rotate(-11deg); opacity: .88; filter: brightness(1.12); }
}
@keyframes test-ruhiger-blitz-rechts {
    0%, 100% { transform: translateY(-49%) rotate(12deg) scaleX(-1); opacity: .72; filter: brightness(1); }
    28%, 72% { opacity: .74; filter: brightness(1.01); }
    42%, 58% { transform: translate(-2px, -49%) rotate(11.5deg) scaleX(-1); opacity: .8; filter: brightness(1.06); }
    50% { transform: translate(-4px, -49%) rotate(11deg) scaleX(-1); opacity: .88; filter: brightness(1.12); }
}
@keyframes test-blaues-rimlight {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(81, 173, 229, 0)); }
    25%, 75% { filter: brightness(1.01) drop-shadow(0 0 1px rgba(173, 229, 255, .15)); }
    40%, 60% { filter: brightness(1.04) drop-shadow(0 0 3px rgba(173, 229, 255, .42)) drop-shadow(0 0 8px rgba(81, 173, 229, .22)); }
    50% { filter: brightness(1.08) drop-shadow(0 0 4px rgba(173, 229, 255, .82)) drop-shadow(0 0 14px rgba(81, 173, 229, .55)); }
}
@keyframes test-pinkes-rimlight {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(236, 0, 140, 0)); }
    25%, 75% { filter: brightness(1.01) drop-shadow(0 0 1px rgba(255, 188, 229, .15)); }
    40%, 60% { filter: brightness(1.04) drop-shadow(0 0 3px rgba(255, 188, 229, .42)) drop-shadow(0 0 8px rgba(236, 0, 140, .22)); }
    50% { filter: brightness(1.08) drop-shadow(0 0 4px rgba(255, 188, 229, .82)) drop-shadow(0 0 14px rgba(236, 0, 140, .55)); }
}
@keyframes test-ruhiges-licht { 50% { transform: scale(1.2); opacity: .42; } }
@keyframes test-ruhige-spur { 0%, 20% { transform: translateX(0); opacity: 0; } 35% { opacity: .7; } 68%, 100% { transform: translateX(350%); opacity: 0; } }

@media (max-width: 700px) {
    .test-produkt-showcase .showcase-blitz {
        opacity: .72;
    }

    .test-produkt-showcase .showcase-blitz-links {
        left: -23%;
    }
}

/* Einheitliche Schrift auf Start- und Bestätigungsseite. */
