 

 

/* Card Hover Effects */
.model-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

 

.model-card:hover::before {
    opacity: 0.3;
}

 

 

.votes-count.updated {
    animation: pulse 0.5s ease;
}

/* Button disabled state */
button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

/* Recent Votes Ticker */
.recent-votes-section {
    margin: 0 auto;
    max-width: 100%;
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.vote-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31, 41, 55, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(75, 85, 99, 0.4);
    transition: all 0.3s ease;
}

.vote-item:hover {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(75, 85, 99, 0.6);
    transform: translateY(-2px);
}

.vote-item .wallet {
    color: #9CA3AF;
    font-size: 0.75rem;
    font-family: monospace;
}

.vote-item .model-name {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.vote-item .coefficient {
    color: #FCD34D;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Model specific colors */
.model-claude { color: #A78BFA; background: rgba(167, 139, 250, 0.1); }
.model-deepseek { color: #60A5FA; background: rgba(96, 165, 250, 0.1); }
.model-gemini { color: #34D399; background: rgba(52, 211, 153, 0.1); }
.model-grok { color: #FBBF24; background: rgba(251, 191, 36, 0.1); }
.model-gpt { color: #F87171; background: rgba(248, 113, 113, 0.1); }
.model-qwen { color: #F472B6; background: rgba(244, 114, 182, 0.1); }
 