/* css/styles.css */

/* Шрифт увеличен на 5% */
html { font-size: 14.7px; }

body { 
    -webkit-tap-highlight-color: transparent; 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Твой фирменный градиент */
    background: radial-gradient(circle at top, #1e1b4b 0%, #020617 100%);
    background-attachment: fixed;
    color: #e2e8f0;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
[x-cloak] { display: none !important; }

/* === ANIMATIONS === */
@keyframes soft-pulse {
    0% { color: #e2e8f0; transform: scale(1); }
    50% { color: #4ade80; transform: scale(1.05); }
    100% { color: #f8fafc; transform: scale(1); }
}
.price-live.updated { animation: soft-pulse 0.8s ease-out; }

@keyframes neon-pulse {
    0%, 100% { 
        color: #4ade80; 
        text-shadow: 0 0 2px rgba(74, 222, 128, 0.3);
    }
    50% { 
        color: #86efac;
        text-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    }
}
.text-club-shimmer {
    animation: neon-pulse 2s ease-in-out infinite;
}