.destructured-words-cloud {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    --ndm-spacing: 40px;
    box-sizing: border-box;
}

.destructured-word-row {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Base structural vertical margins to prevent overlaps */
.destructured-word-row {
    margin-top: calc(var(--ndm-spacing) / 2);
    margin-bottom: calc(var(--ndm-spacing) / 2);
}

/* Nth-child staggered shifts to achieve dynamic layout safely without negative margins or position absolute */
.destructured-word-row:nth-child(5n+1) {
    justify-content: flex-start;
    padding-left: 15%;
    margin-top: calc(var(--ndm-spacing) * 0.8);
}

.destructured-word-row:nth-child(5n+2) {
    justify-content: flex-end;
    padding-right: 12%;
    margin-top: calc(var(--ndm-spacing) * 0.5);
}

.destructured-word-row:nth-child(5n+3) {
    justify-content: center;
    margin-top: calc(var(--ndm-spacing) * 1.2);
}

.destructured-word-row:nth-child(5n+4) {
    justify-content: flex-start;
    padding-left: 25%;
    margin-top: calc(var(--ndm-spacing) * 0.6);
}

.destructured-word-row:nth-child(5n+5) {
    justify-content: flex-end;
    padding-right: 20%;
    margin-top: calc(var(--ndm-spacing) * 1.1);
}

/* Disable Hover effects strictly */
.destructured-word-item {
    display: inline-block;
    transition: none !important;
    pointer-events: none; /* Disables hover completely */
}
