
.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; 
}


.popup-content {
    background-color: #11140C;
    border: 2px solid #434B34;
    padding: 40px; 
    text-align: center;
    width: 80%;
    max-width: 600px; 
    z-index: 99;
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.popup-content p {
    color: #FCFDC7; 
    font-family: '__geomGraphic_d69ff7', '__geomGraphic_Fallback_d69ff7', Helvetica, sans-serif;
    font-size: 16px;
    margin-bottom: 20px; 
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center; 
    letter-spacing: 1px;
    line-height: 1.75;
    padding: 20px;
}



#claimAirdropButton {
    background-color: #FCFC03;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: '__geomGraphic_d69ff7', '__geomGraphic_Fallback_d69ff7', Helvetica, sans-serif;
    display: block;
    margin: 20px auto;
}


#claimAirdropButton:hover {
    background-color: #FFFFFF;
}

.popup-content {
    font-family: '__geomGraphic_d69ff7', '__geomGraphic_Fallback_d69ff7', Helvetica, sans-serif;
    font-size: 16px;
    background-color: #11140C;
    border: 2px solid #434B34;
    padding: 20px;
    text-align: center;
}
#closePopup {
    background-color: #FCFC03;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#closePopup:hover {
    background-color: #FFFFFF;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); } /* reduced distance */
    20%, 40%, 60%, 80% { transform: translateX(5px); } /* reduced distance */
  }
  
  .shake {
    animation: shake 0.6s; /* slightly longer duration */
  }