/* Notification Overlay - Full screen darkened background */
.notification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.notification-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Notification Modal */
.notification {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 90%;
    width: 500px;
    text-align: center;
    opacity: 0;
}

.notification.show {
    display: block;
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Notification Content */
.notification h3 {
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification p {
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Notification Button */
.notification-button {
    background: linear-gradient(135deg, #00A3E4 0%, #0080b8 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.notification-button:hover {
    background: linear-gradient(135deg, #0080b8 0%, #006a99 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 163, 228, 0.3);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification {
        width: 90%;
        padding: 2rem;
    }

    .notification h3 {
        font-size: 1.5rem;
    }

    .notification p {
        font-size: 1rem;
    }
}