body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 400px;
    margin: auto;
}

.stars {
    margin: 20px 0;
}

.star {
    font-size: 50px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s ease;
}

.star:hover {
    color: gold;
}

.star.active {
    color: gold;
    transform: scale(1.2);
}

.emojis {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.emoji {
    width: 60px;
    height: 60px;
    cursor: pointer;
}
