@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* Custom scrollbar for WebKit browsers */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(136, 136, 136, 0.3);
    border-radius: 2px;
}

/* Solana gradient */
.solana-gradient {
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
}

/* Pulse animation for loading */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Native app-like transitions */
.transition-native {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button press effect */
.button-press:active {
    transform: scale(0.96);
}