.event-rating {
    cursor: pointer;
    position: relative;
}

.event-rating .stars {
    display: flex;
    gap: 2px;
}

.event-rating .fa-star {
    color: #ddd;
    transition: color 0.2s ease;
}

.event-rating .fa-star.active {
    color: #ffc107;
}

.event-rating .fa-star.hover {
    color: #ffeb3b;
}

.rating-input .fa-star:hover {
    color: #ffeb3b;
    transform: scale(1.1);
}

.event-rating .fa-star {
    transition: all 0.3s ease;
}

.event-rating .fa-star.active {
    animation: starGlow 0.5s ease;
}

@keyframes starGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: #ffeb3b; }
    100% { transform: scale(1); }
}

.rating-value {
    margin-left: 8px;
    font-weight: 600;
    color: #333;
}

.rating-count {
    margin-left: 4px;
    font-size: 0.9em;
    color: #666;
}

.user-rating {
    margin-left: 8px;
    font-size: 0.8em;
    color: #28a745;
    font-weight: 500;
}

.rating-message {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}