/* Notification System */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    z-index: 10000;
    pointer-events: none;
}

.notification {
    background: rgba(20, 20, 35, 0.95);
    color: var(--gaming-text);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--gaming-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    cursor: pointer;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    overflow: hidden;
    position: relative;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(100%);
    opacity: 0;
}

.notification-icon {
    font-size: 1.2em;
}

.notification-message {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: currentColor;
    width: 100%;
    opacity: 0.8;
}

/* Notification Types */
.notification-success {
    border-color: var(--gaming-green);
    color: var(--gaming-green);
}

.notification-success .notification-progress {
    background: var(--gaming-green);
}

.notification-error {
    border-color: var(--gaming-red);
    color: var(--gaming-red);
}

.notification-error .notification-progress {
    background: var(--gaming-red);
}

.notification-info {
    border-color: var(--gaming-primary);
    color: var(--gaming-primary);
}

.notification-info .notification-progress {
    background: var(--gaming-primary);
}

.notification-warning {
    border-color: var(--gaming-accent);
    color: var(--gaming-accent);
}

.notification-warning .notification-progress {
    background: var(--gaming-accent);
}