﻿.modern-rating {
    text-align: center;
    margin: 3rem auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.star-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.star {
    border: none;
    cursor: pointer;
    font-size: 2.8rem; /* medium size */
    color: #f9d71c; /* golden yellow star color */
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
    transition: transform 0.22s, filter 0.22s;
    padding: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* no background */
    box-shadow: none;
}

    .star:focus {
        outline: 2px solid #ffd700;
        outline-offset: 4px;
    }

    .star.hovered {
        filter: drop-shadow(0 0 11px #ffd700) drop-shadow(0 0 20px #ffd700);
        color: #ffb300;
        transform: scale(1.08);
    }

.review-text {
    font-size: 1.15rem;
    color: #333;
    font-weight: 600;
    user-select: none;
    letter-spacing: 0.03em;
}

@media (max-width: 480px) {
    .star {
        font-size: 2.2rem;
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .review-text {
        font-size: 0.95rem;
    }
}
