body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif; /* Apply the Orbitron font */
}

.modal-background {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.modal {
    z-index: 2;
    display: none;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    text-align: center;
    background: url('oasis.png') no-repeat center center; /* Set your image path */
    background-size: cover; /* Ensure background covers the modal */
    color: white; /* Better contrast for text over dark backgrounds */
    box-shadow: 0 0 0 100vmax rgba(0,0,0,0.5), /* Darken the background */
                0 0 0 100vmax rgba(0,0,0,0.5); /* Duplicate for stronger effect */
    border-radius: 8px; /* Optional: adds rounded corners to the modal */
}

.modal-mascot-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

#mintButton {
    padding: 10px 20px;
    font-size: 16px;
    cursor: not-allowed;
    background-color: #4CAF50; /* Add a button color */
    color: white; /* Text color */
    border: none;
    border-radius: 5px; /* Rounded corners */
    font-family: inherit; /* Ensure button uses the same font */
}

/* Ensure all text within the modal uses the Orbitron font */
.modal-content h2, .modal-content p {
    font-family: 'Orbitron', sans-serif;
}


#gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    padding: 10px;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}

.grid-cell {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.grid-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures image maintains aspect ratio and fits within the cell */
}


/* Modal styles remain the same */
