/* Notification popups */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 350px;
    max-width: 450px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid rgb(0, 255, 136);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.1);
    animation: slideInRight 0.3s ease-out;
    font-family: 'Tektur', sans-serif;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-fade-out {
    animation: slideOutRight 0.3s ease-out;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-content {
    padding: 1.5rem;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.notification-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.notification-header strong {
    flex: 1;
    color: rgb(0, 255, 136);
    font-size: 1.1rem;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.notification-close:hover {
    background: rgba(255, 68, 68, 0.1);
    color: rgb(255, 68, 68);
}

.notification-body {
    color: #e6e6e6;
}

.notification-body p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.notification-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgb(0, 255, 136) 0%, rgb(0, 204, 109) 100%);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-align: center;
}

.notification-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-popup {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Multiple notifications stacking */
.notification-popup:nth-child(n+2) {
    margin-top: 10px;
}
