/* =========================================================
   MEMORY STAR KIDS – FRONTEND
   ========================================================= */

.mskg-app {
    max-width: 1060px;
    margin: 20px auto;
    color: #35254a;
    font-family: inherit;
}

.mskg-panel {
    position: relative;
    
    background: #fff;
    
    border-radius: 10px;
    /*box-shadow: 0 2px 8px rgba(53, 30, 91, .04);border: 1px solid #e6e1eb; padding: 32px;*/
}

.mskg-hidden,
.mskg-spin-button[hidden],
.mskg-voucher-button[hidden] {
    display: none !important;
}

/* Begrüßung */

.mskg-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 0 !important;
 margin-top:-35px;
}

.mskg-hero-copy {
    order: 1;
    flex: 1;
}

.mskg-gift {
    order: 2;
}
.mskg-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mskg-main-title {
    margin: 0 0 2px !important;
    color: #6fba32;
    background: none;
    font: inherit;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.08;
}

.mskg-hero p {
    max-width: 700px;
    margin: -4px 0 0;
    font-size: 17px;
    line-height: 1.35;
}

/* Kursauswahl */

.mskg-question {
    margin: 24px 0 4px;
    color: #4f2d7f;
    font: inherit;
    font-size: 24px;
    font-weight: 700;
}

.mskg-two {
    margin-bottom: 6px !important;
}

.mskg-selection-help {
    margin: 0 0 10px !important;
}

.mskg-interests {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.mskg-interest {
    position: relative;
    display: block;
}

.mskg-interest input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mskg-interest-card {
    position: relative;
    display: block;
    min-height: 210px;
    height: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    background: var(--soft);
    border: 2px solid color-mix(in srgb, var(--accent) 70%, white);
    border-radius: 12px;
    cursor: pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease,
        border-color .18s ease;
}

.mskg-interest-card:hover {
    transform: translateY(-3px);
    background: var(--hover);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(46, 32, 74, .12);
}

.mskg-interest-card strong {
    display: block;
    margin: 14px 0 8px;
    color: var(--accent);
    font-size: 20px;
    line-height: 1.15;
}

.mskg-interest-card small {
    display: block;
    color: #403746;
    font-size: 15px;
    line-height: 1.45;
}

.mskg-interest-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    background: color-mix(in srgb, var(--accent) 76%, white);
    border-radius: 50%;
    color: #fff;
    font-size: 29px;
    font-weight: 900;
}

.mskg-interest--mental .mskg-interest-icon,
.mskg-interest--mnemo .mskg-interest-icon {
    font-size: 34px;
}

.mskg-interest--all .mskg-interest-icon {
    font-size: 40px;
}

.mskg-course-svg {
    display: block;
    width: 46px;
    height: 46px;
}

.mskg-check {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 6px;
    color: transparent;
    font-weight: 900;
}

.mskg-interest input:checked + .mskg-interest-card {
    background: var(--hover);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.mskg-interest input:checked + .mskg-interest-card .mskg-check {
    background: var(--accent);
    color: #fff;
}

.mskg-interest--mental {
    --accent: #35a9e5;
    --soft: #f3fbff;
    --hover: #dff4fd;
}

.mskg-interest--mnemo {
    --accent: #7bbd35;
    --soft: #f7fcf2;
    --hover: #e8f6dc;
}

.mskg-interest--einmaleins {
    --accent: #8c59b6;
    --soft: #fbf8fd;
    --hover: #eee5f7;
}

.mskg-interest--all {
    --accent: #ff9000;
    --soft: #fffaf2;
    --hover: #fff0d8;
}

/* Hinweise, Code und Bedingungen */

.mskg-hint {
    margin: 16px 0 24px;
    padding: 12px 14px;
    background: #fff8e9;
    border: 1px solid #f2d9a8;
    border-radius: 9px;
    color: #5e513f;
}

.mskg-hint strong {
    color: #e98600;
}

.mskg-code-wrap {
    max-width: 720px;
    margin-top: 8px;
    text-align: left;
}

.mskg-code-wrap > label {
    display: block;
    margin-bottom: 6px;
    color: #4f2d7f;
    font: inherit;
    font-size: 21px;
    font-weight: 400;
}

.mskg-code-help {
    margin: 0 0 10px;
    color: #6d6574;
    font-size: 14px;
}

.mskg-code-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: #fff;
    border: 2px solid #7a4ba5;
    border-radius: 8px;
    transition: box-shadow .18s ease, border-color .18s ease;
}

.mskg-code-field:focus-within {
    box-shadow: 0 0 0 3px rgba(116, 80, 161, .12);
}

.mskg-code-field > span {
    font-size: 25px;
}

.mskg-code {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0;
    font: inherit;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.mskg-code-field.mskg-error {
    border-color: #ba4c66;
}

.mskg-test-note {
    margin: 8px 0 0;
    color: #76508e;
    font-size: 13px;
}

.mskg-terms-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #5f5665;
    font-size: 16px;
    line-height: 1.4;
}

.mskg-terms-check input {
    flex: 0 0 auto;
    margin: 0;
}

.mskg-terms-check a,
.mskg-footer-links a {
    color: #6d3ea0;
}

.mskg-action-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
}

.mskg-action-row small {
    color: #777;
}

.mskg-message {
    min-height: 24px;
    margin-top: 10px;
    color: #a03755;
    font-weight: 600;
}

/* Allgemeine Buttons */

.mskg-button,
.mskg-prize-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: #7bd023;

    border: 2px solid #7bd023;   /* вместо border:0 */

    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
}

.mskg-button:hover,
.mskg-prize-button:hover {
   background: #fff!important;
   color: #7bd023!important;
   border: 2px solid #7bd023 !important;
}

.mskg-button:disabled {
    opacity: .6;
    cursor: wait;
}

.mskg-voucher-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 6px 0;
    padding: 12px 20px;
    background: #e57d28;
    border: 2px solid #cd7024;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.mskg-voucher-button:hover {
    border: 2px solid #cd7024;
    background: #fff !important;
    color: #e57d28 !important;
}

/* Maskottchen und Footer */

.mskg-brain {
    position: absolute;
    right: 55px;
    bottom: 250px;
    width: 180px;
    height: auto;
}

.mskg-result-brain {
    width: 120px;
    margin: 14px auto 0;
}

.mskg-footer-links {
    display: flex;
    gap: 22px;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #eee6f2;
    font-size: 13px;
}

/* =========================================================
   GLÜCKSRAD
   ========================================================= */

.mskg-result {
    position: relative;
    overflow: hidden;
    padding: 34px 24px;
    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(188, 76, 255, .48) 0%,
            rgba(112, 28, 174, .28) 34%,
            transparent 62%
        ),
        linear-gradient(
            180deg,
            #31064f 0%,
            #541080 48%,
            #7c25b5 100%
        );
    border-color: #6f35a5;
    text-align: center;
}

.mskg-result > h2 {
    position: relative;
    z-index: 100;
    margin: 0 0 24px !important;
    color: #e0751d;
    font: inherit;
    font-size: 30px;
    font-weight: 700;
    text-shadow: none;
}

.mskg-wheel-stage {
    position: relative;
    z-index: 1;
    width: min(430px, 86vw);
    height: min(430px, 86vw);
margin: 85px auto 18px;
    isolation: isolate;
}

.mskg-wheel-stage::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: -85px;
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 30%, #fff 0 2px, transparent 4px),
        radial-gradient(circle at 22% 70%, #ffd75a 0 2px, transparent 5px),
        radial-gradient(circle at 35% 8%, #fff 0 2px, transparent 5px),
        radial-gradient(circle at 52% 94%, #f7a8ff 0 2px, transparent 5px),
        radial-gradient(circle at 68% 12%, #ffd75a 0 2px, transparent 5px),
        radial-gradient(circle at 82% 34%, #fff 0 2px, transparent 5px),
        radial-gradient(circle at 91% 65%, #ffd75a 0 2px, transparent 5px),
        radial-gradient(circle at 73% 88%, #fff 0 2px, transparent 5px),
        radial-gradient(
            circle at center,
            rgba(236, 104, 255, .62) 0%,
            rgba(183, 54, 238, .34) 43%,
            transparent 72%
        );
    filter:
        blur(.2px)
        drop-shadow(0 0 8px #fff)
        drop-shadow(0 0 16px #d95cff);
    animation: mskg-stars-glow 1.8s ease-in-out infinite alternate;
}

.mskg-wheel-stage::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -38px;
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 24px rgba(255, 210, 55, .9),
        0 0 55px rgba(222, 92, 255, .75),
        0 0 95px rgba(155, 45, 225, .55);
}

.mskg-wheel-rotator {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    will-change: transform;
}

.mskg-wheel {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 9px solid #e3a719;
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 3px #fff1a1,
        inset 0 0 18px rgba(126, 65, 0, .38),
        0 0 0 3px #a96700,
        0 5px 18px rgba(0, 0, 0, .38),
        0 0 22px rgba(255, 208, 45, .95);
    transition: none;
}

.mskg-wheel-labels {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    transition: none;
}

.mskg-wheel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 0;
    transform-origin: 0 0;
    pointer-events: none;
}

.mskg-wheel-label span {
    position: absolute;
    top: 0;
    left: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    min-height: 46px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    color: #402859;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.12;
    overflow-wrap: break-word;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .85);
}

.mskg-wheel-label span.is-flipped {
    right: auto;
    left: 122px;
    transform: translate(-50%, -50%) rotate(180deg);
}

.mskg-lights-ring {
    position: absolute;
    z-index: 2;
    inset: -20px;
    background: transparent;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    pointer-events: none;
}

.mskg-lights-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    border: 18px solid #e7a817;
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 3px #fff1a0,
        inset 0 0 10px rgba(90, 41, 0, .75),
        0 0 0 2px #8b4c00,
        0 0 18px rgba(255, 194, 31, .9);
}

.mskg-bulb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px;
    transform: rotate(var(--angle)) translateY(-226px);
    background: #fffbea;
    border: 2px solid #ffdc62;
    border-radius: 50%;
    box-shadow:
        0 0 5px #fff,
        0 0 11px #fff4b0,
        0 0 20px #ffc21c,
        0 0 30px rgba(255, 173, 0, .75);
    animation: mskg-bulb-glow 1.1s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

.mskg-pointer {
    position: absolute;
    z-index: 6;
    top: -26px;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-top: 48px solid #f3b51c;
    border-right: 23px solid transparent;
    border-left: 23px solid transparent;
    filter:
        drop-shadow(0 3px 0 #8c4b00)
        drop-shadow(0 0 9px rgba(255, 218, 80, .9));
}

.mskg-wheel-center {
    position: absolute;
    z-index: 7;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 6px solid #b56c00;
    border-radius: 50%;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        inset 0 0 0 4px #ffd95d,
        0 5px 12px rgba(0, 0, 0, .34),
        0 0 18px rgba(255, 200, 40, .85);
}

.mskg-wheel-status {
    min-height: 26px;
    color: #66546f;
    font-weight: 700;
}

.mskg-spin-button {
    position: relative;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 245px;
    margin:50px auto 16px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f6a04f 0%, #e0751d 100%);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(224, 117, 29, .35);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.mskg-spin-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffaf60 0%, #c96112 100%);
    box-shadow: 0 11px 22px rgba(224, 117, 29, .45);
    color: #fff;
}

.mskg-spin-button:active {
    transform: translateY(0);
    background: #c9600f;
}

.mskg-spin-button:disabled {
    opacity: .7;
    cursor: wait;
    transform: none;
}

/* Gewinnkarte */

.mskg-prize-card {
    position: relative;
    max-width: 650px;
    margin: 16px auto 0;
    padding: 22px;
    background: #fff;
    border: 2px solid #d9cae6;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: .55s ease;
}

.mskg-prize-card.is-visible {
    opacity: 1;
    transform: none;
}

.mskg-prize-card h2 {
    font-family: Neucha !important;
    font-size: 28px;
}

.mskg-stars {
    margin-bottom: 8px;
    font-size: 27px;
}

.mskg-prize-image {
    max-width: 260px;
    max-height: 220px;
    margin: 5px auto 14px;
    object-fit: contain;
}

.mskg-prize-valid {
    color: #6b547e;
    font-weight: 700;
}

.mskg-course-note {
    margin-top: 11px;
    color: #665d70;
    font-size: 14px;
}

.mskg-prize-button {
    margin-top: 14px;
    font-size: 16px;
}

/* Animationen */

.mskg-wheel-win {
    animation: mskg-wheel-win .9s ease;
}

.mskg-wheel-stage.mskg-stage-win {
    animation: mskg-stage-win 1.1s ease;
}

.mskg-confetti-star {
    position: absolute;
    z-index: 999;
    pointer-events: none;
    font-size: 24px;
    animation: mskg-confetti-fly 2.3s cubic-bezier(.12, .8, .2, 1) forwards;
}

@keyframes mskg-wheel-win {
    0% { transform: scale(1); }
    35% { transform: scale(1.06); }
    65% { transform: scale(.98); }
    100% { transform: scale(1); }
}

@keyframes mskg-stage-win {
    0%, 100% {
        filter:
            drop-shadow(0 0 14px rgba(255, 210, 70, .8))
            drop-shadow(0 0 34px rgba(224, 101, 255, .65));
    }

    45% {
        transform: scale(1.045);
        filter:
            brightness(1.25)
            drop-shadow(0 0 28px #fff4a5)
            drop-shadow(0 0 60px #f67cff);
    }
}

@keyframes mskg-bulb-glow {
    from {
        opacity: .65;
        filter: brightness(.9);
    }

    to {
        opacity: 1;
        filter: brightness(1.4);
        box-shadow:
            0 0 7px #fff,
            0 0 15px #fff2a2,
            0 0 26px #ffb000;
    }
}

@keyframes mskg-stars-glow {
    from {
        opacity: .7;
        transform: scale(.98);
    }

    to {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes mskg-confetti-fly {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.5) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform:
            translate(
                calc(-50% + var(--x)),
                calc(-50% + var(--y))
            )
            scale(1.3)
            rotate(360deg);
    }
}

/* =========================================================
   GUTSCHEIN
   ========================================================= */

body.mskg-voucher-page {
    margin: 0;
    padding: 32px 18px;
    background: #f4eff8;
    color: #35254a;
    font-family: Arial, Helvetica, sans-serif;
}

.mskg-voucher-page *,
.mskg-voucher-page *::before,
.mskg-voucher-page *::after {
    box-sizing: border-box;
}

.mskg-voucher-page .voucher {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    padding: 46px;
    background: #fff;
    border: 3px solid #7442a4;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(62, 31, 88, .18);
    text-align: center;
}

.mskg-voucher-page .voucher::before,
.mskg-voucher-page .voucher::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(126, 205, 45, .12);
    border-radius: 50%;
}

.mskg-voucher-page .voucher::before {
    top: -120px;
    left: -100px;
}

.mskg-voucher-page .voucher::after {
    right: -110px;
    bottom: -130px;
    background: rgba(120, 65, 167, .11);
}

.mskg-voucher-page .brand {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.mskg-voucher-page .brand img {
    display: block;
    width: 200px;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.mskg-voucher-page .gift {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    font-size: 54px;
}

.mskg-voucher-page h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 0px;
    color: #6ebc25;
    font-size: 38px;
    line-height: 1.15;
}

.mskg-voucher-page .intro {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    font-size: 19px;
}

.mskg-voucher-page .prize {
    position: relative;
    z-index: 1;
    margin: 0 auto 26px;
    padding: 25px 22px;
    background: #faf7fc;
    border: 1px solid #c8a2e9;
    border-radius: 18px;
}

.mskg-voucher-page .prize-label {
    margin-bottom: 8px;
    color: #6e6474;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.mskg-voucher-page .prize-title {
    color: #4f2d7f;
    font-size: 31px;
    font-weight: 900;
    line-height: 1.2;
}

.mskg-voucher-page .description {
    margin: 14px 0 0;
    font-size: 17px;
    line-height: 1.5;
}

.mskg-voucher-page .details {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.mskg-voucher-page .detail {
    padding: 15px;
    background: #f3eef7;
    border-radius: 12px;
}

.mskg-voucher-page .detail small {
    display: block;
    margin-bottom: 5px;
    color: #756b7a;
    font-size: 13px;
}

.mskg-voucher-page .detail strong {
    display: block;
    color: #4f2d7f;
    font-size: 18px;
    overflow-wrap: anywhere;
}

.mskg-voucher-page .teacher-note {
    position: relative;
    z-index: 1;
    margin: 22px 0;
    padding: 16px 18px;
    background: #f3faeb;
    border: 1px solid #79c82c;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.mskg-voucher-page .buttons {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.mskg-voucher-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    background: #7442a4;
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.mskg-voucher-page .button-register {
    background: #74c527;
}

.mskg-voucher-page .footer {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    color: #756b7a;
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive */

@media (max-width: 850px) {
    .mskg-interests {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mskg-brain {
        position: static;
        display: block;
        margin: 18px auto 0;
    }

    .mskg-action-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    body.mskg-voucher-page {
        padding: 12px;
    }

    .mskg-voucher-page .voucher {
        padding: 30px 20px;
    }

    .mskg-voucher-page h1 {
        font-size: 31px;
    }

    .mskg-voucher-page .prize-title {
        font-size: 25px;
    }

    .mskg-voucher-page .details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .mskg-app {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .mskg-panel {
        padding: 20px;
    }

.mskg-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.mskg-hero-copy {
    display: block;
    order: 1;
    width: 100%;
}

.mskg-gift {
    order: 2;
    width: 100%;
    height: 230px;
    margin: 0;
    overflow: hidden;
}

.mskg-gift-video {
    display: block;
    width: 280px;
    max-width: 100%;
    height: 230px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.mskg-main-title {
    width: 100%;
    margin: 0 0 12px !important;
    font-size: 29px !important;
    line-height: 41px !important;
    letter-spacing: 1px !important;
    text-align: center;
}

.mskg-hero p {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    text-align: center;
}

   
    .mskg-interests {
        grid-template-columns: 1fr;
    }

    .mskg-interest-card {
        min-height: 0;
    }

    .mskg-action-row {
        display: block;
    }

    .mskg-action-row small {
        display: block;
        margin-top: 10px;
    }

    .mskg-button {
        width: 100%;
    }

    .mskg-result {
        width: 100vw;
        max-width: none;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        padding: 32px 14px 48px;
        border: 0;
        border-radius: 0;
        box-sizing: border-box;
    }

    .mskg-result > h2 {
        margin-bottom: 18px !important;
    }

    .mskg-result .mskg-wheel-stage {
        width: calc(100vw - 72px);
        height: calc(100vw - 72px);
        max-width: 390px;
        max-height: 390px;
        margin: 58px auto 10px;
    }

    .mskg-result .mskg-lights-ring {
        inset: -8px;
    }

    .mskg-result .mskg-lights-ring::before {
        inset: 0;
        border-width: 11px;
    }

    .mskg-result .mskg-bulb {
        width: 10px;
        height: 10px;
        margin: -5px;
        transform: rotate(var(--angle)) translateY(calc(-50vw + 28px));
    }

    .mskg-result .mskg-wheel-stage::before {
        inset: -25px;
    }

    .mskg-result .mskg-wheel-stage::after {
        inset: -13px;
    }

    .mskg-result .mskg-pointer {
        top: -24px;
    }

    .mskg-wheel-center {
        width: 66px;
        height: 66px;
        border-width: 5px;
        font-size: 34px;
    }

    .mskg-wheel-label span {
        left: 94px;
        width: 78px;
        min-height: 38px;
        font-size: 12px;
        line-height: 1.06;
    }

    .mskg-wheel-label span.is-flipped {
        right: auto;
        left: 94px;
    }

    .mskg-result .mskg-spin-button {
        width: calc(100% - 28px);
        min-width: 0;
    }
}

/* Druckansicht */

@media print {
    @page {
        size: A4;
        margin: 14mm;
    }

    body.mskg-voucher-page {
        padding: 0;
        background: #fff;
    }

    .mskg-voucher-page .voucher {
        max-width: none;
        border-radius: 0;
        box-shadow: none;
    }

    .mskg-voucher-page .buttons {
        display: none;
    }
}
.mskg-prize-button,
.mskg-prize-button:visited {
    background: #7bd023 !important;
    border: 2px solid #7bd023 !important;
    color: #fff !important;
}

.mskg-prize-button:hover,
.mskg-prize-button:focus,
.mskg-prize-button:active {
    background: #fff !important;
    border: 2px solid #7bd023 !important;
    color: #7bd023 !important;
}
.mskg-app button.mskg-prize-button,
.mskg-app button.mskg-prize-button:visited {
    background: #7bd023 !important;
    border: 2px solid #7bd023 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.mskg-app button.mskg-prize-button:hover,
.mskg-app button.mskg-prize-button:focus,
.mskg-app button.mskg-prize-button:active {
    background: #ffffff !important;
    border: 2px solid #7bd023 !important;
    color: #7bd023 !important;
    -webkit-text-fill-color: #7bd023 !important;
    opacity: 1 !important;
    transform: none !important;
}

.mskg-gift {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 260px;
    height: 220px;
    flex-shrink: 0;
    overflow: visible;
    margin-top: -60px;
}

.mskg-gift-video {
    display: block;
    width: 230px;
    height: auto;
    object-fit: contain;
    object-position: center top;
    margin-top: 75px;
    margin-left: -50px;
}

.mskg-form {
    position: relative;
}

.mskg-bottom-gift {
    position: absolute;
    right: 55px;
    bottom: 110px;
    z-index: 1;
    font-size: 80px;
    line-height: 1;
    pointer-events: none;
}
.mskg-main-title {
    line-height: 1.05;
}
.mskg-main-title br {
    display: block;
}
.mskg-app h1.mskg-main-title {
    margin: 20px 0 2px !important;

    font-family: "ObelixProWeb", sans-serif !important;
    font-size: 35.2px !important;
    font-weight: 400 !important;
    line-height: 54px !important;
    letter-spacing: 1.76px !important;

    background-image: linear-gradient(
        90deg,
        #f49bed 0%,
        #d3b1f8 25%,
        #79b7f2 50%,
        #98ce89 75%,
        #95ce51 100%
    ) !important;

    background-size: 200% auto !important;
    background-position: 0% 94%;

    background-clip: text !important;
    -webkit-background-clip: text !important;

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;

    animation-name: mskg-heading-colors !important;
    animation-duration: 10s !important;
    animation-timing-function: ease !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
}

@-webkit-keyframes mskg-heading-colors {
    0% {
        background-position: 0% 94%;
    }

    50% {
        background-position: 100% 7%;
    }

    100% {
        background-position: 0% 94%;
    }
}

@keyframes mskg-heading-colors {
    0% {
        background-position: 0% 94%;
    }

    50% {
        background-position: 100% 7%;
    }

    100% {
        background-position: 0% 94%;
    }
}
@media (max-width: 540px) {

    .mskg-hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        min-height: 0 !important;
        margin-bottom: 25px !important;
    }

    .mskg-hero-copy {
        position: relative !important;
        order: 1 !important;
        width: 100% !important;
        z-index: 2 !important;
    }

    .mskg-gift {
        position: static !important;
        order: 2 !important;
        width: 100% !important;
        height: auto !important;
        -20px 0 -15px !important
        transform: none !important;
        overflow: visible !important;
    }

    .mskg-gift-video {
        display: block !important;
        width: 220px !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        object-position: center top !important;
    }
}
.mskg-message:not(:empty) {
    margin-top: 12px;
    color: #b8324a !important;
    font-weight: 700;
}