.toast{

position:fixed;

bottom:35px;

right:35px;

display:flex;

align-items:center;

gap:18px;

padding:18px 22px;

min-width:320px;

background:rgba(15,23,42,.92);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.08);

border-left:5px solid #D4AF37;

border-radius:18px;

box-shadow:0 25px 60px rgba(0,0,0,.45);

transform:translateX(420px);

opacity:0;

transition:.45s cubic-bezier(.22,1,.36,1);

z-index:99999;

}

.toast.show{

transform:translateX(0);

opacity:1;

}

.toast-icon{

width:52px;

height:52px;

border-radius:50%;

background:#D4AF37;

color:#07111F;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

font-weight:bold;

}

.toast-content{

flex:1;

}

.toast-content h4{

margin-bottom:4px;

font-size:18px;

color:white;

}

.toast-content p{

color:#A5B4C7;

font-size:15px;

}