.dm-cta-card {
    width: 351px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(162.365deg, rgb(246, 96, 147) 23.134%, rgb(246, 130, 242) 104.42%);
    position: absolute;
    overflow: hidden;
    right: 0;
    bottom: var(--spacing-xl);
}

.dm-cta-card__main-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    position: relative;
}

.dm-cta-card__text-wrapper {
    color: #ffffff;
}

.dm-cta-card__title {
    font-family: 'DailySans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
    margin-block: 0 6px;
}

.dm-cta-card__subtitle {
    font-family: 'ABC Favorit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
    margin-top: 0;
}

.dm-cta-card__decorative-icons {
    position: relative;
    min-height: 70px;
    width: 95px;
}

.dm-cta-card__icon-clapperboard {
    position: absolute;
    right: 49px;
    top: 20.49px;
    transform: translate(100%, -50%) rotate(31.145deg);
    font-size: 50px;
    line-height: 20px;
}

.dm-cta-card__icon-sparkle {
    position: absolute;
    font-size: 30px;
    line-height: 20px;
    transform: rotate(31.145deg);
}

.dm-cta-card__sparkle-1 {
    right: 79px;
    top: 10.32px;
    transform: translate(100%, -50%) rotate(31.145deg);
}

.dm-cta-card__sparkle-2 {
    right: 18px;
    top: 16.32px;
    transform: translate(100%, -50%) rotate(31.145deg);
}

.dm-cta-card__sparkle-3 {
    right: 44px;
    top: 62.32px;
    transform: translate(100%, -50%) rotate(31.145deg);
}

.dm-cta-card__button {
    background: #0d0d0d;
    height: 32px;
    padding: 13px 16px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.dm-cta-card__button:hover {
    opacity: 0.9;
}

.dm-cta-card__button:active {
    opacity: 0.8;
}

.dm-cta-card__button-text {
    font-family: 'ABC Favorit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.32px;
    color: #ffffff;
    opacity: 0.99;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .dm-cta-card {
        max-width: 100%;
    }

    .dm-cta-card__text-wrapper {
        padding-right: 80px;
    }

    .dm-cta-card__title {
        width: auto;
        max-width: 100%;
    }

    .dm-cta-card__decorative-icons {
        right: -10px;
        top: -6px;
    }
}

@media (max-width: 480px) {
    .dm-cta-card__title {
        font-size: 16px;
        line-height: 20px;
    }

    .dm-cta-card__subtitle {
        font-size: 13px;
        line-height: 17px;
    }

    .dm-cta-card__text-wrapper {
        padding-right: 60px;
    }
}