        #toast-container-ced {
            position: fixed; bottom: -150px; left: 20px;
            width: 310px; background: rgba(10, 10, 10, 0.98); 
            border: 1px solid #209de1; border-radius: 12px;
            display: flex; align-items: center; padding: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.8);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000000; font-family: 'Poppins', sans-serif;
            backdrop-filter: blur(10px);
        }

        #toast-container-ced.active { bottom: 25px; }

        .image-box-ced { position: relative; width: 60px; height: 60px; flex-shrink: 0; }

        .image-box-ced img { width: 100%; height: 100%; border-radius: 8px; object-fit: cover; border: 1px solid #333; }

        .info-ced { flex: 1; margin-left: 14px; overflow: hidden; }

        .user-ced { font-size: 11px; color: #209de1; font-weight: 600; margin: 0; text-transform: uppercase; }

        .game-title-ced { font-size: 14px; color: #ffffff; font-weight: 700; margin: 2px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .win-value-ced { font-size: 17px; color: #209de1; font-weight: 900; margin: 0; display: flex; align-items: center; }

        .live-icon-ced { width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; margin-right: 8px; box-shadow: 0 0 8px #2ecc71; animation: flash 1.5s infinite; }

        @keyframes flash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }