/* ===== NOTIFICATION POPUP STYLES ===== */
.notification-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #1a1a1a;
    border-radius: 16px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.notification-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.notification-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.notification-popup-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.notification-popup-image {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    display: block;
    object-fit: cover;
    max-height: 350px;
}

.notification-popup-buttons {
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
}

.notification-popup-btn {
    flex: 1;
    padding: 14px 24px;
    border: 1px solid #333;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #2a2a2a;
    color: white;
}

.notification-popup-btn:hover {
    background: #333;
    border-color: #444;
    transform: translateY(-1px);
}

.notification-popup-btn:active {
    transform: translateY(0);
}

/* Light theme */
html:not(.dark) .notification-popup {
    background: white;
}

html:not(.dark) .notification-popup-buttons {
    background: white;
}

html:not(.dark) .notification-popup-btn {
    background: white;
    color: #333;
    border-color: #ddd;
}

html:not(.dark) .notification-popup-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

html:not(.dark) .notification-popup-close {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

html:not(.dark) .notification-popup-close:hover {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .notification-popup {
        max-width: 95%;
        border-radius: 12px;
    }
    
    .notification-popup-image {
        border-radius: 12px 12px 0 0;
        max-height: 300px;
    }
    
    .notification-popup-buttons {
        border-radius: 0 0 12px 12px;
        padding: 15px;
        gap: 8px;
    }
    
    .notification-popup-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}