/* ================================
   🔥 OFFER POPUP OVERLAY
================================ */
.offer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    backdrop-filter: blur(8px);
}

/* ================================
   🔥 POPUP BOX (CYBER THEME)
================================ */
.offer-popup {
    background: rgba(13, 17, 28, 0.55);
    backdrop-filter: blur(28px) saturate(220%);
    -webkit-backdrop-filter: blur(28px) saturate(220%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 0 40px rgba(10, 132, 255, 0.12);
    width: 95%;
    max-width: 800px;
    padding: 24px;
    border-radius: 24px;
    position: relative;
    text-align: center;
    animation: popupScale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
}

/* ================================
   🔥 SCALE-IN ANIMATION
================================ */
@keyframes popupScale {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ================================
   🔥 CLOSE BUTTON
================================ */
.offer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.offer-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: #ef4444;
    transform: scale(1.1);
}

/* ================================
   🔥 POPUP IMAGE
================================ */
.offer-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ================================
   🔥 TITLE & MESSAGE
================================ */
.offer-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 70%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.offer-msg {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ================================
   🔥 CTA BUTTON
================================ */
.offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    text-decoration: none !important;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-btn:hover {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    filter: brightness(1.15);
}

.offer-btn:active {
    transform: translateY(0);
}

/* ================================
   🔥 COUNTDOWN
================================ */
.offer-countdown {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.offer-countdown span {
    color: #818cf8;
}
