.cta-fix {
    min-width: 250px;
    max-width: 250px;
    height: 50px;
    line-height: 50px;
    padding: 0 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
  }
    .cta-button {
    font-size: 16px;
    font-weight: 700;
    border-radius: 9999px;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
  }
  
    @keyframes pulse-icon {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.75; }
    }
  
    [data-result].ring-4 {
      border-width: 2px;
      border-style: solid;
      border-color: #facc15;
      box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
    }
  
    .glow-border {
      box-shadow: 0 0 15px 3px rgba(250, 204, 21, 0.5) !important;
    }
  
    @keyframes glow {
      0% { text-shadow: 0 0 5px #0ff; }
      50% { text-shadow: 0 0 15px #0ff; }
      100% { text-shadow: 0 0 5px #0ff; }
    }
  
    .animate-glow {
      animation: glow 1.5s ease-in-out infinite alternate;
    }
  
    #aiModal {
      display: none;
    }
  
    #aiModal.show {
      display: flex;
    }
  
    .no-screenshot::after {
      content: "MBAHGHOIB";
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 48px;
      color: rgba(255,255,255,0.08);
      pointer-events: none;
      user-select: none;
      z-index: 9999;
      white-space: nowrap;
    }
  
    #notif-toast {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      background-color: #facc15;
      color: #1e293b;
      padding: 0.75rem 1.25rem;
      border-radius: 0.5rem;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 9999;
      display: none;
    }
    
  html, body {
    scroll-padding-top: 70px;
    padding-top: 70px;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-padding-top: 0px;
    padding-top: 0px;
    box-sizing: border-box;
  }
  
  #pwaWrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 9999;
  }
  
  #pwaPopupBanner {
    background: #e6ee74;
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    text-align: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    #pwaPopupBanner {
      flex-direction: column;
      padding: 1rem;
      gap: 0.75rem;
    }
  }
  
  #triggerInstall {
    background: #111827;
    color: #facc15;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  
  #triggerInstall:hover {
    background: #0f172a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  #closePwa {
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 900;
    color: #dc2626;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  #closePwa:hover {
    color: #b91c1c;
  }
  
 .hidden {
    display: none !important;
  }