/* Game Interaction Styles */

.interaction-btn.active {
    box-shadow: 0 0 20px currentColor;
    border-color: currentColor !important;
}

.interaction-btn.like-btn.active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.5)) !important;
    color: #22c55e !important;
}

.interaction-btn.dislike-btn.active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.5)) !important;
    color: #ef4444 !important;
}

@keyframes statsPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stats-updated {
    animation: statsPulse 0.6s ease-in-out;
}

/* Rating stars animations */
.rating-stars i {
    transition: all 0.3s ease;
}

.rating-stars i:hover {
    transform: scale(1.2);
}

/* Feedback animations */
@keyframes feedbackPulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.feedback-animation {
    animation: feedbackPulse 0.5s ease-out;
}

/* Responsive improvements */
@media (max-width: 640px) {
    .interaction-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .stats-card {
        padding: 1rem;
    }
}
