  h1 {
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      color: #222;
    }

    /* Trigger Button */
    .trigger-btn {
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      color: #fff;
      padding: 0.9rem 1.8rem;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 500;
      box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .trigger-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    }


/*Start*/

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
  z-index: 9999;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: popIn 0.3s ease forwards;
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.btn {
  margin: 10px 0;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-anon {
  background: #1e4da5;
  color: white;
}

.btn-reveal {
  background: #f2f2f2;
  color: #111;
}

.close-btn {
  background: none;
  border: none;
  float: right;
  cursor: pointer;
}








/*Finish*/




    /* Overlay */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Modal Box */
    .modal {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      max-width: 420px;
      width: 90%;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transform: scale(0.8);
      transition: transform 0.3s ease;
      position: relative;
      animation: fadeInUp 0.35s ease forwards;
    }

    .modal-overlay.active .modal {
      transform: scale(1);
    }

    @keyframes fadeInUp {
      from {
        transform: translateY(30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal h2 {
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
      color: #222;
    }

    .modal p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1.5rem;
    }

    /* Buttons */
    .btn {
      border: none;
      cursor: pointer;
      padding: 0.8rem 1.2rem;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin: 0.4rem 0;
      transition: all 0.25s ease;
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .btn-anon {
      background: #f3f4f6;
      color: #333;
    }

    .btn-anon:hover {
      background: #e5e7eb;
    }

    .btn-reveal {
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      color: #fff;
    }

    .btn-reveal:hover {
      background: linear-gradient(135deg, #1d4ed8, #2563eb);
    }

    .close-btn {
      background: none;
      border: none;
      position: absolute;
      top: 1rem;
      right: 1rem;
      cursor: pointer;
      color: #555;
      transition: color 0.2s;
    }

    .close-btn:hover {
      color: #000;
    }

    @media (max-width: 480px) {
      .modal {
        padding: 1.5rem;
      }
      .modal h2 {
        font-size: 1.2rem;
      }
      .btn {
        font-size: 0.9rem;
      }
    }