/* MARKETING POPUPS - OFFSZN PREMIUM */

.mkt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mkt-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mkt-card {
    width: 90%;
    max-width: 440px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px 30px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.mkt-theme-discount .mkt-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mkt-timer {
    animation: mkt-pulse 2s infinite ease-in-out;
}

@keyframes mkt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.mkt-overlay.active .mkt-card {
    transform: translateY(0) scale(1);
}

.mkt-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #888;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mkt-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.mkt-icon {
    width: 60px;
    height: 60px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: #fff;
}

.mkt-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.mkt-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mkt-btn {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mkt-btn:hover {
    background: #f0f0f0;
}

.mkt-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    margin-top: 12px;
}

.mkt-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mkt-header {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mkt-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.mkt-timer {
    font-family: 'Inter', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    display: block;
}

@media (max-width: 480px) {
    .mkt-card {
        padding: 30px 20px;
    }
    .mkt-title {
        font-size: 1.5rem;
    }
}
