    body {
      font-family: 'DM Sans', 'Manrope', 'Work Sans', sans-serif;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .animate-fade-in {
      animation: fadeIn 0.2s ease-out;
    }
	
	@media only screen and (max-width: 767px) {
    #modal-content {
           position:fixed;
		   bottom:0;
		   left:0;
		   right:0;
		   border-top-left-radius:12px;
		   border-top-right-radius:12px;
		   padding:16px;
		   max-width: 100%;
         }
    }

    /* Modal backdrop */
    #custom-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    /* Modal content */
    .modal-content {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      position: relative;
    }

    .modal-header {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .wallet-button {
      display: block;
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      font-size: 16px;
      cursor: pointer;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 18px;
      cursor: pointer;
      color: #999;
    }

    .close-btn:hover {
      color: #000;
    }