   .toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: white;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    padding: 18px 20px 20px 60px;
    transform: translateY(120px) scale(0.9);
    opacity: 0;
    transition: all 0.45s cubic-bezier(.21,1.02,.73,1);
    z-index: 1000;
  }
 
 .toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .toast::before {
    content: "📢";
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 24px;
  }

  .toast h4 {
    margin: 0 0 6px;
    color: white;
    font-size: 16px;
  }

  .toast p {
    margin: 0 0 12px;
    font-size: 14px;
    opacity: 0.9;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 24px;
    color: rgba(255,255,255,0.8);
  }

  .close-btn:hover {
    color: white;
  }

  .socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .socials a {
    text-decoration: none;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.2);
    color: white;
    transition: 0.2s;
  }

  .socials a:hover {
    background: white;
    color: #ff3d00;
  }
