/* 与之前相同 */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.bb-coin-text {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.log-container::-webkit-scrollbar {
    width: 4px;
}
.log-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}
.pulse-dot {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
button:active {
    transform: scale(0.97);
    transition: transform 0.1s;
}
input:focus, select:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 1px;
}