.t-rec {
    word-break: normal !important;
}


/* Контейнер для звездочек */
#stars-cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2147483647; /* Максимальный z-index */
}

/* Стили для звездочек */
.star {
    position: absolute;
    pointer-events: none;
    z-index: 2147483647;
    animation: star-fade 1s forwards;
}

.star:before {
    content: "✦";
    position: absolute;
    color: inherit;
    text-shadow: 0 0 0.8em #fff5;
}

/* Анимация исчезновения звездочек */
@keyframes star-fade {
    0% { opacity: 1; transform: translateY(0) rotate(0deg); }
    100% { opacity: 0; transform: translateY(50px) rotate(180deg); }
}

/* Гарантируем, что звездочки будут поверх всего */
body, .t-body, [class*="t-container"] {
    overflow: visible !important;
}
