.emoji-rating {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.emoji-option {
    cursor: pointer;
    transition: transform 0.2s ease;
    font-size: 2rem;
    opacity: 0.5;
    position: relative;
}

.emoji-option:hover {
    transform: scale(1.2);
    opacity: 1;
}

.emoji-option.selected {
    opacity: 1;
    animation: pulse 0.5s ease;
}

.emoji-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.emoji-option:hover .emoji-label {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.rating-distribution {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.rating-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.rating-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffa500);
    border-radius: 4px;
    transition: width 0.8s ease;
    animation: wave 2s infinite linear;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 50px 0; }
}