<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* public/css/affiliate-ninja.css */
#affiliate-ninja-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.affiliate-ninja-content {
    position: relative;
    width: 600px;
    height: 600px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 10001;
    overflow: hidden; /* Prevent overflow of content */
}

.affiliate-ninja-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

.affiliate-ninja-close:hover {
    color: #000;
}

.affiliate-ninja-preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.affiliate-ninja-preview img {
    max-width: 90%; /* Ensure the image doesn't exceed 90% of the container's width */
    max-height: 90%; /* Ensure the image doesn't exceed 90% of the container's height */
    width: auto; /* Allow the width to adjust based on aspect ratio */
    height: auto; /* Allow the height to adjust based on aspect ratio */
    margin-bottom: 15px;
    object-fit: contain; /* Ensure the image scales while maintaining aspect ratio */
}

.affiliate-ninja-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6200;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
}

.affiliate-ninja-button:hover {
    background: #28a745;
}

#affiliate-ninja-second-chance-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

#affiliate-ninja-second-chance {
    background: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
}

#affiliate-ninja-second-chance a {
    color: #ff6200;
    text-decoration: none;
}

#affiliate-ninja-second-chance a:hover {
    color: #28a745;
    text-decoration: underline;
}

/* RTL Styles */
#affiliate-ninja-popup[dir="rtl"] .affiliate-ninja-close {
    right: auto;
    left: 10px;
}

@media (max-width: 768px) {
    .affiliate-ninja-content {
        width: 90%;
        max-width: 300px;
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
        top: 60%;
        transform: translate(-50%, -60%);
    }

    .affiliate-ninja-preview img {
        max-width: 90%;
        max-height: 80vh; /* Ensure the image fits within the viewport height on mobile */
        width: auto;
        height: auto;
    }

    #affiliate-ninja-second-chance-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}</pre></body></html>