/* Subscriber Modal Styles */

.subscriber-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.subscriber-modal.active {
    display: flex;
}

.subscriber-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(218, 7, 47, 0.3);
    box-shadow: 0 10px 40px rgba(218, 7, 47, 0.2);
}

.subscriber-modal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.subscriber-modal-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.subscriber-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.subscriber-modal-message {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.subscriber-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.subscriber-modal-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Jost', sans-serif;
}

.subscriber-modal-upgrade {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    color: white;
}

.subscriber-modal-upgrade:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 7, 47, 0.4);
}

.subscriber-modal-ok {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.subscriber-modal-ok:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .subscriber-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .subscriber-modal-title {
        font-size: 24px;
    }

    .subscriber-modal-message {
        font-size: 14px;
    }

    .subscriber-modal-buttons {
        flex-direction: column;
    }

    .subscriber-modal-btn {
        width: 100%;
    }
}
