.info-button {
    position: fixed;
    bottom: -0.9rem;
    left: 2rem;
    font-family: "input-mono-condensed", monospace;
    font-size: 1.30rem;
    line-height: 1.2;
    padding: 0.2rem;
    background: none;
    border: none;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #63480D;
    letter-spacing: -0.05em;
    mix-blend-mode: difference;
    font-style: normal;
    cursor: url('../img/cursor.svg'), pointer !important;
}

/* Ensure button is hidden by default on gallery pages */
.info-button:not(.main-page) {
    opacity: 0;
    visibility: hidden;
}

.info-button:hover:not(.main-page),
.info-button.at-top {
    transform: translateY(-25px);
    color: #63480D;
    font-style: italic;
    cursor: url('../img/cursor.svg'), pointer !important;
}
.info-button.visible {
    opacity: 1;
    color: rgb(30,170,255);
    visibility: visible;
}

/* Special styling for main page */
.info-button.main-page {
    transform: translateY(-25px);
    font-style: normal;
    opacity: 1 !important;
    visibility: visible !important;
    mix-blend-mode: normal;
}

.info-button.main-page:hover {
    color: rgb(30,170,255) !important;
    font-style: italic;
    /* cursor: none; */
}

.info-button span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .info-button {
        bottom: 1rem;
        left: 1rem;
        font-size: 1.20rem;
    }
} 