#gpf-container{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  pointer-events: none;
}
.gpf-toast{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 360px;
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: auto;
}
.gpf-toast.gpf-show{
  transform: translateY(0);
  opacity: 1;
}
.gpf-avatar{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981, #6366F1);
  font-weight: 800;
  letter-spacing: .5px;
}
.gpf-content{
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.gpf-line1{
  font-size: 14px;
  font-weight: 700;
}
.gpf-line2{
  font-size: 12px;
  opacity: .8;
}
@media (max-width: 480px){
  .gpf-toast{ min-width: 240px; padding: 10px 12px; }
  .gpf-line1{ font-size: 13px; }
}
