/**
 * CopyProtect Plus - Frontend Styles
 * این فایل برای استایل‌دهی به نوتیفیکیشن و المان‌های نمایشی در سایت استفاده می‌شود
 */

.cpp-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    z-index: 999999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    direction: rtl;
    font-family: 'IRANSans', Tahoma, 'Segoe UI', 'San Francisco', sans-serif;
    display: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cpp-notification.success {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.cpp-notification.warning {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.cpp-notification.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.cpp-notification a {
    color: #f1c40f;
    text-decoration: underline;
}

.cpp-notification a:hover {
    color: #f39c12;
    text-decoration: none;
}

/* برای موبایل */
@media (max-width: 768px) {
    .cpp-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        text-align: center;
        font-size: 12px;
        padding: 10px 16px;
        border-radius: 30px;
    }
}

/* انیمیشن ملایم */
@keyframes cppFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cpp-notification {
    animation: cppFadeInUp 0.3s ease-out;
}