.scd-wrapper {
    text-align: center;
    margin: 2rem auto;
}

.hero .scd-countdown {
    margin-top: -10rem;
}

.scd-countdown {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.scd-card {
    background: #f9f9f6;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1em;
    width: 150px;
}
.scd-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #0B4435;
}
.scd-label {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #0B4435;
}

/* Countdown beendet Text */
.scd-finished {
    font-size: 1.5em;
    font-weight: bold;
    color: #0B4435;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Feuerwerk Emoji Effekt */
body.scd-firework::before {
    content: "🎆🎉🎇";
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: burst 0.6s ease-out infinite;
    pointer-events: none;
    z-index: 9999;
}
@keyframes burst {
    0% { transform: translate(-50%, 0) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50px) scale(1.5); opacity: 0; }
}
