/* Reset and Base Styles */
        .demo-container {
            text-align: center;
            max-width: 400px;
            margin: 0 auto;
        }
        h1 {
            margin-bottom: 20px;
            color: #00d4ff;
        }
        /* Notification Styles */
        .notification-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            max-width: 350px;
            min-width: 250px;
            }
               @media (max-width: 480px) {
            .notification-container {
                bottom: 10px;
                left: 10px;
                top: auto;
                right: auto;
                max-width: 300px;
            }
        }
        .notification {
    transform: translateX(-100%);
}
.notification.show {
    transform: translateX(0);
}
.notification.closing {
    transform: translateX(-100%);
}
        .notification {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 10px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            gap: 12px;
            visibility: hidden;
            position: relative;
            width: 100%;
            z-index: 1;
        }
        .notification.show {
            opacity: 1;
            transform: translateX(0);
            visibility: visible;
            z-index: 2;
        }
        .notification.closing {
            opacity: 0;
            transform: translateX(100%);
            visibility: hidden;
            z-index: 1;
        }
        .notification-icon {
            font-size: 24px;
            flex-shrink: 0;
        }
        .notification.deposit .notification-icon { color: #10b981; } /* Green */
        .notification.withdrawal .notification-icon { color: #ef4444; } /* Red */
        .notification.profit .notification-icon { color: #f59e0b; } /* Amber */
        .notification-content {
            flex: 1;
            min-width: 0;
        }
        .notification-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: white !important;
            
        }
        .notification-details {
            font-size: 14px;
            color: white !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .notification-amount {
            font-weight: 600;
            color: green !important;
        }
        .notification-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            cursor: pointer;
            padding: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }
        .notification-close:hover {
            background: rgba(0, 0, 0, 0.1);
            color: black !important;
        }
        @media (max-width: 480px) {
            .notification {
                padding: 12px;
                gap: 8px;
                color: white !important;
            }
            .notification-title {
                font-size: 14px;
                color: white !important;
            }
            .notification-details {
                color: white !important;
                font-size: 12px;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
        }