#label, #timer, #start-button, #tips p {
    color: rgb(13, 17, 129);
    font-size: 24px;
    display: inline;
    margin-right: 20px;
}

#status-bar {
    display: flex;
    margin-top: 10px;
}

#field td {
    width: 70px;
    height: 70px;
    background-color: rgb(132, 216, 239);
    background-size: cover; /* 修改为 cover 以确保图片完全覆盖 */
    background-repeat: no-repeat; /* 防止图片重复 */
}

#field .mogura {
    width: 70px;
    height: 70px;
    background-image: url('../images/fujimt.png');
    background-size: cover; /* 确保图片适应格子大小 */
}

#field .mogura-hit {
    width: 70px;
    height: 70px;
    background-image: url('../images/fujimt-hit.png');
    background-size: cover; /* 确保图片适应格子大小 */
}

#congrats-image, #congrats-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 1000;
    transition: transform 0.5s ease-in-out;
}

#congrats-image.show, #congrats-text.show {
    transform: translate(-50%, -50%) scale(1);
}

#congrats-text {
    font-size: 36px;
    font-weight: bold;
    color: red;
    margin-top: 20px;
    text-align: center;
    display: none;
}
