/* 菜单容器基础样式 */
.menu-container {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.15s ease-in-out;
    pointer-events: none;
}

.menu-container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 存档菜单 */
.save-info {
    display: flex;
    gap: 1rem;
    padding: 0.2rem;
    border-radius: 6px;
}

.save-slots {
    display: contents;
    justify-content: center;
    background: #ffe9cc;
}

.game-start-btn {
    display: inline-block;
    background-color: rgb(89, 102, 96);
    color: white;
    padding: 1px 44px;
    border-radius: 5px;
    cursor: pointer;
}

.slot-pets img {
    width: 64px;
}