.promo-glow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: transparent;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
}

.promo-glow-card {
    position: relative;
    max-width: 650px;
    width: 100%;
    background-color: #0c101b;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 0 60px rgba(235, 77, 75, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.02);
    overflow: visible;
}

/* Star Corners absolute placement */
.star-corner {
    position: absolute;
    color: #eb4d4b;
    filter: drop-shadow(0 0 8px rgba(235, 77, 75, 0.8));
    width: 20px;
    height: 20px;
}

.star-top-left {
    top: 25px;
    left: 25px;
}

.star-top-right {
    top: 25px;
    right: 25px;
}

.star-bottom-left {
    bottom: 25px;
    left: 25px;
}

.star-bottom-right {
    bottom: 25px;
    right: 25px;
}

/* Badge/Label header styles */
.promo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.promo-lbl {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.promo-badge {
    background-color: #eb4d4b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(235, 77, 75, 0.4);
    text-transform: uppercase;
}

/* Title / Offer pricing style */
.promo-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.promo-num {
    font-size: 110px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
}

.percent {
    font-size: 42px;
    font-weight: 800;
    color: #eb4d4b;
    letter-spacing: -1px;
}

/* Description paragraph */
.promo-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin: 0 auto 35px auto;
}

/* CTA Button styling */
.promo-btn-wrap {
    margin-bottom: 30px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eb4d4b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 25px rgba(235, 77, 75, 0.4);
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(235, 77, 75, 0.6);
    color: #ffffff !important;
}

/* Footer expiry styles */
.promo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.promo-footer svg {
    color: #eb4d4b;
}

/* Responsiveness adjustments */
@media (max-width: 580px) {
    .promo-num {
        font-size: 80px;
    }
    .percent {
        font-size: 32px;
    }
    .promo-glow-card {
        padding: 40px 20px;
    }
    .star-corner {
        width: 16px;
        height: 16px;
    }
    .star-top-left { top: 15px; left: 15px; }
    .star-top-right { top: 15px; right: 15px; }
    .star-bottom-left { bottom: 15px; left: 15px; }
    .star-bottom-right { bottom: 15px; right: 15px; }
}
