.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 300px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.notification {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.notification.deposit {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-left: 5px solid #8B0000;
}

.notification.withdraw {
    background: linear-gradient(135deg, #FF3333, #CC0000);
    border-left: 5px solid #990000;
}

.notification-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.notification-message {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    opacity: 0.7;
    font-size: 16px;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

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

.notification:hover {
    animation: float 2s ease-in-out infinite;
}
