/**
 * Neo Coins Voting Styles
 */

/* Vote Buttons */
.btn-vote,
.btn-vote-large,
.btn-vote-mini {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-vote.voting,
.btn-vote-large.voting,
.btn-vote-mini.voting {
    background: #999 !important;
    cursor: wait !important;
}

.btn-vote.voted,
.btn-vote-large.voted,
.btn-vote-mini.voted {
    background: #10b981 !important;
    cursor: not-allowed !important;
}

/* Notification Toast */
.neo-vote-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.neo-vote-notification.show {
    transform: translateX(0);
}

.neo-vote-notification.notification-success {
    background: #10b981;
    color: white;
}

.neo-vote-notification.notification-error {
    background: #ef4444;
    color: white;
}

/* Pulse animation for vote button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 113, 177, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 113, 177, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 113, 177, 0);
    }
}

.btn-vote:hover:not(.voted):not(.voting),
.btn-vote-large:hover:not(.voted):not(.voting),
.btn-vote-mini:hover:not(.voted):not(.voting) {
    animation: pulse 1.5s infinite;
}

/* Responsive */
@media (max-width: 600px) {
    .neo-vote-notification {
        left: 20px;
        right: 20px;
        transform: translateY(-100px);
    }
    
    .neo-vote-notification.show {
        transform: translateY(0);
    }
}

/* Liquid Glass Theme */
.neo-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
}