h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, sans-serif, Inter, system-ui, sans-serif;
  }
  body {
    font-family: Poppins, sans-serif, Inter, system-ui, sans-serif;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup {
    /* background-color: #1e1e1e; */
    background-color: #FEF1EC;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 450px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #FF9900;
    margin-bottom: 1rem;
  }
  
  .popup p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    /* color: #e0e0e0; */
    color: #000;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
  }
  
  .btn-primary {
    background-color: #FF9900;
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #e6394e;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #131212;
    border: 1px solid #444;
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #784f4f;
  }
  