/**
 * Modern Popup Style - Frosted White Glass (Recommended)
 * Version: 3.3
 */

#ccp-popup-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#ccp-popup-container {
    /* ✨ تغییر اصلی اینجاست: پس‌زمینه سفید و مات */
    background: rgba(255, 255, 255, 0.35); /* پس‌زمینه سفید با شفافیت */
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    padding: 35px 45px;
    border-radius: 16px;
    position: relative;
    max-width: 90%;
    width: 520px;
    text-align: center;
    font-family: inherit;
    animation: ccp-fade-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes ccp-fade-in {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

#ccp-close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    /* ✨ تغییر رنگ دکمه برای هماهنگی با طرح روشن */
    background: rgba(0, 0, 0, 0.1);
    color: #222; /* رنگ تیره آیکون */
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    line-height: 35px;
    transition: all 0.3s ease;
}

#ccp-close-btn:hover {
    background: rgba(228, 77, 66, 0.8);
    color: #fff;
    transform: rotate(180deg) scale(1.1);
}

.ccp-popup-content .ccp-text {
    margin-bottom: 30px;
    line-height: 1.8;
    /* ✨ تغییر رنگ متن به تیره برای خوانایی روی پس‌زمینه روشن */
    color: #111;
    font-weight: 500; /* کمی ضخیم‌تر برای خوانایی بهتر */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4); /* سایه روشن برای حس بهتر */
}

#ccp-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1px;
    direction: rtl;
}

#ccp-countdown-timer .timer-box {
    /* ✨ تغییر استایل باکس‌های تایمر */
    background: rgba(255, 255, 255, 0.3);
    padding: 12px 18px;
    border-radius: 10px;
    min-width: 75px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#ccp-countdown-timer .timer-box span {
    display: block;
    font-weight: bold;
    /* ✨ تغییر رنگ اعداد به تیره */
    color: #111;
}

#ccp-countdown-timer .timer-box span:first-child {
    font-size: 30px;
    font-weight: 700;
}

#ccp-countdown-timer .timer-box span:last-child {
    font-size: 11px;
    color: #333;
    margin-top: 5px;
}