.eo-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 .5rem;
    text-align: center;
}

.eo-board {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.5rem 0 .75rem;
    min-height: 4.6rem;
    padding: .75rem;
    background: #f8f9fc;
    border: 2px dashed #d5dae5;
    border-radius: 16px;
    width: 100%;
}

.eo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.2rem;
    height: 3.4rem;
    margin: 0;
    padding: 0 .7rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    background: white;
    border: 2px solid #cfd8ec;
    border-radius: 12px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .06);
}

.eo-chip:active {
    cursor: grabbing;
}

.eo-chip.eo-hidden {
    visibility: hidden;
    box-shadow: none;
}

.eo-chip.eo-clone {
    position: fixed;
    z-index: 1000;
    margin: 0;
    cursor: grabbing;
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transform: scale(1.06);
}

.eo-zones {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.eo-zone {
    flex: 1;
    min-width: 8rem;
    max-width: 14rem;
    min-height: 6rem;
    border-radius: 16px;
    border: 3px dashed #d5dae5;
    background: #f8f9fc;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: .4rem;
    padding: .75rem;
    transition: transform .15s, border-color .15s, background .15s;
}

.eo-zone.eo-red {
    border-color: #ef9a9a;
    background: #fff5f5;
}

.eo-zone.eo-blue {
    border-color: #90caf9;
    background: #f3f9ff;
}

.eo-zone.eo-drag-over {
    transform: scale(1.02);
    border-style: solid;
}

.eo-zone.eo-red.eo-drag-over {
    background: #ffebee;
    border-color: #e53935;
}

.eo-zone.eo-blue.eo-drag-over {
    background: #e3f2fd;
    border-color: #1e88e5;
}

.eo-zone-label {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .3rem;
}

.eo-zone.eo-red .eo-zone-label {
    color: #c62828;
}

.eo-zone.eo-blue .eo-zone-label {
    color: #1565c0;
}

@media (max-width: 380px) {
    .eo-chip {
        min-width: 2.8rem;
        height: 3rem;
        font-size: 1.3rem;
        padding: 0 .5rem;
    }

    .eo-zone {
        min-width: 6rem;
    }
}
