@import url('https://cloudflare.com');


body {
    font-family: 'Inter', sans-serif;
    background-color: #F1F5F9;
    color: #0F172A;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.gold-gradient-text {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #B45309 100%);
    background-clip: text;
    color: transparent;
}
.silver-gradient-text {
    background: linear-gradient(135deg, #334155 0%, #475569 50%, #0F172A 100%);
    background-clip: text;
    color: transparent;
}
.gold-border-glow {
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.live-dot {
    animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.animate-slide-up {
    animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
