/* === NOTIFY SYSTEM === */
.notify-container{position:fixed;top:16px;left:50%;transform:translateX(-50%);z-index:9999;display:flex;flex-direction:column;gap:8px;pointer-events:none;max-width:340px;width:100%;align-items:center}
.notify{pointer-events:auto;padding:12px 18px;border-radius:12px;color:#fff;font-size:13px;font-weight:600;display:flex;align-items:center;gap:10px;backdrop-filter:blur(16px);box-shadow:0 8px 32px rgba(0,0,0,.4);animation:notifyIn .4s cubic-bezier(.2,1,.3,1) forwards;position:relative;overflow:hidden}
.notify::before{content:'';position:absolute;inset:0;border-radius:12px;border:1px solid rgba(255,255,255,.08);pointer-events:none}
.notify.win{background:linear-gradient(135deg,rgba(0,180,100,.92),rgba(0,120,80,.88))}
.notify.lose{background:linear-gradient(135deg,rgba(180,30,50,.92),rgba(120,20,30,.88))}
.notify.push{background:linear-gradient(135deg,rgba(80,80,120,.92),rgba(50,50,80,.88))}
.notify.info{background:linear-gradient(135deg,rgba(40,100,200,.92),rgba(30,70,150,.88))}
.notify .n-icon{font-size:20px;flex-shrink:0}
.notify .n-body{flex:1;line-height:1.4}
.notify .n-title{font-size:14px;font-weight:700}
.notify .n-amt{font-size:16px;font-weight:800;margin-top:2px}
.notify.out{animation:notifyOut .35s ease forwards}
@keyframes notifyIn{from{opacity:0;transform:translateY(-20px) scale(.9)}to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes notifyOut{from{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-20px) scale(.85)}}

/* === CRASH HISTORY === */
.crash-hist{display:flex;gap:6px;flex-wrap:wrap;padding:8px 12px;min-height:28px;justify-content:center;border-bottom:1px solid rgba(255,255,255,.06)}
.crash-hist-item{padding:3px 8px;border-radius:6px;font-size:11px;font-weight:700;color:#fff;line-height:1}
.chi-red{background:rgba(200,30,50,.7)}.chi-grn{background:rgba(0,160,80,.7)}
.chi-gold{background:rgba(180,160,0,.7)}.chi-purple{background:rgba(140,0,220,.7)}

/* === LIVE BETS TABLE === */
.live-bets{margin-top:10px;max-height:160px;overflow-y:auto;border-radius:8px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)}
.live-bets-hdr{display:grid;grid-template-columns:1fr 60px 60px;padding:6px 10px;font-size:10px;font-weight:700;color:var(--t3);text-transform:uppercase;border-bottom:1px solid rgba(255,255,255,.06)}
.live-bet-row{display:grid;grid-template-columns:1fr 60px 60px;padding:5px 10px;font-size:11px;border-bottom:1px solid rgba(255,255,255,.03);transition:background .3s}
.live-bet-row.cashed{background:rgba(0,200,100,.06)}
.live-bet-row .lb-name{display:flex;align-items:center;gap:6px;font-weight:600;color:var(--t1)}
.live-bet-row .lb-av{width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:9px;font-weight:700;color:#fff;flex-shrink:0}
.live-bet-row .lb-amt{color:var(--t2);font-weight:600;text-align:right}
.live-bet-row .lb-co{text-align:right;font-weight:700}
.live-bet-row .lb-co.pending{color:var(--t3)}.live-bet-row .lb-co.won{color:var(--grn)}
.live-bets::-webkit-scrollbar{width:4px}
.live-bets::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:4px}

/* Иконки в кнопках наследуют цвет */
.gbtn i.fa-solid,.gbtn i.fa-brands,button i.fa-solid,button i.fa-brands{color:inherit!important}

/* Hilo — плавная замена карт */
#hCuWrap{position:relative}
#hCuWrap .card3d.card-exit{transition:transform .25s ease,opacity .2s ease;transform:scale(.8) translateY(-20px);opacity:0;pointer-events:none}
#hCuWrap .card3d.card-enter{animation:hiloIn .4s ease forwards}
@keyframes hiloIn{0%{opacity:0;transform:translateY(30px) scale(.85)}100%{opacity:1;transform:translateY(0) scale(1)}}	  
#crashS{display:flex;justify-content:center;flex-direction:column;align-items:center}
