/* ===========================================
   AEZAKMI Notification System
   ========================================== */

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.notification {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #FF8C00;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: slideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF8C00, #9B4DCA, #FF8C00);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

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

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

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.notification.hiding {
    animation: slideOut 0.3s ease-out forwards;
}

.notification-icon {
    font-size: 28px;
    flex-shrink: 0;
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.notification-content {
    flex: 1;
    color: #fff;
}

.notification-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #FF8C00;
    letter-spacing: 1px;
}

.notification-message {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #ccc;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #fff;
}

/* Notification types */
.notification.success {
    border-left-color: #00FF00;
}

.notification.success .notification-title {
    color: #00FF00;
}

.notification.error {
    border-left-color: #FF6B6B;
}

.notification.error .notification-title {
    color: #FF6B6B;
}

.notification.warning {
    border-left-color: #FFD700;
}

.notification.warning .notification-title {
    color: #FFD700;
}

.notification.info {
    border-left-color: #9B4DCA;
}

.notification.info .notification-title {
    color: #9B4DCA;
}

/* Progress bar for auto-dismiss */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #FF8C00;
    width: 100%;
    transform-origin: left;
}

.notification.success .notification-progress {
    background: #00FF00;
}

.notification.error .notification-progress {
    background: #FF6B6B;
}

.notification.warning .notification-progress {
    background: #FFD700;
}

.notification.info .notification-progress {
    background: #9B4DCA;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 15px;
    }
    
    .notification-icon {
        font-size: 24px;
    }
    
    .notification-title {
        font-size: 16px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}
