.legal-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    pointer-events: none;
  }
  
  .legal-toast {
    background: linear-gradient(110deg, var(--color-purple1)  0%, var(--color-blue1)  100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    padding: 16px 20px;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    backdrop-filter: blur(10px);
  }
  
  .legal-toast.show {
    transform: translateX(0);
    opacity: 1;
  }
  
  .legal-toast.hide {
    transform: translateX(450px);
    opacity: 0;
  }
  
  .legal-toast-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
  }
  
  .legal-toast-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(110deg, var(--color-purple1)  0%, var(--color-purple5)  100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gray);
    font-size: 12px;
  }
  
  .legal-toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  .legal-toast-time {
    font-size: 12px;
    color: #ffffff;
    margin-left: auto;
  }
  
  .legal-toast-content {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  .legal-toast-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #adb5bd;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  
  .legal-toast-close:hover {
    opacity: 1;
  }
  
  @media (max-width: 480px) {
    .legal-toast-container {
      left: 10px;
      right: 10px;
      max-width: none;
    }
    
    .legal-toast {
      transform: translateY(100px);
    }
    
    .legal-toast.show {
      transform: translateY(0);
    }
    
    .legal-toast.hide {
      transform: translateY(100px);
    }
  }