<!-- https://ilda.top/hoverchangecolor -->
<style>
.shape .tn-atom {
background-color: #f95704 !important; /* Исходный цвет */
transition: background-color 0.3s ease;
}
.shape, .text {
transition: color 0.3s ease;
}
.shape:hover .tn-atom {
background-color: #121A58 !important; /* Новый цвет при наведении */
}
.shape:hover + .text .tn-atom,
.shape:hover ~ .text .tn-atom {
color: #fafafa !important; /* Цвет текста при наведении на .shape */
}
</style>