@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f5f0;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}
/* Dropdown menu styles */
dropdown-menu {
  display: inline-block;
}

/* Animation for token gate modal */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.token-gate-modal {
    animation: fadeIn 0.3s ease-out forwards;
}
/* Edition preview hover effect */
.edition-card:hover .edition-image {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/* Access prompt styles */
#connect-button {
    transition: all 0.2s ease;
}

#connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}