.kids-reviews {
    position: relative;
    padding: 55px 24px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(124, 60, 255, .25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 210, 255, .18), transparent 35%),
        linear-gradient(180deg, #120024, #070014);
    font-family: 'Fredoka', sans-serif;
    color: white;
}

.kids-reviews:before {
    content: "⭐ 💙 ⭐ 💛 ⭐";
    position: absolute;
    top: 30px;
    left: 50%;
    font-size: 38px;
    opacity: .25;
    animation: starsFloat 8s ease-in-out infinite;
}

.kids-reviews-header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.kids-reviews-header h2 {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(90deg,
            #fff,
            #00d2ff,
            #ff4fd8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kids-reviews-header p {
    margin: 12px 0 0;
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
}

.kids-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 12px 28px;
    border-radius: 24px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .16),
            rgba(255, 255, 255, .05));
    backdrop-filter: blur(18px);
    border: 2px solid rgba(255, 255, 255, .12);
    font-size: 22px;
    font-weight: 800;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .35);
}

.kids-rating span {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.kids-review-button {
    display: inline-flex;
    margin-top: 20px;
    padding: 15px 32px;
    border-radius: 22px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    background:
        linear-gradient(145deg,
            #ff8a00,
            #ff4fd8);
    box-shadow:
        0 8px 0 rgba(0, 0, 0, .25),
        0 18px 35px rgba(255, 79, 216, .25);
    transition: .25s;
}

.kids-review-button:hover {
    transform: translateY(-5px) scale(1.05);
}

.kids-reviews-grid {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}


.kids-review-card {
    position: relative;
    padding: 26px;
    min-height: 260px;
    border-radius: 34px;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .16),
            rgba(255, 255, 255, .05));

    backdrop-filter: blur(18px);

    border:
        2px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, .35);

    transition: .25s;
}


.kids-review-card:hover {
    transform:
        translateY(-12px) scale(1.03);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .55),
        0 0 30px rgba(124, 60, 255, .35);
}


.kids-review-card img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffd93d;
    filter:
        drop-shadow(0 10px 20px rgba(0, 0, 0, .45));
}


.kids-review-card h3 {
    margin: 15px 0 8px;
    font-family: 'Baloo 2', cursive;
    color: white;
    font-size: 22px;
}


.kids-review-card .stars {
    font-size: 18px;
    margin-bottom: 12px;
}


.kids-review-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
    font-size: 15px;
}


.kids-review-card small {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, .45);
}


@keyframes starsFloat {
    0% {
        transform:
            translate(-50%, 0) rotate(0);
    }

    50% {
        transform:
            translate(-48%, -18px) rotate(5deg);
    }

    100% {
        transform:
            translate(-50%, 0) rotate(0);
    }
}


@media(max-width:700px) {

    .kids-reviews {
        padding: 45px 15px 65px;
    }

    .kids-reviews-grid {
        grid-template-columns: 1fr;
    }

    .kids-rating {
        flex-direction: column;
    }

    .kids-review-card {
        min-height: auto;
    }
}

.review-avatar {
    position: relative;
    width: 95px;
    height: 95px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-avatar::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background:
        conic-gradient(#7c3cff,
            #00d2ff,
            #ff4fd8,
            #ffd93d,
            #7c3cff);
    animation: avatarSpin 5s linear infinite;
}

.review-avatar::after {
    content: "✨";
    position: absolute;
    top: -12px;
    right: -8px;
    font-size: 22px;
    animation: starPulse 2s ease-in-out infinite;
}

.avatar-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(0, 210, 255, .45),
            transparent 65%);
    filter: blur(15px);
    animation: avatarGlow 3s ease-in-out infinite;
}

.review-avatar img {
    position: relative;
    z-index: 2;
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #120024;
}

.google-badge {
    position: absolute;
    right: 2px;
    bottom: 2px;
    z-index: 3;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    border-radius: 50%;

    font-size: 15px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .35);
}


@keyframes avatarSpin {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes avatarGlow {

    0%,
    100% {
        opacity: .4;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.4) rotate(20deg);
    }
}