@charset "UTF-8";
/* CSS Document */

.number-29-grid {
    position: relative;
    width: 980px;
    height: 404px;
    margin: auto;
    background: transparent;
    transition: transform 0.25s cubic-bezier(.8,.18,.3,.99);
    transform-origin: 50% 50%;
    /* Cho phép chứa controls nổi */
}

.number-29-bg {
    position: absolute;
    left: 0; top: 0;
    width: 980px; height: 404px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.avatar-cell {
	background: transparent;
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
    z-index: 1;
}
.avatar-cell:hover {
    z-index: 10;
    transform: scale(8.5);
    box-shadow: 0 2px 10px #333;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;  /* hoặc màu khác nếu muốn */
    border-radius: 50%;
    display: block;
}