.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.circle-container {
    position: relative;
    width: 550px;
    height: 550px;
}

.circle {
    width: 100%;
    height: 100%;
    border: 2px solid #333;
    border-radius: 50%;
    position: relative;
}

.icon {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 30px;
    color: #333;
    transition: transform 0.2s;
}

.icon-active {
    border: 3px solid #808285;
    border-radius: 100px;
}

@media (hover: hover) {
    .icon:hover {
        transform: scale(1.2);
    }
}

.icon:nth-child(1) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.icon:nth-child(2) {
    top: 40%;
    right: 0px;
    z-index: 30;
}

.icon:nth-child(3) {
    top: 40%;
    left: 0px;
    z-index: 30;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-content .category,
.center-content .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-content .active {
    opacity: 1;
}

.center-content .category img {
    display: block;
    margin: 0 auto;
}

.center-content .category h3 {
    margin: 10px 0 0;
    text-align: center;
    font-size: 24px;
    color: #333;
}

.center-content .hover-content {
    opacity: 0;
}

.center-content .hover-content.active {
    z-index: 20;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
}

.center-content svg {
    width: 300px;
    height: 300px;
}

.animal-part {
    transition: fill 0.3s ease;
}

@media (hover: hover) {
    .animal-part:hover {
        fill: #ff0000;
    }
}

.animal-part.active {
    fill: #ff0000;
}

.st0 { fill: #808285; }
.st1 { fill: #bcbec0; }
.st2 { fill-rule: evenodd; clip-rule: evenodd; fill: #BCBEC0; }
.st3 { fill: #BCBEC0; }
.st4 { fill-rule: evenodd; clip-rule: evenodd; fill: #FFFFFF; }
.st5 { fill: #E6E7E8; }
.st6 { fill-rule: evenodd; clip-rule: evenodd; fill: #ED1C24; }
.st7 { fill: #FFFFFF; }
.st8 { fill: #333; }

@media (max-width: 768px) {
    .center-content .hover-content {
        opacity: 0;
        pointer-events: none;
    }
    .center-content {
        width: 350px;
        height: 350px;
    }
    .circle-container {
        width: 500px;
        height: 500px;
    }
    .icon:nth-child(2) {
        top: 0%;
        right: 40px;
    }
    .icon:nth-child(3) {
        top: 0%;
        left: 40px;
    }
    .center-content .category h3 {
        font-size: 18px;
    }
}

@media (max-width: 499px) {
    .center-content {
        width: 250px;
        height: 250px;
    }
    .circle-container {
        width: 350px;
        height: 350px;
    }
    .center-content .category h3 {
        font-size: 13px;
    }
    .icon {
        width: 70px;
        height: 70px;
    }
    .icon img {
        width: 50px;
        height: 50px;
    }
    .center-content svg {
        width: 200px;
        height: 200px;
    }
} 